Bladeren bron

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 1 jaar geleden
bovenliggende
commit
066dc4efb6

+ 12 - 0
src/router/modules/dialysis.js Bestand weergeven

@@ -350,6 +350,18 @@ export default {
350 350
       is_menu: false,
351 351
       noCache: true
352 352
     },
353
+    // 透析记录2
354
+    {
355
+      path: '/dialysis/details/indexs',
356
+      component: () => import('@/xt_pages/dialysis/details/indexs'),
357
+      name: 'details',
358
+      meta: {
359
+        title: 'details'
360
+      },
361
+      hidden: true,
362
+      is_menu: false,
363
+      noCache: true
364
+    },
353 365
 
354 366
     {
355 367
       path: '/dialysis/print/batch',

+ 88 - 77
src/xt_pages/outpatientCharges/chargeDetailManagement.vue Bestand weergeven

@@ -80,64 +80,68 @@
80 80
 
81 81
         <div class="mainCell fixedCell" style="margin-bottom:10px;">
82 82
 
83
-          <div v-if="this.radio == 1">
83
+          <div v-if="this.radio == 1&&this.activeName=='first'">
84 84
             <el-button
85 85
               size="small"
86 86
               v-loading="isloading"
87 87
               :disabled="isdisabled"
88
-              @click="open(1)"
88
+              @click="open(1,0)"
89 89
               type="primary">上传明细
90 90
             </el-button>
91 91
           </div>
92
-
93 92
           <div v-if="this.radio == 2">
94 93
             <el-button
95 94
               size="small"
96
-              @click="open(2)"
95
+              @click="open(2,0)"
97 96
               type="primary">撤销明细
98 97
             </el-button>
99 98
           </div>
100
-
101 99
         </div>
102 100
 
103 101
         <div class="mainCenter" v-loading="loading">
104 102
           <el-tabs class="settlementTabs" v-model="activeName" @tab-click="handleClick">
105
-            <!--            <el-tab-pane label="日结" name="first">-->
106
-            <!--              <div style="display:flex;height:100%;">-->
107
-            <!--                <div class="centerLeft">-->
108
-            <!--                  <div class="tabsBox">-->
109
-            <!--                    &lt;!&ndash;<el-button type="text" class="addTab" @click="addCharges" icon="el-icon-circle-plus">附加收费</el-button>&ndash;&gt;-->
110
-            <!--                    <el-tabs class="preTabs" v-model="editableTabsValue" type="border-card"-->
111
-            <!--                             @tab-click="tabclickEvent">-->
112
-            <!--                      <el-tab-pane-->
113
-            <!--                        v-for="(item, index) in prescriptions"-->
114
-            <!--                        :key="index"-->
115
-            <!--                        :label="item.name"-->
116
-            <!--                        :name="item.name"-->
117
-            <!--                      >-->
118
-            <!--                      </el-tab-pane>-->
119
-
120
-            <!--                      <charge-prescription-table ref="prescription_tables"-->
121
-            <!--                                                 :manufacturers="manufacturers"-->
122
-            <!--                                                 :prescription="curPrescriptions"></charge-prescription-table>-->
123
-            <!--                    </el-tabs>-->
124
-
125
-            <!--                  </div>-->
126
-            <!--                  <div class="costBox">-->
127
-            <!--                    <span>当前处方总费用:<span style="color:red;">{{ total }}元</span></span>-->
128
-            <!--                    <span v-if="this.radio == 2&&this.hisPatientInfo.balance_accounts_type != 2">处方总价:<span style="color:red;">{{-->
129
-            <!--                        all_total + '元' + ' = 全自费总金额:' + fulamt_ownpay_amt + '元+' + '超限价总金额:' + overlmt_amt + '元+' + '先行自付金额:' + preselfpay_amt + '元+' + '符合正常范围总金额:' + inscp_scp_amt + '元'-->
130
-            <!--                      }}</span></span>-->
131
-            <!--                    <span v-if="this.radio == 2&&this.hisPatientInfo.balance_accounts_type == 2">处方总价:<span style="color:red;">{{-->
132
-            <!--                        all_total + '元' + ' = 全自费总金额:' + all_total + '元+' + '超限价总金额:' + overlmt_amt + '元+' + '先行自付金额:' + preselfpay_amt + '元+' + '符合正常范围总金额:' + inscp_scp_amt + '元'-->
133
-            <!--                      }}</span></span>-->
134
-            <!--                    <span v-if="this.radio == 1">处方总价:<span style="color:red;">{{ all_total }}元</span></span>-->
135
-
136
-            <!--                  </div>-->
137
-            <!--                </div>-->
138
-
139
-            <!--              </div>-->
140
-            <!--            </el-tab-pane>-->
103
+            <el-tab-pane label="日结" name="second">
104
+              <div style="display:flex;height:100%;">
105
+                <div class="centerLeft">
106
+                  <div class="tabsBox">
107
+                    <!--<el-button type="text" class="addTab" @click="addCharges" icon="el-icon-circle-plus">附加收费</el-button>-->
108
+                    <el-tabs class="preTabs" v-model="editableTabsValue" type="border-card"
109
+                             @tab-click="tabclickEvent">
110
+                      <el-tab-pane
111
+                        v-for="(item, index) in prescriptions"
112
+                        :key="index"
113
+                        :label="item.name"
114
+                        :name="item.name"
115
+                      >
116
+                        <el-button type="primary"  v-loading="isloading"
117
+                                     :disabled="isdisabled"  @click="open(1,item.id)">上传处方费用</el-button>
118
+
119
+
120
+                      </el-tab-pane>
121
+
122
+                      <charge-month-prescription-table v-if="this.radio == 1"
123
+                                                       :prescription="curPrescriptions"></charge-month-prescription-table>
124
+
125
+                    </el-tabs>
126
+
127
+                  </div>
128
+                  <div class="costBox">
129
+                    <span>当前处方总费用:<span style="color:red;">{{ total }}元</span></span>
130
+                    <span v-if="this.radio == 2&&this.hisPatientInfo.balance_accounts_type != 2">处方总价:<span
131
+                      style="color:red;">{{
132
+                        all_total + '元' + ' = 全自费总金额:' + fulamt_ownpay_amt + '元+' + '超限价总金额:' + overlmt_amt + '元+' + '先行自付金额:' + preselfpay_amt + '元+' + '符合正常范围总金额:' + inscp_scp_amt + '元'
133
+                      }}</span></span>
134
+                    <span v-if="this.radio == 2&&this.hisPatientInfo.balance_accounts_type == 2">处方总价:<span
135
+                      style="color:red;">{{
136
+                        all_total + '元' + ' = 全自费总金额:' + all_total + '元+' + '超限价总金额:' + overlmt_amt + '元+' + '先行自付金额:' + preselfpay_amt + '元+' + '符合正常范围总金额:' + inscp_scp_amt + '元'
137
+                      }}</span></span>
138
+                    <span v-if="this.radio == 1">处方总价:<span style="color:red;">{{ all_total }}元</span></span>
139
+
140
+                  </div>
141
+                </div>
142
+
143
+              </div>
144
+            </el-tab-pane>
141 145
             <el-tab-pane label="月结" name="first">
142 146
               <div style="display:flex;height:100%;">
143 147
                 <div class="centerLeft">
@@ -156,7 +160,9 @@
156 160
                       <div class="RP">
157 161
                         Rp
158 162
                         <div v-if="radio == 2">
159
-                          <span>处方日期:{{ getTimes(zuobiao_info.start_time) }}~{{ getTimes(zuobiao_info.end_time) }}</span>
163
+                          <span>处方日期:{{ getTimes(zuobiao_info.start_time) }}~{{
164
+                              getTimes(zuobiao_info.end_time)
165
+                            }}</span>
160 166
                         </div>
161 167
                         <div v-if="radio == 2">
162 168
                           <span>医嘱单id:{{ zuobiao_info.cbm01 }}</span>
@@ -197,17 +203,17 @@
197 203
                             :value="item.value">
198 204
                           </el-option>
199 205
                         </el-select>
200
-                          <label>
201
-                            疾病类型:
202
-                          </label>
203
-                          <el-select filterable  v-model="sick_type" placeholder="请选择疾病类型">
204
-                            <el-option
205
-                              v-for="(item,index) in sick"
206
-                              :key="index"
207
-                              :label="item.class_name"
208
-                              :value="item.id">
209
-                            </el-option>
210
-                          </el-select>
206
+                        <label>
207
+                          疾病类型:
208
+                        </label>
209
+                        <el-select filterable v-model="sick_type" placeholder="请选择疾病类型">
210
+                          <el-option
211
+                            v-for="(item,index) in sick"
212
+                            :key="index"
213
+                            :label="item.class_name"
214
+                            :value="item.id">
215
+                          </el-option>
216
+                        </el-select>
211 217
 
212 218
                       </div>
213 219
 
@@ -263,8 +269,8 @@ export default {
263 269
   },
264 270
   data() {
265 271
     return {
266
-      isloading:false,
267
-      isdisabled:false,
272
+      isloading: false,
273
+      isdisabled: false,
268 274
       register: [
269 275
         { value: 11, label: '普通门诊' },
270 276
         // { value: 12, label: '门诊挂号' },
@@ -335,7 +341,7 @@ export default {
335 341
       tabIndex: 1,
336 342
 
337 343
       hisPatientInfo: {},
338
-      prescription_info:{},
344
+      prescription_info: {},
339 345
       loadingtwo: false,
340 346
       upload_list: [],
341 347
       patientTableData: [{}],
@@ -675,12 +681,12 @@ export default {
675 681
     }, formatJson(filterVal, jsonData) {
676 682
       return jsonData.map(v => filterVal.map(j => v[j]))
677 683
     },
678
-    open(index) {
684
+    open(index,id) {
679 685
       if (index == 2) {
680 686
         var that = this
681 687
         let obj3 = {
682 688
           id: this.zuobiao_info.id,
683
-          admin_user_id: this.$store.getters.xt_user.user.id,
689
+          admin_user_id: this.$store.getters.xt_user.user.id
684 690
         }
685 691
         axios.get('http://127.0.0.1:9532' + '/nmg/coordinate/settleAccount/cancel', {
686 692
           params: obj3
@@ -717,11 +723,11 @@ export default {
717 723
         this.isdisabled = true
718 724
         var that = this
719 725
         if (this.hisPatientInfo.id == 0) {
720
-          this.$message.error("请选择需要记账的患者")
726
+          this.$message.error('请选择需要记账的患者')
721 727
           return
722 728
         }
723
-        if (this.sick_type == 0 || this.sick_type == "") {
724
-          this.$message.error("请选择疾病类型")
729
+        if (this.sick_type == 0 || this.sick_type == '') {
730
+          this.$message.error('请选择疾病类型')
725 731
           return
726 732
         }
727 733
 
@@ -731,12 +737,18 @@ export default {
731 737
           record_date: this.record_date,
732 738
           admin_user_id: this.$store.getters.xt_user.user.id,
733 739
           org_id: this.$store.getters.xt_user.org_id,
734
-          sick_type:this.sick_type,
740
+          sick_type: this.sick_type,
741
+          settle_type: this.activeName,
742
+          p_id:id,
743
+        }
744
+        if (this.activeName == "first"){
745
+          obj['settle_accounts_type'] = 2
746
+        }else{
747
+          obj['settle_accounts_type'] = 1
735 748
         }
736 749
         obj['start_time'] = this.other_start_time
737 750
         obj['end_time'] = this.other_end_time
738
-        obj['settle_accounts_type'] = 2
739
-        axios.get("http://127.0.0.1:9532" + '/nmg/coordinate/settleAccount', {
751
+        axios.get('http://127.0.0.1:9532' + '/nmg/coordinate/settleAccount', {
740 752
           params: obj
741 753
         })
742 754
           .then(function(response) {
@@ -758,7 +770,6 @@ export default {
758 770
                 }).catch(() => {
759 771
                 })
760 772
 
761
-
762 773
               } else {
763 774
                 that.isloading = false
764 775
                 that.isdisabled = false
@@ -862,13 +873,13 @@ export default {
862 873
             case 1:
863 874
               this.all_table_data = response.data.data.list
864 875
               this.patientTableData = response.data.data.list
865
-              if (this.hisPatientInfo&&this.hisPatientInfo.id > 0){
866
-                for(let i = 0; i < this.patientTableData.length;i++){
867
-                  if(this.hisPatientInfo.id == this.patientTableData[i].id){
876
+              if (this.hisPatientInfo && this.hisPatientInfo.id > 0) {
877
+                for (let i = 0; i < this.patientTableData.length; i++) {
878
+                  if (this.hisPatientInfo.id == this.patientTableData[i].id) {
868 879
                     this.$refs.tab.setCurrentRow(this.patientTableData[i])
869 880
                   }
870 881
                 }
871
-              }else{
882
+              } else {
872 883
                 this.$refs.tab.setCurrentRow(this.patientTableData[0])
873 884
                 this.getPatientInformation(this.patientTableData[0].id)
874 885
               }
@@ -878,15 +889,15 @@ export default {
878 889
               this.patientTableData = response.data.data.list_two
879 890
               this.upload_list = response.data.data.upload_list
880 891
               this.all_upload_list = response.data.data.upload_list
881
-              if (this.hisPatientInfo && this.hisPatientInfo.id > 0){
882
-                for(let i = 0; i < this.upload_list.length;i++){
883
-                  if(this.hisPatientInfo.id == this.upload_list[i].his_patient.id){
892
+              if (this.hisPatientInfo && this.hisPatientInfo.id > 0) {
893
+                for (let i = 0; i < this.upload_list.length; i++) {
894
+                  if (this.hisPatientInfo.id == this.upload_list[i].his_patient.id) {
884 895
                     this.$refs.tab.setCurrentRow(this.upload_list[i])
885 896
                     this.getPatientInformation(this.upload_list[0].his_patient.id)
886 897
 
887 898
                   }
888 899
                 }
889
-              }else{
900
+              } else {
890 901
                 this.$refs.tab.setCurrentRow(this.upload_list[0])
891 902
                 this.getPatientInformation(this.upload_list[0].his_patient.id)
892 903
               }
@@ -1088,8 +1099,8 @@ export default {
1088 1099
           this.loading = false
1089 1100
           this.prescription_info = response.data.data.prescription_info
1090 1101
           this.sick_type = this.prescription_info.sick_type
1091
-          if(this.sick_type == 0){
1092
-            this.sick_type = ""
1102
+          if (this.sick_type == 0) {
1103
+            this.sick_type = ''
1093 1104
           }
1094 1105
           console.log(this.sick_type)
1095 1106
           this.hisPatientInfo = response.data.data.patient
@@ -1242,8 +1253,8 @@ export default {
1242 1253
           this.hisPatientInfo = response.data.data.patient
1243 1254
           this.prescription_info = response.data.data.prescription_info
1244 1255
           this.sick_type = this.prescription_info.sick_type
1245
-          if(this.sick_type == 0){
1246
-            this.sick_type = ""
1256
+          if (this.sick_type == 0) {
1257
+            this.sick_type = ''
1247 1258
           }
1248 1259
           console.log(this.sick_type)
1249 1260
           this.setMonthPrescription(response.data.data.month_prescriptions)

+ 4 - 4
src/xt_pages/outpatientCharges/invoicePrint.vue Bestand weergeven

@@ -10,7 +10,7 @@
10 10
         type="primary"
11 11
       >打印</el-button>
12 12
     </template>
13
-    <div class="app-container" style="padding-top:40px;" v-if="org_id != 10217 && org_id != 10485 && org_id != 10375 && org_id != 10567 "><!--&& org_id != 10188 && org_id != 0-->
13
+    <div class="app-container" style="padding-top:40px;" v-if="org_id != 10217 && org_id != 10485 && org_id != 10375 && org_id != 10567 && org_id != 10188 && org_id != 0"><!--&& org_id != 10188 && org_id != 0-->
14 14
         <div class='dialysisPage'>
15 15
           <div v-if="org_id != 10106 && org_id != 10215 && org_id != 4 && org_id != 10188 && org_id != 10217 && org_id != 10387&& org_id != 10210 && org_id != 10387 && org_id != 10480 && org_id != 0 " >
16 16
             <printOne v-if="org_id != 10088 && org_id != 10510 && org_id != 0" :paramsObj="invoiceParams"></printOne>
@@ -20,7 +20,7 @@
20 20
           <printTwo v-if="org_id == 10106" :paramsObj="invoiceParams"></printTwo>
21 21
           <printFour v-if="org_id == 10215 || org_id == 4 " :paramsObj="invoiceParams"></printFour>
22 22
           <!-- <printFive v-if="org_id == 10188 " :paramsObj="invoiceParams"></printFive> -->
23
-          <printthirteen v-if="org_id == 10188 || org_id == 0 " :paramsObj="invoiceParams"></printthirteen>
23
+          <!-- <printthirteen v-if="org_id == 10188 || org_id == 0 " :paramsObj="invoiceParams"></printthirteen> -->
24 24
 <!--         <printEight v-if="org_id == 10387 || org_id == 0" :paramsObj="invoiceParams"></printEight>-->
25 25
           <print-eight v-if="org_id == 10387" :paramsObj="invoiceParams"></print-eight>
26 26
           <PrintNight v-if="org_id == 10210" :paramsObj="invoiceParams"></PrintNight>
@@ -52,11 +52,11 @@
52 52
       </div>
53 53
     </div> -->
54 54
 
55
-    <!-- <div class="app-container" style="padding-top:30px;" v-if="org_id == 10188 || org_id == 0 ">
55
+    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188 || org_id == 0 ">
56 56
       <div class='dialysisPage'>
57 57
         <printthirteen  :paramsObj="invoiceParams"></printthirteen>
58 58
       </div>
59
-    </div> -->
59
+    </div>
60 60
     <!-- <div class="app-container" style="padding-top:40px;" v-if="org_id == 0">
61 61
       <div class='dialysisPage'>
62 62
         <printthirteen :paramsObj="invoiceParams"></printthirteen>

+ 14 - 6
src/xt_pages/outpatientCharges/invoiceTemplate/printthirteen.vue Bestand weergeven

@@ -1,7 +1,7 @@
1 1
 
2 2
 <template>
3 3
   <div id='invoice-print'>
4
-    <div v-for='(i,index) in pageArr.length' :key="index" style="width: 80%;margin: 0 auto;font-size: 16px;">
4
+    <div v-for='(i,index) in pageArr.length' :key="index" style="width: 90%;margin: 0 auto;font-size: 17px;">
5 5
       <div style="text-align: center;width: 100%;font-size: 20px; font-weight: bolder;">盐城响水燕舞血液透析中心收据</div>
6 6
       <div style="display: flex; margin: 15px 0 5px 0;">
7 7
         <div style="flex: 1.1;">业务流水号:{{ list.order_number }}</div>
@@ -10,13 +10,16 @@
10 10
        
11 11
       </div>
12 12
       <div style="display: flex;">
13
-        <div style="flex:1;">医生:{{ doctor_info.user_name }}</div>
14
-        <div style="flex: 1;">医生编码:{{ doctor_info.doctor_number }}</div>
13
+        <!-- <div style="flex:1;">医生:{{ doctor_info.user_name }}</div>
14
+        <div style="flex: 1;">医生编码:{{ doctor_info.doctor_number }}</div> -->
15 15
         <div style="flex: 1;">No.{{list.order.fa_piao_number}}</div>
16 16
       </div>
17 17
       <div style="display: flex;border: 1px solid black;padding: 5px 0;">
18 18
         <div style="flex: 1;">姓名:{{ paramsObj.name }}</div>
19
-        <div style="flex: 1;">性别:</div>
19
+        <div style="flex: 1;">性别:
20
+          <span v-if="list.gender == 1">男</span>
21
+          <span v-if="list.gender == 2">女</span>
22
+        </div>
20 23
         <div style="flex: 1;">医保类型:</div>
21 24
         <div style="flex: 1;">社会保障号码:</div>
22 25
 
@@ -117,8 +120,13 @@
117 120
         </div>
118 121
       </div>
119 122
       <div style="display: flex;">
120
-        <div style="flex: 1;">收款单位(章):{{ org_name }}</div>
121
-        <div style="flex: 1;">收费员:{{ paramsObj.chargeName }}</div>
123
+        <div style="flex:1;">医生:{{ doctor_info.user_name }}</div>
124
+        <div style="flex: 1;">医生编码:{{ doctor_info.doctor_number }}</div>
125
+        <!-- <div style="flex: 1;">No.{{list.order.fa_piao_number}}</div> -->
126
+      </div>
127
+      <div style="display: flex;">
128
+        <div style="flex: 1.5;">收款单位(章):{{ org_name }}</div>
129
+        <div style="flex: 0.7;">收费员:{{ paramsObj.chargeName }}</div>
122 130
         <div style="flex: 1;">
123 131
           <span>{{  paramsObj.setl_time ? paramsObj.setl_time.split(' ')[0].slice(0,4) : getTime(list.date, '{y}-{m}-{d}').slice(0,4) }}</span>
124 132

+ 8 - 4
src/xt_pages/outpatientDoctorStation/components/dialysishistory.vue Bestand weergeven

@@ -300,10 +300,14 @@ export default{
300 300
 
301 301
     },
302 302
     rowclick(event){
303
-      this.patient_id = event.patient_id
304
-      this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
305
-      this.drawer =true
306
-      this.dialysisShow =true
303
+      this.$router.push({
304
+        path: "/dialysis/details/indexs",
305
+        query: { patient_id: event.patient_id, date: event.dialysis_date }
306
+      });
307
+      // this.patient_id = event.patient_id
308
+      // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
309
+      // this.drawer =true
310
+      // this.dialysisShow =true
307 311
     },
308 312
     clickCurrent(){
309 313
 

+ 2 - 2
src/xt_pages/outpatientDoctorStation/doctorDesk.vue Bestand weergeven

@@ -111,7 +111,7 @@
111 111
             <el-tab-pane label="透析记录" name="透析记录">
112 112
             </el-tab-pane>
113 113
             <el-tab-pane label="电子病历" name="电子病历"></el-tab-pane>
114
-            <!-- <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane> -->
114
+            <el-tab-pane label="透析历史" name="透析历史"></el-tab-pane>
115 115
 
116 116
           </el-tabs>
117 117
           <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子处方'">
@@ -191,7 +191,7 @@
191 191
         <dialysis-index v-if="titleType == '透析记录'" :record_date="record_date" :patientid='patientid'
192 192
                         :dialysisShow="dialysisShow"></dialysis-index>
193 193
 
194
-        <!-- <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid'></dialysishistory> -->
194
+        <dialysishistory v-if="titleType == '透析历史'" :patientid='patientid'></dialysishistory>
195 195
       </div>
196 196
 
197 197
     </div>

+ 2 - 2
src/xt_pages/outpatientDoctorStation/print.vue Bestand weergeven

@@ -9,13 +9,13 @@
9 9
         :prescription_id="prescription_id"></printOne>
10 10
 
11 11
         <print-ten-one
12
-          v-if="org_id == 10188 || org_id == 10217 || org_id == 0" v-bind:childResponse="childResponse"
12
+          v-if="org_id == 10188 || org_id == 10217 " v-bind:childResponse="childResponse"
13 13
           :advicePrint="advicePrint" :ids="ids" :patient="patient" :hisPatient="hisPatient"
14 14
           :doctorPorject="doctorPorject" :patient_id="patient_id" :record_date="record_date"
15 15
           :prescription_id="prescription_id"
16 16
         ></print-ten-one>
17 17
 
18
-        <prinSeven v-if="org_id == 10375 "
18
+        <prinSeven v-if="org_id == 10375 || org_id == 0"
19 19
           v-bind:childResponse="childResponse"
20 20
           :advicePrint="advicePrint"
21 21
           :ids="ids"

+ 6 - 1
src/xt_pages/outpatientDoctorStation/template/prinSeven.vue Bestand weergeven

@@ -140,9 +140,14 @@
140 140
                   </div>
141 141
                   <!-- v-if="arr.length>0 && arr[0][0].groupno==it.groupno" 'border-right':arr.length>0 && arr[0][0].groupno==it.groupno ? '1px solid black' :'none',-->
142 142
                 </div>
143
-                <div style="display: inline-block;position: absolute;left:80%;bottom:0px;margin-left: 10px;" >
143
+                <div style="display: inline-block;position: absolute;left:80%;margin-left: 10px;" >
144 144
                   ×&nbsp;{{ it.prescribing_number}}
145 145
                 </div>
146
+                <template v-if="item.arr.length>0&&item.arr[0][0].groupno==it.groupno">
147
+                  <div style="display: inline-block;position: absolute;left:80%;bottom:20px;margin-left: 10px;" >
148
+                    ×&nbsp;{{ item.arr[0][0].prescribing_number}}
149
+                  </div>
150
+                </template>
146 151
                 <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 10px;" v-if="(item.arr.length>0&&item.arr[0][0].groupno!=it.groupno) || item.arr.length==0">
147 152
                   &nbsp;共{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
148 153
                 </div>

+ 15 - 0
src/xt_pages/outpatientDoctorStation/template/printThree.vue Bestand weergeven

@@ -22,6 +22,14 @@
22 22
               style="width: 100%"
23 23
               alt=""
24 24
           /></span>
25
+
26
+          <span v-if="org_id == 10537">
27
+            <img
28
+              src="https://kuyi.shengws.com/xuwenshou.jpg"
29
+              style="width: 100%"
30
+              alt=""
31
+            /></span>
32
+
25 33
           <div class="printTitle">
26 34
             处方笺
27 35
             <span
@@ -247,6 +255,13 @@
247 255
               style="width: 100%"
248 256
               alt=""
249 257
           /></span>
258
+
259
+          <span v-if="org_id == 10537">
260
+            <img
261
+              src="https://kuyi.shengws.com/xuwenwei.jpg"
262
+              style="width: 100%"
263
+              alt=""
264
+            /></span>
250 265
           <!-- <div class="doctorBox">
251 266
               <p>医师:{{item.doctor?item.doctor:""}}</p>
252 267
               <p>日期:{{getTime(item.ctime)?getTime(item.ctime):""}}</p>

+ 7 - 8
src/xt_pages/user/dialysisRecord.vue Bestand weergeven

@@ -418,7 +418,7 @@
418 418
           </div> -->
419 419
 
420 420
 
421
-          <dialysisIndextwo :record_date="dialysis_date" :patientid='patient_id' :dialysisShow="dialysisShow" :dialysis_date="dialysis_date"></dialysisIndextwo>
421
+          <!-- <dialysisIndextwo :record_date="dialysis_date" :patientid='patient_id' :dialysisShow="dialysisShow" :dialysis_date="dialysis_date"></dialysisIndextwo> -->
422 422
         </div>
423 423
 
424 424
       </el-drawer>
@@ -432,7 +432,6 @@ import {getDialysisScheduleDetail,getLongAdviceTwo} from '@/api/dialysis_record'
432 432
 import { uParseTime } from "@/utils/tools";
433 433
 import { parseTime } from '@/utils'
434 434
 import { fetchAllDoctorAndNurse } from "@/api/doctor";
435
-import dialysisIndextwo from '../outpatientDoctorStation/components/dialysisIndextwo'
436 435
 import print from "print-js";
437 436
 
438 437
 export default {
@@ -478,7 +477,6 @@ export default {
478 477
   },
479 478
   components: {
480 479
     PatientSidebar,
481
-    dialysisIndextwo
482 480
   },
483 481
   methods: {
484 482
     getTime(record){
@@ -682,24 +680,25 @@ export default {
682 680
       }, 1);
683 681
     },
684 682
     clickCurrent(val) {
685
-      
683
+
686 684
       this.patient_id = val.patient_id
687 685
       this.dialysis_date = val.dialysis_date
688 686
     },
689 687
     rowclick(val){
688
+      // console.log('kkkkkkk',val.dialysis_date);
690 689
       this.$router.push({
691
-        path: "/dialysis/details",
690
+        path: "/dialysis/details/indexs",
692 691
         query: { patient_id: val.patient_id, date: val.dialysis_date }
693 692
       });
694 693
       // console.log('kkkkkkk',event);
695
-      // this.patient_id = event.patient_id
696
-      // this.dialysis_date = parseTime(event.dialysis_date, '{y}-{m}-{d}')
694
+      // this.patient_id = val.patient_id
695
+      // this.dialysis_date = parseTime(val.dialysis_date, '{y}-{m}-{d}')
697 696
       // this.drawer =true
698 697
       // this.dialysisShow =true
699 698
     },
700 699
     exportList(){
701 700
       import('@/vendor/Export2Excel').then(excel => {
702
-       
701
+
703 702
          if(this.recordData!=null && this.recordData.length > 0){
704 703
           for(let i=0;i<this.recordData.length;i++){
705 704
             this.recordData[i].dialysis_date_one = this.getTimeOne(this.recordData[i].dialysis_date)

+ 71 - 32
src/xt_pages/workforce/components/editTableData.vue Bestand weergeven

@@ -148,6 +148,10 @@
148 148
             color: '#606266',
149 149
             // border: '1px solid aqua',
150 150
           }"
151
+            v-loading="loading"
152
+            element-loading-text="拼命加载中"
153
+            element-loading-spinner="el-icon-loading"
154
+            element-loading-background="rgba(0, 0, 0, 0.8)"
151 155
             :fit="true"
152 156
             :data="scheduleZone"
153 157
             @cell-click="clickThis"
@@ -511,7 +515,7 @@
511 515
                         scope.row
512 516
                       )
513 517
                     "
514
-                    
518
+
515 519
                   ></schedule-item>
516 520
                 </div>
517 521
               </template>
@@ -1916,6 +1920,7 @@ export default {
1916 1920
       modename_value:true,//关闭透析模式开关
1917 1921
       Dialysis_patient:'',
1918 1922
       cur_date:"",
1923
+      loading:false,//加载
1919 1924
       dataloading:false,
1920 1925
       current_patient_data:[],
1921 1926
       week_zhongwens: ["周一", "周二", "周三", "周四", "周五", "周六", "周日"],
@@ -4793,7 +4798,6 @@ export default {
4793 4798
               mode_name: "",
4794 4799
               patient_id: 0,
4795 4800
               dialysis_machine_name: "",
4796
-
4797 4801
               patient: "",
4798 4802
             };
4799 4803
             that.scheduleZone[index].Sat_N = {
@@ -4912,11 +4916,11 @@ export default {
4912 4916
             }
4913 4917
           }
4914 4918
         });
4915
-        // this.closePatientPanel();
4916 4919
       }
4917 4920
       this.creating_schedule = false;
4918 4921
     },
4919 4922
     async CreateScheduleTwo(id, data,id_two) {
4923
+      this.loading =true
4920 4924
       this.creating_schedule = true;
4921 4925
       let response =await CreateScheduleTwo(id, data,id_two)
4922 4926
 
@@ -4927,38 +4931,73 @@ export default {
4927 4931
         var schedule = response.data.data.schedule;
4928 4932
         this.creating_schedule=false;
4929 4933
         this.dialogTableVisible=false
4930
-        this.getSchedules()
4931
-        // this.scheduleZone.forEach(function (zone, index) {
4932
-        //   if (
4933
-        //     zone.zone_id == schedule.partition_id &&
4934
-        //     zone.jihao_id == schedule.bed_id
4935
-        //   ) {
4936
-        //     var weekPath = that.weekPath(
4937
-        //       schedule.schedule_week,
4938
-        //       schedule.schedule_type
4939
-        //     );
4940
-        //     if (weekPath.length == 2) {
4941
-        //       var weekPathKey = weekPath[0] + "_" + weekPath[1];
4942
-        //       that.scheduleZone[index][weekPathKey] = {
4943
-        //         schedule_id: schedule.id,
4944
-        //         mode_id: schedule.mode_id,
4945
-        //         patient_id: schedule.patient_id,
4946
-        //         patient: schedule.patient,
4947
-        //         dialysis_machine_name: schedule.dialysis_machine_name,
4948
-        //
4949
-        //         patient_contagions: that.currentData.contagions,
4950
-        //         mode_name:
4951
-        //           typeof that.modeOptions[schedule.mode_id] === "undefined"
4952
-        //             ? ""
4953
-        //             : that.modeOptions[schedule.mode_id].name,
4954
-        //       };
4955
-        //       that.scheduleZone[index].total += 1;
4956
-        //     }
4957
-        //   }
4958
-        // });
4934
+        // this.getSchedules()
4935
+        console.log('cccccc',this.cur_drag_info);
4936
+         const curdrag = this.cur_drag_info
4937
+        if(curdrag.bed_id!=''){
4938
+
4939
+          this.scheduleZone.forEach(function (zone, index) {
4940
+            if (
4941
+              zone.zone_id == schedule.partition_id &&
4942
+              zone.jihao_id == schedule.bed_id
4943
+            ) {
4944
+              // console.log('111111',zone.zone_id,zone.jihao_id);
4945
+              var weekPath = that.weekPath(
4946
+                schedule.schedule_week,
4947
+                schedule.schedule_type
4948
+              );
4949
+              console.log('22222',weekPath);
4950
+              if (weekPath.length == 2) {
4951
+                var weekPathKey = weekPath[0] + "_" + weekPath[1];
4952
+                that.scheduleZone[index][weekPathKey] = {
4953
+                  schedule_id: schedule.id,
4954
+                  mode_id: schedule.mode_id,
4955
+                  patient_id: schedule.patient_id,
4956
+                  patient: schedule.patient,
4957
+                  dialysis_machine_name: schedule.dialysis_machine_name,
4958
+                  patient_contagions: that.currentData.contagions,
4959
+                  mode_name:
4960
+                    typeof that.modeOptions[schedule.mode_id] === "undefined"
4961
+                      ? ""
4962
+                      : that.modeOptions[schedule.mode_id].name,
4963
+                };
4964
+                // console.log('3333',that.scheduleZone[index][weekPathKey]);
4965
+                that.scheduleZone[index].total += 1;
4966
+              }
4967
+            }
4968
+
4969
+            if(zone.zone_id == curdrag.partition_id &&
4970
+                zone.jihao_id == curdrag.bed_id
4971
+              ){
4972
+                // console.log('aaaaaa',curdrag);
4973
+                var weekPath = that.weekPath(
4974
+                  curdrag.schedule_week,
4975
+                  curdrag.schedule_type
4976
+                );
4977
+                console.log('aaaaaa',weekPath);
4978
+                if(weekPath.length == 2){
4979
+                  var weekPathKey = weekPath[0] + "_" + weekPath[1];
4980
+                  that.scheduleZone[index][weekPathKey] ={
4981
+                    schedule_id: '',
4982
+                    mode_id: '',
4983
+                    patient_id: '',
4984
+                    patient: '',
4985
+                    dialysis_machine_name: '',
4986
+                    patient_contagions: '',
4987
+                    mode_name:''
4988
+                  };
4989
+                  that.scheduleZone[index].total += 1;
4990
+                  }
4991
+              }
4992
+          });
4993
+        }else{
4994
+          this.getSchedules()
4995
+        }
4996
+        // return that.scheduleZone()
4959 4997
         // this.closePatientPanel();
4960 4998
       }
4961 4999
       this.creating_schedule = false;
5000
+      this.loading=false
4962 5001
     },
4963 5002
     // 单击选中患者
4964 5003
     clickThis(row, column, cell, event) {