Browse Source

添加规格名称单位

csx 5 years ago
parent
commit
4af19c6394

+ 21 - 2
src/App.vue View File

@@ -1,13 +1,32 @@
1 1
 <template>
2 2
   <div id="app">
3 3
     <!-- <img src="./assets/logo.png"> -->
4
-    <router-view/>
4
+    <router-view  v-if="isRouterAlive" />
5 5
   </div>
6 6
 </template>
7 7
 
8 8
 <script>
9 9
 export default {
10
-  name: "App"
10
+  name: "App",
11
+  provide () {
12
+    return {
13
+      reload: this.reload
14
+    }
15
+  },
16
+  data () {
17
+    return {
18
+      isRouterAlive: true
19
+    }
20
+  },
21
+  methods: {
22
+    reload () {
23
+      this.isRouterAlive = false
24
+      this.$nextTick(function () {
25
+        this.isRouterAlive = true
26
+      })
27
+    }
28
+  }
29
+
11 30
 };
12 31
 </script>
13 32
 

+ 8 - 0
src/api/stock.js View File

@@ -0,0 +1,8 @@
1
+import request from '@/utils/request'
2
+
3
+export function getWarehouseGoodInfo(type_id){
4
+  return request({
5
+    url:'/m/api/warehouse/query?type_id='+type_id,
6
+    method:'get',
7
+  })
8
+}

+ 1 - 1
src/pages/advice/DialysisAdviceTable.vue View File

@@ -112,7 +112,7 @@
112 112
                 </td>
113 113
                 <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
114 114
                   <span>{{advice.advice_name }}</span>
115
-                  <span>{{advice.advice_desc}}</span>
115
+                  <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
116 116
                   <span
117 117
                     v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
118 118
                   <span v-if="advice.single_dose"> 单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>

+ 1 - 1
src/pages/advice/NormalAdviceTable.vue View File

@@ -91,7 +91,7 @@
91 91
               <td>{{ advice.parent_id == 0 ? parseTime(advice.start_time, "{m}-{d} {h}:{i}") : "" }}</td>
92 92
               <td>
93 93
                 <span >{{advice.advice_name }}</span>
94
-                <span >{{advice.advice_desc}}</span>
94
+                <span >{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
95 95
 
96 96
                 <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
97 97
                 <span v-if="advice.single_dose"> 单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>

+ 1 - 1
src/pages/main/DialysisArea.vue View File

@@ -304,7 +304,7 @@ export default {
304 304
 .screening {
305 305
   border-bottom: 1px #e5e5e5 solid;
306 306
   position: fixed;
307
-  top: 63px;
307
+  top: 1.6rem;
308 308
   right: 0;
309 309
   z-index: 66;
310 310
   left: 1.58rem;

+ 1 - 1
src/pages/main/Print.vue View File

@@ -1585,7 +1585,7 @@
1585 1585
               <td class="advice-name">
1586 1586
                 <span v-if="advice[0].parent_id>0">└</span>
1587 1587
                 <span>{{advice[0].advice_name }}</span>
1588
-                <span>{{advice[0].advice_desc}}</span>
1588
+                <span>{{advice[0].advice_desc}} {{advice[0].drug_spec_unit}}</span>
1589 1589
                 <span v-if="advice[0].drug_spec">{{advice[0].drug_spec}}{{advice[0].drug_spec_unit}}</span>
1590 1590
                 <span v-if="advice[0].prescribing_number">* {{advice[0].prescribing_number}}{{advice[0].prescribing_number_unit}}</span>
1591 1591
                 <span v-if="advice[0].single_dose">单次用量 {{advice[0].single_dose}}{{advice[0].single_dose_unit}}</span>

+ 1 - 1
src/pages/main/RecordPage.vue View File

@@ -6,7 +6,7 @@
6 6
           <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
7 7
         </div>
8 8
       </van-col>
9
-      <van-col :span="6">
9
+      <van-col :span="11">
10 10
         <div class="department">
11 11
           <ul>
12 12
             <li style="position: relative;" :class="index == 0? 'active':'' " @click="ClickTab(0)">

+ 7 - 2
src/pages/main/WaitingArea.vue View File

@@ -1,8 +1,8 @@
1 1
 <template>
2 2
   <div>
3 3
     <div class="screening">
4
+      <!--<div @click="reloads()">刷新</div>-->
4 5
       <ul>
5
-
6 6
         <li v-for="(item,i) in menuList" :class="select_index == i ? 'active' : ''" @click="menuTabClick(i)"
7 7
             :key="i">{{ item.label + (item.count > 0 ? '(' + item.count + ')' : '') }}
8 8
         </li>
@@ -75,6 +75,7 @@
75 75
       PatientBox,
76 76
       Popover
77 77
     },
78
+    inject: ['reload'],
78 79
     data () {
79 80
       return {
80 81
         menuList: [
@@ -270,6 +271,10 @@
270 271
       // })
271 272
     },
272 273
     methods: {
274
+      reloads:function(){
275
+        this.reload()
276
+
277
+      },
273 278
       handleAllChange: function (tabIndex) {
274 279
         this.select_index = tabIndex
275 280
         this.zone_selected = 0
@@ -399,7 +404,7 @@
399 404
   .screening {
400 405
   border-bottom: 1px #e5e5e5 solid;
401 406
   position: fixed;
402
-  top: 63px;
407
+  top: 1.6rem;
403 408
   right: 0;
404 409
   z-index: 66;
405 410
   left: 1.58rem;

+ 11 - 7
src/pages/main/dialog/OrdersDialog.vue View File

@@ -78,7 +78,7 @@
78 78
                 >
79 79
                   <div class="txt">
80 80
                     <span>{{advice.advice_name }}</span>
81
-                    <span>{{ advice.advice_desc }}</span>
81
+                    <span>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</span>
82 82
                     <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
83 83
                     <span v-if="advice.single_dose"
84 84
                     >单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
@@ -118,6 +118,7 @@
118 118
       v-show="index==1&&isShowDialog"
119 119
       @back-action="index = 0"
120 120
       :patient_id="patient.id"
121
+      :drug_spec_unit_options="unitsOption"
121 122
       :delivery_way_options="deliveryWayOptions"
122 123
       :execution_frequency_options="executionFrequencyOptions"
123 124
       :single_dose_unit_options="unitsOption"
@@ -132,12 +133,14 @@
132 133
       @did-create-subdrug="didAddSubdrug"
133 134
       :single_dose_unit_options="unitsOption"
134 135
       :prescribing_number_unit_options="unitsOption"
136
+      :drug_spec_unit_options="unitsOption"
135 137
     ></advice-form>
136 138
 
137 139
     <modify-advice-form
138 140
       ref="modify_advice_form"
139 141
       @back="index = 0"
140 142
       @did-modify="didModifyAdvice"
143
+      :drug_spec_unit_options="unitsOption"
141 144
       :delivery_way_options="deliveryWayOptions"
142 145
       :execution_frequency_options="executionFrequencyOptions"
143 146
       :single_dose_unit_options="unitsOption"
@@ -151,6 +154,7 @@
151 154
       :delivery_way_options="deliveryWayOptions"
152 155
       :execution_frequency_options="executionFrequencyOptions"
153 156
       :single_dose_unit_options="unitsOption"
157
+      :drug_spec_unit_options="unitsOption"
154 158
       :prescribing_number_unit_options="unitsOption"
155 159
       :advice_templates="adviceTemplates"
156 160
       @did-create-advices="didCreateAdvices"
@@ -377,7 +381,7 @@
377 381
           remark: advice.remark,
378 382
           start_time: advice.start_time,
379 383
           // drug_spec: String(advice.drug_spec),
380
-          // drug_spec_unit: advice.drug_spec_unit,
384
+          drug_spec_unit: advice.drug_spec_unit,
381 385
           delivery_way: advice.delivery_way,
382 386
           execution_frequency: advice.execution_frequency,
383 387
           single_dose: String(advice.single_dose),
@@ -398,7 +402,7 @@
398 402
                     advice.remark = resp_advice.remark;
399 403
                     advice.start_time = resp_advice.start_time;
400 404
                     // advice.drug_spec = resp_advice.drug_spec;
401
-                    // (advice.drug_spec_unit = resp_advice.drug_spec_unit),
405
+                    (advice.drug_spec_unit = resp_advice.drug_spec_unit),
402 406
                     (advice.delivery_way = resp_advice.delivery_way),
403 407
                       (advice.execution_frequency =
404 408
                         resp_advice.execution_frequency),
@@ -487,7 +491,7 @@
487 491
           advice_name: subdrug.title,
488 492
           advice_desc: subdrug.advice_desc,
489 493
           // drug_spec: String(subdrug.drug_spec),
490
-          // drug_spec_unit: subdrug.drug_spec_unit,
494
+          drug_spec_unit: subdrug.drug_spec_unit,
491 495
           single_dose: String(subdrug.single_dose),
492 496
           single_dose_unit: subdrug.single_dose_unit,
493 497
           prescribing_number: String(subdrug.prescribing_number),
@@ -1132,7 +1136,7 @@
1132 1136
             advice_desc: advice.advice_desc,
1133 1137
             remark: advice.remark,
1134 1138
             // drug_spec: advice.drug_spec,
1135
-            // drug_spec_unit: advice.drug_spec_unit,
1139
+            drug_spec_unit: advice.drug_spec_unit,
1136 1140
             delivery_way: advice.delivery_way,
1137 1141
             execution_frequency: advice.execution_frequency,
1138 1142
             single_dose: advice.single_dose,
@@ -1160,7 +1164,7 @@
1160 1164
             remark: advice.remark,
1161 1165
             start_time: advice.start_time,
1162 1166
             // drug_spec: advice.drug_spec,
1163
-            // drug_spec_unit: advice.drug_spec_unit,
1167
+            drug_spec_unit: advice.drug_spec_unit,
1164 1168
             delivery_way: advice.delivery_way,
1165 1169
             execution_frequency: advice.execution_frequency,
1166 1170
             single_dose: advice.single_dose,
@@ -1180,7 +1184,7 @@
1180 1184
               remark: advice.remark,
1181 1185
 
1182 1186
               // drug_spec: advice.drug_spec,
1183
-              // drug_spec_unit: advice.drug_spec_unit,
1187
+              drug_spec_unit: advice.drug_spec_unit,
1184 1188
               delivery_way: advice.delivery_way,
1185 1189
               execution_frequency: advice.execution_frequency,
1186 1190
               single_dose: advice.single_dose,

+ 44 - 15
src/pages/main/dialog/PrescriptionDialog.vue View File

@@ -240,15 +240,14 @@
240 240
 
241 241
 
242 242
 
243
-        <!--<div @click="showSubMenu('consumable_material')" class="item" ref="consumable_material" v-if="config.is_open == 1">-->
244
-          <!--<label class="name" for="knj">透析耗材</label>-->
245
-          <!--<div class="content">-->
246
-            <!--<span class="text" id="knjaa">去配置</span>-->
247
-            <!--<span class="iconfont">&#xe6f9;</span>-->
248
-          <!--</div>-->
249
-        <!--</div>-->
250
-
251
-
243
+        <div @click="dialysisGoodsClick()" class="item" ref="consumable_material" v-if="config.is_open == 1">
244
+          <label class="name" for="knj">透析耗材</label>
245
+          <div class="content">
246
+            <span class="text" id="knjaa" v-if="this.prescription_prop.id > 0">去修改</span>
247
+            <!--<span class="text" id="knjaa" v-else-if="this.prescription_prop.id.length == 0">去配置</span>-->
248
+            <span class="iconfont">&#xe6f9;</span>
249
+          </div>
250
+        </div>
252 251
 
253 252
 
254 253
         <div class="item" style="display: none">
@@ -285,8 +284,9 @@
285 284
     </div>
286 285
     <!--<two-menu title="二级菜单" v-show="isShowModeSubMenu"></two-menu>-->
287 286
     <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"  v-on:menu-empty="menuEmpty"
288
-                        :propsForm="propForm"></check-box-sub-menu>
287
+                        :propsForm="propForm" ></check-box-sub-menu>
289 288
     <!--<multiple-sub-menu :goodTypes="types" :visibility="is_show" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm" :propsForm="propForm"></multiple-sub-menu>-->
289
+    <multiple-sub-menu :goodTypes="types" :info="info" :visibility="is_show"  v-on:menu-cancel-two="menuCancleTwo" v-on:menu-comfirm-two="menuComfirmTwo" :propsForm="propForm" :dialysisPrescription="dialysisPrescription"></multiple-sub-menu>
290 290
 
291 291
     <mt-datetime-picker
292 292
       ref="picker"
@@ -300,15 +300,12 @@
300 300
 
301 301
 
302 302
 
303
-
304
-
305
-
306 303
   </div>
307 304
 </template>
308 305
 
309 306
 <script>
310 307
   import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
311
-  // import MultipleSubMenu from "./subMenu/multipleSubMenu"
308
+  import MultipleSubMenu from "./subMenu/multipleSubMenu"
312 309
   import {commitDialysisPrescription, postSign, postSolution} from "@/api/dialysis";
313 310
   import {Toast} from 'vant';
314 311
   import {getDataConfig} from '@/utils/data';
@@ -338,6 +335,12 @@
338 335
           return new Array();
339 336
         }
340 337
       },
338
+      info:{
339
+        type:Array,
340
+        default: function () {
341
+          return new Array();
342
+        }
343
+      },
341 344
       prescription_prop: {
342 345
         type: Object,
343 346
       },
@@ -363,7 +366,7 @@
363 366
         displaceLiquiPartOptions:[],
364 367
         bloodAccessOptions:[],
365 368
 
366
-
369
+        is_show:false,
367 370
 
368 371
         perfusion_apparatus: {},
369 372
         replacementWays: [],
@@ -416,6 +419,13 @@
416 419
           blood_access:"",
417 420
           ultrafiltration:"",
418 421
           body_fluid_other:"",
422
+          niprocart:'',
423
+          jms:'',
424
+          fistula_needle_set:'',
425
+          fistula_needle_set_16:'',
426
+          hemoperfusion:'',
427
+          dialyser_sterilised:'',
428
+          filtryzer:'',
419 429
         },
420 430
         anticoagulant: {
421 431
           id: 0,
@@ -928,10 +938,28 @@
928 938
         } else {
929 939
           return '0.0';
930 940
         }
941
+      },dialysisGoodsClick:function () {
942
+        this.isShowDialog = false
943
+        this.is_show = true
944
+      },menuCancleTwo:function () {
945
+        this.isShowDialog = true
946
+        this.is_show = false
947
+
948
+      },menuComfirmTwo:function (dialysisPrescription) {
949
+        this.isShowDialog = true
950
+        this.is_show = false
951
+        this.dialysisPrescription.niprocart = dialysisPrescription.niprocart
952
+        this.dialysisPrescription.jms = dialysisPrescription.jms
953
+        this.dialysisPrescription.fistula_needle_set = dialysisPrescription.fistula_needle_set
954
+        this.dialysisPrescription.fistula_needle_set_16 = dialysisPrescription.fistula_needle_set_16
955
+        this.dialysisPrescription.hemoperfusion = dialysisPrescription.hemoperfusion
956
+        this.dialysisPrescription.dialyser_sterilised = dialysisPrescription.dialyser_sterilised
957
+        this.dialysisPrescription.filtryzer = dialysisPrescription.filtryzer
931 958
 
932 959
       }
933 960
     },
934 961
     created() {
962
+
935 963
       if (this.$store.getters.user.user.user_type == 2) {
936 964
         this.isShowSign = true;
937 965
 
@@ -1020,6 +1048,7 @@
1020 1048
     },
1021 1049
 
1022 1050
     components: {
1051
+      MultipleSubMenu,
1023 1052
       // MultipleSubMenu,
1024 1053
       CheckBoxSubMenu
1025 1054
     }

+ 14 - 9
src/pages/main/dialog/modify_order/ModifyAdviceGroup.vue View File

@@ -44,7 +44,7 @@
44 44
             </tr>
45 45
             <tr v-for="(advice, index) in advices" :key="index" :class="{ 'row-class-active': index == current_advice_index }" @click="selectAdviceAction(index, advice)">
46 46
               <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
47
-              <td>{{ advice.advice_desc }}</td>
47
+              <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
48 48
               <td>{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
49 49
               <td>{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
50 50
               <td>{{ advice.parent_id == 0 ? advice.delivery_way : "" }}</td>
@@ -63,6 +63,7 @@
63 63
       :execution_frequency_options="execution_frequency_options"
64 64
       :single_dose_unit_options="single_dose_unit_options"
65 65
       :prescribing_number_unit_options="prescribing_number_unit_options"
66
+      :drug_spec_unit_options="drug_spec_unit_options"
66 67
     ></modify-advice-form>
67 68
 
68 69
     <mt-datetime-picker
@@ -77,6 +78,7 @@
77 78
       @back-action="sub_dialog_key = 0"
78 79
       :patient_id="patient_id"
79 80
       :group_no="group_no"
81
+      :drug_spec_unit_options="drug_spec_unit_options"
80 82
       :delivery_way_options="delivery_way_options"
81 83
       :execution_frequency_options="execution_frequency_options"
82 84
       :single_dose_unit_options="single_dose_unit_options"
@@ -114,12 +116,12 @@ export default {
114 116
         return [];
115 117
       }
116 118
     },
117
-    // drug_spec_unit_options: {
118
-    //   type: Array,
119
-    //   default: function() {
120
-    //     return [];
121
-    //   }
122
-    // },
119
+    drug_spec_unit_options: {
120
+      type: Array,
121
+      default: function() {
122
+        return [];
123
+      }
124
+    },
123 125
     delivery_way_options: {
124 126
       type: Array,
125 127
       default: function() {
@@ -224,7 +226,7 @@ export default {
224 226
           title: this.current_advice.advice_name,
225 227
           advice_desc: this.current_advice.advice_desc,
226 228
           // drug_spec: this.current_advice.drug_spec,
227
-          // drug_spec_unit: this.current_advice.drug_spec_unit,
229
+          drug_spec_unit: this.current_advice.drug_spec_unit,
228 230
           delivery_way: this.current_advice.delivery_way,
229 231
           execution_frequency: this.current_advice.execution_frequency,
230 232
           single_dose: this.current_advice.single_dose,
@@ -267,12 +269,14 @@ export default {
267 269
         advice_name: advice.title,
268 270
         advice_desc: advice.advice_desc,
269 271
         remark:advice.remark,
272
+        drug_spec_unit:advice.drug_spec_unit,
270 273
         delivery_way: advice.delivery_way,
271 274
         execution_frequency: advice.execution_frequency,
272 275
         single_dose: String(advice.single_dose),
273 276
         single_dose_unit: advice.single_dose_unit,
274 277
         prescribing_number: String(advice.prescribing_number),
275
-        prescribing_number_unit: advice.prescribing_number_unit
278
+        prescribing_number_unit: advice.prescribing_number_unit,
279
+        drug_spec_unit:advice.drug_spec_unit
276 280
       }).then(rs => {
277 281
         if (rs.data.state == 1) {
278 282
           var resp_advice = rs.data.data.advice
@@ -280,6 +284,7 @@ export default {
280 284
           this.current_advice
281 285
           this.current_advice.advice_name = resp_advice.advice_name
282 286
           this.current_advice.advice_desc = resp_advice.advice_desc
287
+          this.current_advice.drug_spec_unit = resp_advice.drug_spec_unit
283 288
           this.current_advice.remark = resp_advice.remark
284 289
           this.current_advice.delivery_way = resp_advice.delivery_way,
285 290
           this.current_advice.execution_frequency = resp_advice.execution_frequency,

+ 18 - 17
src/pages/main/dialog/modify_order/modify_order_form.vue View File

@@ -23,7 +23,7 @@
23 23
             <div class="cell">
24 24
               <label>药品规格</label>
25 25
               <input class="inputBox" style="width:100%" v-model="order.advice_desc">
26
-              <!-- <input type="number" onclick="this.select()" class="inputBox" style="width:60%" v-model="order.drug_spec">
26
+              <!--<input type="number" onclick="this.select()" class="inputBox" style="width:60%" v-model="order.drug_spec">-->
27 27
               <input
28 28
                 type="text"
29 29
                 placeholder="单位"
@@ -32,7 +32,7 @@
32 32
                 style="width:35%"
33 33
                 v-model="order.drug_spec_unit"
34 34
                 @focus="selectDrugSpecUnitAction"
35
-              > -->
35
+              >
36 36
             </div>
37 37
 
38 38
             <div class="cell">
@@ -114,7 +114,7 @@
114 114
       option_label_key="name"
115 115
     ></single-option-dialog>
116 116
 
117
-    <!-- <single-option-dialog
117
+    <single-option-dialog
118 118
       :visibility="sub_dialog_key == 5"
119 119
       title="用药规格"
120 120
       @did-selected="didSelectDrugSpecUnit"
@@ -122,7 +122,7 @@
122 122
       :options="drug_spec_unit_options"
123 123
       option_key="id"
124 124
       option_label_key="name"
125
-    ></single-option-dialog> -->
125
+    ></single-option-dialog>
126 126
 
127 127
     <single-option-dialog
128 128
       :visibility="sub_dialog_key == 2"
@@ -174,12 +174,12 @@ export default {
174 174
     SingleOptionDialog
175 175
   },
176 176
   props: {
177
-    // drug_spec_unit_options: {
178
-    //   type: Array,
179
-    //   default: function() {
180
-    //     return [];
181
-    //   }
182
-    // },
177
+    drug_spec_unit_options: {
178
+      type: Array,
179
+      default: function() {
180
+        return [];
181
+      }
182
+    },
183 183
     delivery_way_options: {
184 184
       type: Array,
185 185
       default: function() {
@@ -220,7 +220,7 @@ export default {
220 220
         title: "",
221 221
         advice_desc: "",
222 222
         // drug_spec: "",
223
-        // drug_spec_unit: "",
223
+        drug_spec_unit: "",
224 224
         remark:"",
225 225
         delivery_way: "",
226 226
         execution_frequency: "",
@@ -262,7 +262,7 @@ export default {
262 262
       this.start_time_str = parseTime(order.start_time, "{y}-{m}-{d} {h}:{i}") + ":00";
263 263
 
264 264
       // this.order.drug_spec = order.drug_spec;
265
-      // this.order.drug_spec_unit = order.drug_spec_unit;
265
+      this.order.drug_spec_unit = order.drug_spec_unit;
266 266
       this.order.delivery_way =
267 267
         order.delivery_way == undefined || order.delivery_way == null
268 268
           ? ""
@@ -305,7 +305,8 @@ export default {
305 305
           single_dose_unit: this.order.single_dose_unit,
306 306
           prescribing_number: this.order.prescribing_number,
307 307
           prescribing_number_unit: this.order.prescribing_number_unit,
308
-          start_time:this.start_time_str
308
+          start_time:this.start_time_str,
309
+          drug_spec_unit:this.order.drug_spec_unit,
309 310
 
310 311
         });
311 312
       }
@@ -321,10 +322,10 @@ export default {
321 322
     selectDrugSpecUnitAction: function() {
322 323
       this.sub_dialog_key = 5;
323 324
     },
324
-    // didSelectDrugSpecUnit: function(index) {
325
-    //   this.didCloseSingleOptionDialog();
326
-    //   this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
327
-    // },
325
+    didSelectDrugSpecUnit: function(index) {
326
+      this.didCloseSingleOptionDialog();
327
+      this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
328
+    },
328 329
     selectPrescribingNumUnitAction: function() {
329 330
       this.sub_dialog_key = 2;
330 331
     },

+ 15 - 15
src/pages/main/dialog/new_order/AddNewOrders.vue View File

@@ -52,7 +52,7 @@
52 52
                 <td
53 53
                   style="text-align: left; padding-left: 5px; padding-right: 5px;"
54 54
                 >{{ advice.title }}</td>
55
-                <td>{{ advice.advice_desc }}</td>
55
+                <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
56 56
                 <td v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</td>
57 57
                 <td v-else></td>
58 58
                 <td v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</td>
@@ -69,7 +69,7 @@
69 69
                 <td
70 70
                   style="text-align: left; padding-right: 5px; padding-left: 25px;"
71 71
                 >{{ subdrug.title }}</td>
72
-                <td>{{ subdrug.advice_desc }}</td>
72
+                <td>{{ subdrug.advice_desc }} {{subdrug.drug_spec_unit}}</td>
73 73
                 <td><span v-if="subdrug.prescribing_number">{{ subdrug.prescribing_number }}{{ subdrug.prescribing_number_unit }}</span></td>
74 74
                 <td><span v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</span></td>
75 75
                 <!--<td v-if="subdrug.single_dose">{{ subdrug.single_dose }} {{ subdrug.single_dose_unit }}</td>-->
@@ -104,6 +104,7 @@
104 104
       @back="show_dialog_key = 0"
105 105
       @did-create-new="didAddNewOrder"
106 106
       @did-modify="didModifyOrder"
107
+      :drug_spec_unit_options="drug_spec_unit_options"
107 108
       :delivery_way_options="delivery_way_options"
108 109
       :execution_frequency_options="execution_frequency_options"
109 110
       :single_dose_unit_options="single_dose_unit_options"
@@ -151,12 +152,12 @@ export default {
151 152
         return [];
152 153
       }
153 154
     },
154
-    // drug_spec_unit_options: {
155
-    //   type: Array,
156
-    //   default: function () {
157
-    //     return [];
158
-    //   }
159
-    // },
155
+    drug_spec_unit_options: {
156
+      type: Array,
157
+      default: function () {
158
+        return [];
159
+      }
160
+    },
160 161
     delivery_way_options: {
161 162
       type: Array,
162 163
       default: function() {
@@ -276,7 +277,7 @@ export default {
276 277
           advice_name: advice.title,
277 278
           advice_desc: advice.advice_desc,
278 279
           // drug_spec: String(advice.drug_spec),
279
-          // drug_spec_unit: advice.drug_spec_unit,
280
+          drug_spec_unit: advice.drug_spec_unit,
280 281
           single_dose: String(advice.single_dose),
281 282
           single_dose_unit: advice.single_dose_unit,
282 283
           prescribing_number: String(advice.prescribing_number),
@@ -292,7 +293,7 @@ export default {
292 293
             advice_name: subdrug.title,
293 294
             advice_desc: subdrug.advice_desc,
294 295
             // drug_spec: String(subdrug.drug_spec),
295
-            // drug_spec_unit: subdrug.drug_spec_unit,
296
+            drug_spec_unit: subdrug.drug_spec_unit,
296 297
             single_dose: String(subdrug.single_dose),
297 298
             single_dose_unit: subdrug.single_dose_unit,
298 299
             prescribing_number: String(subdrug.prescribing_number),
@@ -344,7 +345,7 @@ export default {
344 345
             title: adv.advice_name,
345 346
             advice_desc: adv.advice_desc,
346 347
             // drug_spec: adv.drug_spec,
347
-            // drug_spec_unit: adv.drug_spec_unit,
348
+            drug_spec_unit: adv.drug_spec_unit,
348 349
             delivery_way: adv.delivery_way,
349 350
             execution_frequency: adv.execution_frequency,
350 351
             single_dose: adv.single_dose,
@@ -366,7 +367,7 @@ export default {
366 367
                 title: resp_adv.advice_name,
367 368
                 advice_desc: resp_adv.advice_desc,
368 369
                 // drug_spec: resp_adv.drug_spec,
369
-                // drug_spec_unit: resp_adv.drug_spec_unit,
370
+                drug_spec_unit: resp_adv.drug_spec_unit,
370 371
                 delivery_way: resp_adv.delivery_way,
371 372
                 execution_frequency: resp_adv.execution_frequency,
372 373
                 single_dose: resp_adv.single_dose,
@@ -446,7 +447,6 @@ export default {
446 447
       this.show_dialog_key = 0;
447 448
       order.id = 0;
448 449
       order.subdrugs = [];
449
-      console.log(order)
450 450
       this.advices.push(order);
451 451
     },
452 452
     didModifyOrder: function(order) {
@@ -458,7 +458,7 @@ export default {
458 458
           advice.title = order.title;
459 459
           advice.advice_desc = order.advice_desc;
460 460
           // advice.drug_spec = order.drug_spec;
461
-          // advice.drug_spec_unit = order.drug_spec_unit;
461
+          advice.drug_spec_unit = order.drug_spec_unit;
462 462
           advice.delivery_way = order.delivery_way;
463 463
           advice.execution_frequency = order.execution_frequency;
464 464
           advice.single_dose = order.single_dose;
@@ -472,7 +472,7 @@ export default {
472 472
           subdrug.title = order.title;
473 473
           subdrug.advice_desc = order.advice_desc;
474 474
           // subdrug.drug_spec = order.drug_spec;
475
-          // subdrug.drug_spec_unit = order.drug_spec_unit;
475
+          subdrug.drug_spec_unit = order.drug_spec_unit;
476 476
           subdrug.single_dose = order.single_dose;
477 477
           subdrug.single_dose_unit = order.single_dose_unit;
478 478
           subdrug.prescribing_number = order.prescribing_number;

+ 25 - 22
src/pages/main/dialog/new_order/order_form.vue View File

@@ -18,7 +18,9 @@
18 18
             </div>
19 19
             <div class="cell">
20 20
               <label>药品规格</label>
21
-              <!-- <input type="number" class="inputBox" style="width:62.5%" v-model="order.drug_spec">
21
+              <input class="inputBox" style="width:100%" v-model="order.advice_desc">
22
+
23
+              <!--<input type="number" class="inputBox" style="width:62.5%" v-model="order.drug_spec">-->
22 24
               <input
23 25
                 type="text"
24 26
                 placeholder="单位"
@@ -27,8 +29,7 @@
27 29
                 style="width:35%"
28 30
                 v-model="order.drug_spec_unit"
29 31
                 @focus="selectDrugSpecUnitAction"
30
-              > -->
31
-              <input class="inputBox" style="width:100%" v-model="order.advice_desc">
32
+              >
32 33
             </div>
33 34
 
34 35
             <div class="cell">
@@ -111,7 +112,7 @@
111 112
       option_label_key="name"
112 113
     ></single-option-dialog>
113 114
 
114
-    <!-- <single-option-dialog
115
+    <single-option-dialog
115 116
       :visibility="sub_dialog_key == 5"
116 117
       title="用药规格"
117 118
       @did-selected="didSelectDrugSpecUnit"
@@ -119,7 +120,7 @@
119 120
       :options="drug_spec_unit_options"
120 121
       option_key="id"
121 122
       option_label_key="name"
122
-    ></single-option-dialog> -->
123
+    ></single-option-dialog>
123 124
 
124 125
     <single-option-dialog
125 126
       :visibility="sub_dialog_key == 2"
@@ -163,12 +164,12 @@ export default {
163 164
     SingleOptionDialog
164 165
   },
165 166
   props: {
166
-    // drug_spec_unit_options: {
167
-    //   type: Array,
168
-    //   default: function() {
169
-    //     return [];
170
-    //   }
171
-    // },
167
+    drug_spec_unit_options: {
168
+      type: Array,
169
+      default: function() {
170
+        return [];
171
+      }
172
+    },
172 173
     delivery_way_options: {
173 174
       type: Array,
174 175
       default: function() {
@@ -204,7 +205,7 @@ export default {
204 205
         title: "",
205 206
         advice_desc: "",
206 207
         // drug_spec: "",
207
-        // drug_spec_unit: "",
208
+        drug_spec_unit: "",
208 209
         delivery_way: "",
209 210
         execution_frequency: "",
210 211
         single_dose: "",
@@ -239,7 +240,7 @@ export default {
239 240
       this.order.title = "";
240 241
       this.order.advice_desc = "";
241 242
       // this.order.drug_spec = "";
242
-      // this.order.drug_spec_unit = "";
243
+      this.order.drug_spec_unit = "";
243 244
       this.order.delivery_way = "";
244 245
       this.order.execution_frequency = "";
245 246
       this.order.single_dose = "";
@@ -256,7 +257,7 @@ export default {
256 257
       this.order.title = order.title;
257 258
       this.order.advice_desc = order.advice_desc;
258 259
       // this.order.drug_spec = order.drug_spec;
259
-      // this.order.drug_spec_unit = order.drug_spec_unit;
260
+      this.order.drug_spec_unit = order.drug_spec_unit;
260 261
       this.order.delivery_way = order.delivery_way;
261 262
       this.order.execution_frequency = order.execution_frequency;
262 263
       this.order.single_dose = order.single_dose;
@@ -284,7 +285,7 @@ export default {
284 285
       this.order.remark = "";
285 286
 
286 287
       // this.order.drug_spec = "";
287
-      // this.order.drug_spec_unit = "";
288
+      this.order.drug_spec_unit = "";
288 289
       this.order.delivery_way =
289 290
         parent_delivery_way == undefined || parent_delivery_way == null
290 291
           ? ""
@@ -324,7 +325,9 @@ export default {
324 325
           single_dose_unit: this.order.single_dose_unit,
325 326
           prescribing_number: this.order.prescribing_number,
326 327
           prescribing_number_unit: this.order.prescribing_number_unit,
327
-          remark: this.order.remark
328
+          remark: this.order.remark,
329
+          drug_spec_unit: this.order.drug_spec_unit,
330
+
328 331
         });
329 332
       } else if (this.mode == 2) {
330 333
         this.$emit("did-modify", {
@@ -332,7 +335,7 @@ export default {
332 335
           title: this.order.title,
333 336
           advice_desc: this.order.advice_desc,
334 337
           // drug_spec: this.order.drug_spec,
335
-          // drug_spec_unit: this.order.drug_spec_unit,
338
+          drug_spec_unit: this.order.drug_spec_unit,
336 339
           delivery_way: this.order.delivery_way,
337 340
           execution_frequency: this.order.execution_frequency,
338 341
           single_dose: this.order.single_dose,
@@ -350,7 +353,7 @@ export default {
350 353
           title: this.order.title,
351 354
           advice_desc: this.order.advice_desc,
352 355
           // drug_spec: this.order.drug_spec,
353
-          // drug_spec_unit: this.order.drug_spec_unit,
356
+          drug_spec_unit: this.order.drug_spec_unit,
354 357
           delivery_way: this.order.delivery_way,
355 358
           execution_frequency: this.order.execution_frequency,
356 359
           single_dose: this.order.single_dose,
@@ -371,10 +374,10 @@ export default {
371 374
     selectDrugSpecUnitAction: function() {
372 375
       this.sub_dialog_key = 5;
373 376
     },
374
-    // didSelectDrugSpecUnit: function(index) {
375
-    //   this.didCloseSingleOptionDialog();
376
-    //   this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
377
-    // },
377
+    didSelectDrugSpecUnit: function(index) {
378
+      this.didCloseSingleOptionDialog();
379
+      this.order.drug_spec_unit = this.drug_spec_unit_options[index].name;
380
+    },
378 381
     selectPrescribingNumUnitAction: function() {
379 382
       this.sub_dialog_key = 2;
380 383
     },

+ 4 - 4
src/pages/main/dialog/new_order/select_advice_template_dialog.vue View File

@@ -25,14 +25,14 @@
25 25
                         <div v-show="isFold(template.id)" class="advice" v-for="(advice, index) in template.DoctorAdviceTemplate" :key="index">
26 26
                             <span v-if="advice.parent_id > 0" class="subdrug_info">
27 27
                               <span> {{ advice.advice_name }}</span>
28
-                              <span> {{ advice.advice_desc }} </span>
28
+                              <span> {{ advice.advice_desc }}{{advice.drug_spec_unit}} </span>
29 29
                               <span v-if="advice.prescribing_number"> {{ advice.prescribing_number }} {{ advice.prescribing_number_unit }}</span>
30 30
                               <span v-if="advice.single_dose">  单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
31 31
 
32 32
                             </span>
33 33
                             <van-checkbox v-else class="advice_info" :value="isAdviceSelecting(advice.id)" @click="selectAdviceAction(template, advice)">
34 34
                               <span> {{ advice.advice_name }}</span>
35
-                              <span> {{ advice.advice_desc }} </span>
35
+                              <span> {{ advice.advice_desc }}{{advice.drug_spec_unit}}</span>
36 36
                               <span v-if="advice.prescribing_number"> {{ advice.prescribing_number }} {{ advice.prescribing_number_unit }}</span>
37 37
                               <span v-if="advice.single_dose">  单次用量{{ advice.single_dose }}{{ advice.single_dose_unit }}</span>
38 38
                               <span> {{ advice.delivery_way }} </span>
@@ -226,7 +226,7 @@ export default {
226 226
 
227 227
   .template {
228 228
       border-bottom: 1px #e5e5e5 solid;
229
-      
229
+
230 230
       .template_name {
231 231
         height: 1rem;
232 232
         line-height: 1rem;
@@ -248,7 +248,7 @@ export default {
248 248
             width: 80%;
249 249
         }
250 250
       }
251
-      
251
+
252 252
       .advice {
253 253
           border-top: 1px #e5e5e5 solid;
254 254
           margin-left: 0.38rem;

+ 71 - 69
src/pages/main/dialog/new_order/single_option_dialog.vue View File

@@ -17,7 +17,8 @@
17 17
             v-for="(option, index) in options"
18 18
             :key="option_key != null && option_key.length > 0 ? option[option_key] : index"
19 19
             :class="select_index == index ? 'tick' : ''"
20
-          >{{ option_label_key != null && option_label_key.length > 0 ? option[option_label_key] : option }}</li>
20
+          >{{ option_label_key != null && option_label_key.length > 0 ? option[option_label_key] : option }}
21
+          </li>
21 22
         </ul>
22 23
       </div>
23 24
     </div>
@@ -25,89 +26,90 @@
25 26
 </template>
26 27
 
27 28
 <script>
28
-export default {
29
-  name: "SingleOptionDialogContent",
30
-  data() {
31
-    return {
32
-      select_index: -1
33
-    };
34
-  },
35
-  props: {
36
-    visibility: {
37
-      type: Boolean,
38
-      default: false
39
-    },
40
-    title: {
41
-      type: String,
42
-      default: ""
43
-    },
44
-    options: {
45
-      type: Array,
46
-      required: true
47
-    },
48
-    option_key: {
49
-      // 如果 options 是Object数组,选项唯一标识的 key,可不传
50
-      type: String,
51
-      default: ""
29
+  export default {
30
+    name: 'SingleOptionDialogContent',
31
+    data () {
32
+      return {
33
+        select_index: -1
34
+      }
52 35
     },
53
-    option_label_key: {
54
-      // 如果 options 是Object数组,选项显示文本的object 的 key,否则不传则显示 options 元素
55
-      type: String,
56
-      default: ""
57
-    }
58
-  },
59
-  methods: {
60
-    backAction: function() {
61
-      this.$emit("back");
36
+    props: {
37
+      visibility: {
38
+        type: Boolean,
39
+        default: false
40
+      },
41
+      title: {
42
+        type: String,
43
+        default: ''
44
+      },
45
+      options: {
46
+        type: Array,
47
+        required: true
48
+      },
49
+      option_key: {
50
+        // 如果 options 是Object数组,选项唯一标识的 key,可不传
51
+        type: String,
52
+        default: ''
53
+      },
54
+      option_label_key: {
55
+        // 如果 options 是Object数组,选项显示文本的object 的 key,否则不传则显示 options 元素
56
+        type: String,
57
+        default: ''
58
+      }
62 59
     },
63
-    itemClick: function(index) {
64
-      this.select_index = index;
65
-      this.$emit("did-selected", this.select_index);
60
+    methods: {
61
+      backAction: function () {
62
+        this.$emit('back')
63
+      },
64
+      itemClick: function (index) {
65
+        this.select_index = index
66
+        this.$emit('did-selected', this.select_index)
67
+      }
66 68
     }
67 69
   }
68
-};
69 70
 </script>
70 71
 
71 72
 <style style="stylesheet/scss" lang="scss" scoped>
72
-.optionsBox {
73
+  .optionsBox {
73 74
   background: #fff;
74
-  max-height: 10.6rem;
75 75
   min-height: 5rem;
76
-  overflow-y: scroll;
76
+  max-height: 10.0rem;
77 77
   ul {
78
-    li {
79
-      height: 1rem;
80
-      line-height: 1rem;
81
-      border-bottom: 1px #e5e5e5 solid;
82
-      padding: 0 0.38rem;
83
-    }
84
-    .tick {
85
-      position: relative;
86
-      &::before {
87
-        content: "";
88
-        display: inline-block;
89
-        border: 2px solid $main-color;
90
-        border-top-width: 0;
91
-        border-right-width: 0;
92
-        width: 0.3rem;
93
-        height: 0.15rem;
94
-        -webkit-transform: rotate(-50deg);
95
-        position: absolute;
96
-        top: 0.38rem;
97
-        right: 0.44rem;
98
-      }
99
-    }
78
+  overflow-y: scroll;
79
+  max-height: 9.0rem;
80
+  li {
81
+  height: 1rem;
82
+  line-height: 1rem;
83
+  border-bottom: 1px #e5e5e5 solid;
84
+  padding: 0 0.38rem;
85
+  }
86
+  .tick {
87
+  position: relative;
88
+  &::before {
89
+  content: "";
90
+  display: inline-block;
91
+  border: 2px solid $main-color;
92
+  border-top-width: 0;
93
+  border-right-width: 0;
94
+  width: 0.3rem;
95
+  height: 0.15rem;
96
+  -webkit-transform: rotate(-50deg);
97
+  position: absolute;
98
+  top: 0.38rem;
99
+  right: 0.44rem;
100
+  }
101
+  }
100 102
   }
101
-}
102
-.CheckBox {
103
+  }
104
+  .CheckBox {
103 105
   background: #fff;
104 106
   max-height: 6.8rem;
105 107
   min-height: 5rem;
106 108
   overflow-y: scroll;
107 109
   ul {
108
-    li {
109
-      line-height: 1rem;
110
-    }
110
+  li {
111
+  line-height: 1rem;
112
+  }
113
+  }
111 114
   }
112
-}
113 115
 </style>

+ 3 - 2
src/pages/main/dialog/subMenu/checkBoxSubMenu.vue View File

@@ -97,10 +97,11 @@ export default {
97 97
 <style style="stylesheet/scss" lang="scss" scoped>
98 98
 .optionsBox {
99 99
   background: #fff;
100
-  max-height: 10.6rem;
100
+  max-height: 10.0rem;
101 101
   min-height: 5rem;
102
-  overflow-y: scroll;
103 102
   ul {
103
+  overflow-y: scroll;
104
+  max-height: 9.0rem;
104 105
     li {
105 106
       height: 1.1rem;
106 107
       line-height: 1.1rem;

+ 295 - 44
src/pages/main/dialog/subMenu/multipleSubMenu.vue View File

@@ -1,44 +1,295 @@
1
-<!--<template>-->
2
-  <!--<div class="Dialog">-->
3
-    <!--<div class="DialogTit">-->
4
-      <!--<span class="iconfont" @click="closeDialog()">&#xe720; 返回</span>-->
5
-      <!--<h1 class="name">透析耗材</h1>-->
6
-      <!--<span class="success">完成</span>-->
7
-    <!--</div>-->
8
-
9
-    <!--<div class="item"  v-for="item in goodTypes" :key="item.id" value="item" @click="itemClick(item.id)">-->
10
-      <!--<label class="name" for="knj">{{item.type_name}}</label>-->
11
-      <!--<div class="content">-->
12
-        <!--<span class="text" id="knjaa"></span>-->
13
-        <!--<span class="iconfont">&#xe6f9;</span>-->
14
-      <!--</div>-->
15
-    <!--</div>-->
16
-  <!--</div>-->
17
-
18
-  <!--<check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"  v-on:menu-empty="menuEmpty"-->
19
-                      <!--:propsForm="propForm"></check-box-sub-menu>-->
20
-
21
-<!--</template>-->
22
-
23
-<!--<script>-->
24
-  <!--export default {-->
25
-    <!--name: 'multipleSubMenu',-->
26
-    <!--props: {-->
27
-      <!--goodTypes: {-->
28
-        <!--type: Array,-->
29
-        <!--default: function () {-->
30
-          <!--return new Array();-->
31
-        <!--}-->
32
-      <!--}-->
33
-    <!--},methods:{-->
34
-      <!--itemClick(type_id){-->
35
-
36
-      <!--}-->
37
-
38
-    <!--}-->
39
-  <!--}-->
40
-<!--</script>-->
41
-
42
-<!--<style scoped>-->
43
-
44
-<!--</style>-->
1
+<template>
2
+  <div>
3
+    <div v-if="visibility" class="Dialog">
4
+      <div class="DialogTit">
5
+        <span class="iconfont" @click="closeDialog()">&#xe720; 返回</span>
6
+        <h1 class="name">透析耗材</h1>
7
+        <span class="success">完成</span>
8
+      </div>
9
+      <div class="DialogContent" id="dialogTop">
10
+        <div class="item" value="item" @click="itemClick(83,'niprocart')" ref="niprocart">
11
+          <label class="name">血液透析干粉</label>
12
+          <div class="content">
13
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.niprocart)}}</span>
14
+            <span class="iconfont">&#xe6f9;</span>
15
+          </div>
16
+        </div>
17
+        <div class="item" value="item" @click="itemClick(80,'jms')" ref="jms">
18
+          <label class="name">一次性使用动静脉穿刺针</label>
19
+          <div class="content">
20
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.jms)}}</span>
21
+            <span class="iconfont">&#xe6f9;</span>
22
+          </div>
23
+        </div>
24
+        <div class="item" value="item" @click="itemClick(81,'fistula_needle_set')" ref="fistula_needle_set">
25
+          <label class="name">内瘘管翼状针</label>
26
+          <div class="content">
27
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.fistula_needle_set)}}</span>
28
+            <span class="iconfont">&#xe6f9;</span>
29
+          </div>
30
+        </div>
31
+        <div class="item" value="item" @click="itemClick(82,'fistula_needle_set_16')" ref="fistula_needle_set_16">
32
+          <label class="name">内瘘管翼状针16G</label>
33
+          <div class="content">
34
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.fistula_needle_set_16)}}</span>
35
+            <span class="iconfont">&#xe6f9;</span>
36
+          </div>
37
+        </div>
38
+        <div class="item" value="item" @click="itemClick(85,'hemoperfusion')" ref="hemoperfusion">
39
+          <label class="name">一次性使用血液灌流器</label>
40
+          <div class="content">
41
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.hemoperfusion)}}</span>
42
+            <span class="iconfont">&#xe6f9;</span>
43
+          </div>
44
+        </div>
45
+        <div class="item" value="item" @click="itemClick(84,'dialyser_sterilised')" ref="dialyser_sterilised">
46
+          <label class="name">空心纤维血液透析器</label>
47
+          <div class="content">
48
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.dialyser_sterilised)}}</span>
49
+            <span class="iconfont">&#xe6f9;</span>
50
+          </div>
51
+        </div>
52
+        <div class="item" value="item" @click="itemClick(79,'filtryzer')" ref="filtryzer">
53
+          <label class="name">中空纤维透析器</label>
54
+          <div class="content">
55
+            <span class="text" id="knjaa">{{getValue(this.dialysisPrescription.filtryzer)}}</span>
56
+            <span class="iconfont">&#xe6f9;</span>
57
+          </div>
58
+        </div>
59
+      </div>
60
+    </div>
61
+    <new-check-box-sub-menu :show="is_show" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"
62
+                            v-on:menu-empty="menuEmpty"
63
+                            :propsForm="propForm"></new-check-box-sub-menu>
64
+  </div>
65
+</template>
66
+
67
+<script>
68
+  import {getWarehouseGoodInfo} from '@/api/stock'
69
+
70
+  import NewCheckBoxSubMenu from './newCheckBoxSubMenu'
71
+
72
+  export default {
73
+    name: 'multipleSubMenu',
74
+    components: {NewCheckBoxSubMenu},
75
+    data () {
76
+      return {
77
+        is_show: false,
78
+        propForm: {
79
+          title: '',
80
+          list: [],
81
+          optionList: [],
82
+          isMultiple: 2,
83
+          result: [], //选中的值
84
+          type: 1, //用来区分不同子菜单,方便对返回值进行赋值
85
+          selectId: 0
86
+        }
87
+      }
88
+    },
89
+
90
+    props: {
91
+      dialysisPrescription: {
92
+        type: Object,
93
+      },
94
+      info: {
95
+        type: Array,
96
+        default: function () {
97
+          return new Array()
98
+        }
99
+      },
100
+      visibility: {
101
+        type: Boolean,
102
+        default: false
103
+      }
104
+    }, methods: {
105
+      success: function () {
106
+        this.$emit('menu-comfirm-two', this.dialysisPrescription)
107
+      }, closeDialog () {
108
+        this.$emit('menu-cancel-two')
109
+      },
110
+      itemClick (type_id, name) {
111
+        getWarehouseGoodInfo(type_id).then(response => {
112
+          if (response.data.state == 0) {
113
+            Toast.fail(response.data.msg)
114
+            return false
115
+          } else {
116
+            switch (name) {
117
+              case 'niprocart':
118
+                this.propForm.type = 1
119
+                this.propForm.title = '血液透析干粉'
120
+                this.propForm.list = []
121
+                this.propForm.optionList = []
122
+                this.propForm.optionList = response.data.data.list
123
+                this.propForm.isMultiple = 1
124
+                this.propForm.selectId = this.dialysisPrescription.niprocart
125
+                this.propForm.click_ref = 'niprocart'
126
+                this.is_show = true
127
+                this.visibility = false
128
+
129
+                break
130
+              case 'jms':
131
+                this.propForm.type = 2
132
+                this.propForm.title = '一次性使用动静脉穿刺针'
133
+                this.propForm.list = []
134
+                this.propForm.optionList = []
135
+                this.propForm.optionList = response.data.data.list
136
+                this.propForm.isMultiple = 1
137
+                this.propForm.selectId = this.dialysisPrescription.jms
138
+                this.propForm.click_ref = 'jms'
139
+                this.is_show = true
140
+                this.visibility = false
141
+
142
+                break
143
+
144
+              case 'fistula_needle_set':
145
+                this.propForm.type = 3
146
+                this.is_show = true
147
+                this.visibility = false
148
+                this.propForm.title = '内瘘管翼状针'
149
+
150
+                this.propForm.list = []
151
+                this.propForm.optionList = []
152
+                this.propForm.optionList = response.data.data.list
153
+                this.propForm.isMultiple = 1
154
+                this.propForm.selectId = this.dialysisPrescription.fistula_needle_set
155
+                this.propForm.click_ref = 'perfusion_apparatus'
156
+
157
+                break
158
+              case 'fistula_needle_set_16':
159
+                this.propForm.type = 4
160
+                this.is_show = true
161
+                this.visibility = false
162
+                this.propForm.title = '内瘘管翼状针16G'
163
+
164
+                this.propForm.list = []
165
+                this.propForm.optionList = []
166
+                this.propForm.optionList = response.data.data.list
167
+                this.propForm.isMultiple = 1
168
+                this.propForm.selectId = this.dialysisPrescription.fistula_needle_set_16
169
+                this.propForm.click_ref = 'fistula_needle_set_16'
170
+
171
+                break
172
+
173
+              case 'hemoperfusion':
174
+                this.propForm.type = 5
175
+
176
+                this.propForm.title = '一次性使用血液灌流器'
177
+                this.is_show = true
178
+                this.visibility = false
179
+                this.propForm.list = []
180
+                this.propForm.optionList = []
181
+                this.propForm.optionList = response.data.data.list
182
+                this.propForm.isMultiple = 1
183
+                this.propForm.selectId = this.dialysisPrescription.hemoperfusion
184
+                this.propForm.click_ref = 'hemoperfusion'
185
+                break
186
+              case 'dialyser_sterilised':
187
+                this.propForm.type = 6
188
+
189
+                this.propForm.title = '空心纤维血液透析器'
190
+                this.is_show = true
191
+                this.visibility = false
192
+                this.propForm.list = []
193
+                this.propForm.optionList = []
194
+                this.propForm.optionList = response.data.data.list
195
+                this.propForm.isMultiple = 1
196
+                this.propForm.selectId = this.dialysisPrescription.dialyser_sterilised
197
+                this.propForm.click_ref = 'dialyser_sterilised'
198
+                break
199
+              case 'filtryzer':
200
+                this.propForm.type = 7
201
+                this.is_show = true
202
+                this.visibility = false
203
+                this.propForm.title = '中空纤维透析器'
204
+                this.propForm.list = []
205
+                this.propForm.optionList = []
206
+                this.propForm.optionList = response.data.data.list
207
+                this.propForm.isMultiple = 1
208
+                this.propForm.selectId = this.dialysisPrescription.filtryzer
209
+                this.propForm.click_ref = 'filtryzer'
210
+                break
211
+
212
+            }
213
+          }
214
+        })
215
+      }, getValue (id) {
216
+        if (id == 0 || id == '') {
217
+          return ''
218
+        }
219
+        for (let i = 0; i < this.info.length; i++) {
220
+          if (this.info[i].id == id) {
221
+            return this.info[i].specification_name
222
+          }
223
+        }
224
+      }, menuCancle: function () {
225
+        this.is_show = false
226
+        this.visibility = true
227
+      }, menuComfirm: function (val) {
228
+        this.is_show = false
229
+        this.visibility = true
230
+        this.$nextTick(() => {
231
+          if (this.$refs[this.propForm.click_ref] != undefined && this.$refs[this.propForm.click_ref] != null) {
232
+            this.$refs[this.propForm.click_ref].scrollIntoView()
233
+          }
234
+        })
235
+        switch (val.type) {
236
+          case 1:
237
+            if (val.selectId != -2) {
238
+              this.dialysisPrescription.niprocart = val.selectId
239
+            }
240
+            break
241
+          case 2:
242
+            if (val.selectId != -2) {
243
+              this.dialysisPrescription.jms = val.selectId
244
+            }
245
+            break
246
+          case 3:
247
+            if (val.selectId != -2) {
248
+              this.dialysisPrescription.fistula_needle_set = val.selectId
249
+            }
250
+            break
251
+          case 4:
252
+            if (val.selectId != -2) {
253
+
254
+              this.dialysisPrescription.fistula_needle_set_16 = val.selectId
255
+            }
256
+            break
257
+          case 5:
258
+            if (val.selectId != -2) {
259
+
260
+              this.dialysisPrescription.hemoperfusion = val.selectId
261
+            }
262
+            break
263
+          case 6:
264
+            if (val.selectId != -2) {
265
+              this.dialysisPrescription.dialyser_sterilised = val.selectId
266
+            }
267
+            break
268
+          case 7:
269
+            if (val.selectId != -2) {
270
+              this.dialysisPrescription.filtryzer = val.selectId
271
+            }
272
+            break
273
+        }
274
+      },
275
+
276
+    }
277
+  }
278
+</script>
279
+
280
+<style style="stylesheet/scss" scoped>
281
+  .DialogContent {
282
+  // padding-bottom:2rem !important;
283
+
284
+  .textarea {
285
+  width: 100%;
286
+  height: 2.4rem;
287
+  line-height: 0.6rem;
288
+  color: $pgh-color;
289
+  font-size: 0.28rem;
290
+  padding-left: 0.36rem;
291
+  border: none;
292
+  border-bottom: 1px #e5e5e5 solid;
293
+  }
294
+  }
295
+</style>

+ 123 - 0
src/pages/main/dialog/subMenu/newCheckBoxSubMenu.vue View File

@@ -0,0 +1,123 @@
1
+<template>
2
+  <div v-if="show" class="Dialog">
3
+    <div class="DialogTit">
4
+      <div class="back" @click="cancle()"><span class="iconfont" >&#xe720; </span>返回</div>
5
+      <h1 class="name">{{propsForm.title}}</h1>
6
+      <span  @click="comfirm" class="success">  </span>
7
+    </div>
8
+    <div  class="optionsBox">
9
+      <div class="list">
10
+        <ul>
11
+          <li  @click="itemClick(-2)"  :key="-2" value="-2" >请选择</li>
12
+          <li  @click="itemClick(item.id)"  v-for="item in propsForm.optionList" :key="item.id" value="item" :class="propsForm.selectId == item.id? 'tick':'' ">{{item.name}}</li>
13
+        </ul>
14
+      </div>
15
+    </div>
16
+  </div>
17
+</template>
18
+
19
+
20
+<script>
21
+
22
+  export default {
23
+    name: "newCheckBoxSubMenu",
24
+    created() {},
25
+    data() {
26
+      return {
27
+        result: [],
28
+        id: 0,
29
+        selectName: ""
30
+      };
31
+    },
32
+    props: {
33
+      propsForm: {
34
+        type: Object
35
+      },
36
+      show: {
37
+        type: Boolean,
38
+        default: false
39
+      }
40
+    },
41
+    methods: {
42
+      cancle: function() {
43
+        this.$emit("menu-cancle");
44
+      },
45
+      comfirm: function() {
46
+        this.$emit("menu-comfirm", this.getValue());
47
+      },
48
+      getValue: function() {
49
+        let form = {};
50
+        if (this.propsForm.isMultiple == 2) {
51
+          form["type"] = this.propsForm.type;
52
+          form["result"] = this.propsForm.result;
53
+          // form["click_ref"] = this.propsForm.click_ref
54
+        } else {
55
+          form["type"] = this.propsForm.type;
56
+          form["selectId"] = this.propsForm.selectId;
57
+          // form["click_ref"] = this.propsForm.click_ref
58
+        }
59
+        return form;
60
+      },
61
+      itemClick: function(id) {
62
+        if(id == -2){
63
+          this.$emit("menu-empty", this.getValue());
64
+        }
65
+        this.propsForm.selectId = id;
66
+        this.$emit("menu-comfirm", this.getValue());
67
+      }
68
+    },
69
+    watch: {
70
+      visibility(val) {
71
+        //初始化数据操作
72
+      }
73
+    }
74
+  };
75
+
76
+</script>
77
+
78
+<style style="stylesheet/scss" lang="scss" scoped>
79
+  .optionsBox {
80
+  background: #fff;
81
+  max-height: 10.6rem;
82
+  min-height: 5rem;
83
+  overflow-y: scroll;
84
+  ul {
85
+  li {
86
+  height: 1.1rem;
87
+  line-height: 1.1rem;
88
+  border-bottom: 1px #e5e5e5 solid;
89
+  padding: 0 0.38rem;
90
+  font-size: 0.36rem;
91
+  color:$title-color;
92
+  }
93
+  .tick {
94
+  position: relative;
95
+  &::before {
96
+  content: "";
97
+  display: inline-block;
98
+  border: 2px solid $main-color;
99
+  border-top-width: 0;
100
+  border-right-width: 0;
101
+  width: 0.3rem;
102
+  height: 0.15rem;
103
+  -webkit-transform: rotate(-50deg);
104
+  position: absolute;
105
+  top: 0.38rem;
106
+  right: 0.44rem;
107
+  }
108
+  }
109
+  }
110
+  }
111
+  .CheckBox {
112
+  background: #fff;
113
+  max-height: 6.8rem;
114
+  min-height: 5rem;
115
+  overflow-y: scroll;
116
+
117
+  ul {
118
+  li {
119
+  line-height: 1rem;
120
+  }
121
+  }
122
+  }
123
+</style>

+ 12 - 11
src/pages/main/dialysis/AdviceTable.vue View File

@@ -108,7 +108,7 @@
108 108
 
109 109
             <td v-if="advice_index == 0" :rowspan="group.advices.length">{{ parseTime(advice.start_time, "{m}-{d} {h}:{i}") }}</td>
110 110
             <td :class="{ 'advice_name': advice.parent_id == 0, 'subdrug_name': advice.parent_id > 0 }">{{ advice.advice_name }}</td>
111
-            <td>{{ advice.advice_desc }}</td>
111
+            <td>{{ advice.advice_desc }}{{advice.drug_spec_unit}}</td>
112 112
             <td ><span v-if="advice.prescribing_number">{{ advice.prescribing_number }}{{ advice.prescribing_number_unit }}</span></td>
113 113
             <td ><span v-if="advice.single_dose">{{ advice.single_dose }} {{ advice.single_dose_unit }}</span></td>
114 114
             <td>{{ advice.parent_id == 0 ? advice.delivery_way : "" }}</td>
@@ -221,7 +221,7 @@
221 221
         :single_dose_unit_options="unitsOption"
222 222
         :prescribing_number_unit_options="unitsOption"
223 223
       ></advice-form>
224
-      
224
+
225 225
       <modify-advice-form
226 226
         ref="modify_advice_form"
227 227
         @back="showPopup = false"
@@ -731,8 +731,9 @@ export default {
731 731
           parent_id: advice.parent_id,
732 732
           title: advice.advice_name,
733 733
           advice_desc: advice.advice_desc,
734
+
734 735
           // drug_spec: advice.drug_spec,
735
-          // drug_spec_unit: advice.drug_spec_unit,
736
+          drug_spec_unit: advice.drug_spec_unit,
736 737
           delivery_way: advice.delivery_way,
737 738
           execution_frequency: advice.execution_frequency,
738 739
           single_dose: advice.single_dose,
@@ -748,7 +749,7 @@ export default {
748 749
         advice_name: advice.title,
749 750
         advice_desc: advice.advice_desc,
750 751
         // drug_spec: String(advice.drug_spec),
751
-        // drug_spec_unit: advice.drug_spec_unit,
752
+        drug_spec_unit: advice.drug_spec_unit,
752 753
         delivery_way: advice.delivery_way,
753 754
         execution_frequency: advice.execution_frequency,
754 755
         single_dose: String(advice.single_dose),
@@ -771,7 +772,7 @@ export default {
771 772
           advice.advice_name = resp_advice.advice_name
772 773
           advice.advice_desc = resp_advice.advice_desc
773 774
           // advice.drug_spec = resp_advice.drug_spec
774
-          // advice.drug_spec_unit = resp_advice.drug_spec_unit,
775
+          advice.drug_spec_unit = resp_advice.drug_spec_unit,
775 776
           advice.delivery_way = resp_advice.delivery_way,
776 777
           advice.execution_frequency = resp_advice.execution_frequency,
777 778
           advice.single_dose = resp_advice.single_dose,
@@ -867,7 +868,7 @@ export default {
867 868
         advice_name: subdrug.title,
868 869
         advice_desc: subdrug.advice_desc,
869 870
         // drug_spec: String(subdrug.drug_spec),
870
-        // drug_spec_unit: subdrug.drug_spec_unit,
871
+        drug_spec_unit: subdrug.drug_spec_unit,
871 872
         single_dose: String(subdrug.single_dose),
872 873
         single_dose_unit: subdrug.single_dose_unit,
873 874
         prescribing_number: String(subdrug.prescribing_number),
@@ -1282,7 +1283,7 @@ export default {
1282 1283
                     advice_groups.push(group)
1283 1284
                     group = newGroupObject()
1284 1285
                   }
1285
-                    
1286
+
1286 1287
                   initGroupBlock(group, advice)
1287 1288
                   group.advices.push(advice)
1288 1289
                   advice_groups.push(group)
@@ -1386,12 +1387,12 @@ export default {
1386 1387
 
1387 1388
 <style style="stylesheet/scss" lang="scss"  scoped>
1388 1389
 .fixedTop{
1389
-  padding-top:52px; 
1390
+  padding-top:52px;
1390 1391
   background: #fff;
1391 1392
   min-height: calc(100vh - 200px);
1392 1393
 .choice {
1393 1394
   border-bottom: 1px #e5e5e5 solid;
1394
-  
1395
+
1395 1396
   ul {
1396 1397
     @include display-flex;
1397 1398
     @include align-items-center;
@@ -1407,7 +1408,7 @@ export default {
1407 1408
       @include text-align;
1408 1409
       @include justify-content-between;
1409 1410
       padding: 0.3rem 0;
1410
-    
1411
+
1411 1412
       .iconfont {
1412 1413
         margin: 0 0.1rem;
1413 1414
       }
@@ -1531,7 +1532,7 @@ export default {
1531 1532
   }
1532 1533
 }
1533 1534
 .AdviceTable{
1534
-  padding-top:0; 
1535
+  padding-top:0;
1535 1536
   background: #fff;
1536 1537
   min-height: calc(100vh - 230px);
1537 1538
 }

+ 2 - 3
src/pages/main/template/DialysisPrintOrderOne.vue View File

@@ -898,7 +898,7 @@
898 898
               </td>
899 899
               <td class="advice-name" v-if="advice[1] != undefined">
900 900
                 <span>{{advice[1].advice_name }}</span>
901
-                <span>{{advice[1].advice_desc}}</span>
901
+                <span>{{advice[1].advice_desc}}{{advice[1].drug_spec_unit}}</span>
902 902
                 <!-- <span v-if="advice[1].drug_spec">{{advice[1].drug_spec}}{{advice[1].drug_spec_unit}}</span> -->
903 903
                 <span v-if="advice[1].prescribing_number">* {{advice[1].prescribing_number}}{{advice[1].prescribing_number_unit}}</span>
904 904
                 <span
@@ -910,8 +910,7 @@
910 910
                   <div>▲</div>
911 911
                   <div>
912 912
                     <span>{{child.advice_name }}</span>
913
-                    <span>{{child.advice_desc}}</span>
914
-                    <span v-if="child.drug_spec">{{child.drug_spec}}{{child.drug_spec_unit}}</span>
913
+                    <span>{{child.advice_desc}}{{child.drug_spec_unit}}</span>
915 914
                     <span
916 915
                       v-if="child.prescribing_number">* {{child.prescribing_number}}{{child.prescribing_number_unit}}</span>
917 916
                     <span v-if="child.single_dose != 0">单次用量 {{child.single_dose}}{{child.single_dose_unit}}</span>

+ 3 - 3
src/pages/main/template/DialysisPrintOrderTwo.vue View File

@@ -77,7 +77,7 @@
77 77
                   <check-box text="昏迷" :checked="receiverTreatmentAccess.consciousness==3?true:false"></check-box>
78 78
                 </div>
79 79
                 <div class="inline_block"  style="margin-left: 20px;">
80
-                  出血:
80
+                  活动性出血:
81 81
                   <check-box text="无" :checked="predialysis.is_hemorrhage==2?true:false"></check-box>
82 82
                   <check-box text="异常" :checked="predialysis.is_hemorrhage==1?true:false"></check-box>
83 83
                   (&nbsp;
@@ -870,7 +870,7 @@
870 870
               </td>
871 871
               <td height="60px" class="advice-name" style="padding-left:7px;" :colspan="advice.children && advice.children.length > 0 || advice.parent_id > 0 ? 1 :2" v-if="advice.isShow == 2">
872 872
                 <span >{{advice.advice_name }}</span>
873
-                <span>{{advice.advice_desc}}</span>
873
+                <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
874 874
                 <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
875 875
                 <span  v-if="advice.single_dose != 0">单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
876 876
                 <span v-if="advice.parent_id == 0  && advice.children.length == 0">{{advice.delivery_way}}</span>
@@ -971,7 +971,7 @@
971 971
                 </td>
972 972
                 <td height="60px" class="advice-name" style="padding-left:7px;" :colspan="advice.children && advice.children.length > 0 || advice.parent_id > 0 ? 1 :2" v-if="advice.isShow == 2">
973 973
                   <span >{{advice.advice_name }}</span>
974
-                  <span>{{advice.advice_desc}}</span>
974
+                  <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
975 975
                   <span v-if="advice.prescribing_number">* {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
976 976
                   <span  v-if="advice.single_dose != 0">单次用量 {{advice.single_dose}}{{advice.single_dose_unit}}</span>
977 977
                   <span v-if="advice.parent_id == 0  && advice.children.length == 0">{{advice.delivery_way}}</span>

+ 2 - 1
src/pages/main/today/TodayTab.vue View File

@@ -107,7 +107,7 @@
107 107
 
108 108
     <van-popup title="透析处方" v-model="menuList[1].showPopup" :overlay="true" :close-on-click-overlay="false">
109 109
       <prescription-dialog :patient_prop="patient" :solution_prop="solution" :machines_prop="devices" :config="config"
110
-                           :prescription_prop="prescription" @finish="closePrescriptionDialog" :operators="operators" :types="goodTypes"
110
+                           :prescription_prop="prescription" @finish="closePrescriptionDialog" :operators="operators" :types="goodTypes" :info="goodInfos"
111 111
                            @close="closePrescriptionDialog" @prescription="prescriptionFunc" @longSolution="longSolutionFunc" ref="prescription_dialog"></prescription-dialog>
112 112
     </van-popup>
113 113
 
@@ -289,6 +289,7 @@ export default {
289 289
       scrollTop: "",
290 290
       goTopShow: false,
291 291
       goodTypes:[],
292
+      goodInfos:[],
292 293
     };
293 294
   },
294 295
   computed: {

+ 1 - 1
src/pages/main/today/statOrder.vue View File

@@ -23,7 +23,7 @@
23 23
             <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
24 24
               <span>{{advice.advice_name }}</span>
25 25
               <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
26
-              <span>{{advice.advice_desc}}</span>
26
+              <span>{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
27 27
               <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
28 28
               <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
29 29
               <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>

+ 1 - 1
src/pages/waitingRoom/components/dialog/medicalOrder.vue View File

@@ -32,7 +32,7 @@
32 32
                     </td>
33 33
                     <td>
34 34
                       <span >{{advice.advice_name }}</span>
35
-                      <span >{{advice.advice_desc}}</span>
35
+                      <span >{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
36 36
                       <span v-if="advice.single_dose">{{advice.single_dose}}{{advice.single_dose_unit}}</span>
37 37
                       <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
38 38
                       <span >{{advice.delivery_way}}</span>

+ 3 - 2
src/pages/waitingRoom/components/dialysisContent.vue View File

@@ -68,7 +68,7 @@ export default {
68 68
           { value: 0, text: "全部分区" }
69 69
         ]
70 70
       },
71
-      
71
+
72 72
       selected_date: new Date(),
73 73
 
74 74
       dialysis_scheduals: [],
@@ -81,7 +81,7 @@ export default {
81 81
     filtedScheduals: function() {
82 82
       if (this.selected_zone[0].value == 0) {
83 83
         return this.dialysis_scheduals
84
-        
84
+
85 85
       } else {
86 86
         var zone_name = this.selected_zone[0].text
87 87
         for (let index = 0; index < this.dialysis_scheduals.length; index++) {
@@ -193,6 +193,7 @@ export default {
193 193
     @include display-flex;
194 194
     @include justify-content-center;
195 195
     @include text-align;
196
+    /*overflow-y:scroll;*/
196 197
     width: 60%;
197 198
     margin: 0 auto;
198 199
     .list {

+ 2 - 1
src/utils/request.js View File

@@ -35,8 +35,9 @@ service.interceptors.response.use(
35 35
   },
36 36
   error => {
37 37
     console.log('err' + error) // for debug
38
+
38 39
     Toast({
39
-      message: error.message,
40
+      message: "网络错误",
40 41
       duration: 2 * 1000
41 42
     })
42 43
     return Promise.reject(error)