Browse Source

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

陈少旭 6 months ago
parent
commit
5d05a2bff2

+ 3 - 0
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/anticoagulant.vue View File

322
           page:this.currentPage,
322
           page:this.currentPage,
323
           limit:this.limit,
323
           limit:this.limit,
324
         }
324
         }
325
+        console.log('抗凝剂params',params);
325
         Getdetail(params).then(response =>{
326
         Getdetail(params).then(response =>{
326
           if(response.data.state ==1){
327
           if(response.data.state ==1){
327
             const list = response.data.data.prescriptions
328
             const list = response.data.data.prescriptions
352
       },
353
       },
353
       // 详情查询
354
       // 详情查询
354
       deil_click(){
355
       deil_click(){
356
+        this.currentPage =1
355
         this.getGetdetail(this.dialyze_value)
357
         this.getGetdetail(this.dialyze_value)
358
+       
356
       },
359
       },
357
       //导出excel
360
       //导出excel
358
       exportExcel(){
361
       exportExcel(){

+ 14 - 12
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/complete.vue View File

223
         limit:50,
223
         limit:50,
224
         total:0,
224
         total:0,
225
         tableData:[],
225
         tableData:[],
226
-        // status_options:[],
226
+        status_options:[],
227
         nurseList:[],
227
         nurseList:[],
228
         operators:[],
228
         operators:[],
229
         docList:[],
229
         docList:[],
230
-        status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'超出处方时间'},{value:3,label:'未到达处方时间'}],
230
+        // status_options:[{value:1,label:'达到透析处方时间'},{value:2,label:'超出处方时间'},{value:3,label:'未到达处方时间'}],
231
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
231
         date_options:[{value:1,label:'最近七天'},{value:2,label:'本周'},{value:3,label:'上周'},{value:4,label:'本月'},
232
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
232
                       {value:5,label:'上月'},{value:6,label:'本年'},{value:7,label:'上一年'}
233
         ],
233
         ],
272
               yAxis.push(key)
272
               yAxis.push(key)
273
             }
273
             }
274
             const status = []
274
             const status = []
275
-            // for(let i in yAxis){
276
-            //   const obj ={
277
-            //     value:(i*1)+1,
278
-            //     label:yAxis[i]
279
-            //   }
280
-            //   status.push(obj)
281
-            // }
282
-            // this.status_options = status
275
+            for(let i in yAxis){
276
+              const obj ={
277
+                value:(i*1)+1,
278
+                label:yAxis[i]
279
+              }
280
+              status.push(obj)
281
+            }
282
+            this.status_options = status
283
             console.log('this.status_options',this.status_options);
283
             console.log('this.status_options',this.status_options);
284
             const option = {
284
             const option = {
285
                 title:{
285
                 title:{
340
             myChart.setOption(option);
340
             myChart.setOption(option);
341
             myChart.on('click',params =>{
341
             myChart.on('click',params =>{
342
               this.complete_dialog = true
342
               this.complete_dialog = true
343
-              console.log('bbbb',params);
343
+              console.log('bbbb完成率',params);
344
               var status_id =''
344
               var status_id =''
345
               for(let i in this.status_options){
345
               for(let i in this.status_options){
346
                 if(params.data.name == this.status_options[i].label){
346
                 if(params.data.name == this.status_options[i].label){
347
                   status_id = this.status_options[i].value
347
                   status_id = this.status_options[i].value
348
                 }
348
                 }
349
               }
349
               }
350
+              this.status_value = status_id
350
               this.getdetail(status_id)
351
               this.getdetail(status_id)
351
             })
352
             })
352
           }
353
           }
359
       },
360
       },
360
       // 详情查询
361
       // 详情查询
361
       detil_click(){
362
       detil_click(){
363
+        this.currentPage = 1
362
         this.getdetail(this.status_value)
364
         this.getdetail(this.status_value)
363
       },
365
       },
364
        // 下载
366
        // 下载
446
             this.tableData = table
448
             this.tableData = table
447
             this.total = response.data.data.total
449
             this.total = response.data.data.total
448
           }
450
           }
449
-          console.log('55555',response);
451
+          console.log('55555',params);
450
         })
452
         })
451
       },
453
       },
452
       // 选择日期
454
       // 选择日期

+ 3 - 1
src/xt_pages/Dialysisanalysis/new_otherIndicators/components/dialyzer.vue View File

282
             const options = []
282
             const options = []
283
             for(let i in xAxis){
283
             for(let i in xAxis){
284
               const arr ={
284
               const arr ={
285
-                id:i+1,
285
+                id:(i*1)+1,
286
                 name:xAxis[i]
286
                 name:xAxis[i]
287
               }
287
               }
288
               options.push(arr)
288
               options.push(arr)
375
       },
375
       },
376
       // 详情查询
376
       // 详情查询
377
       deil_click(){
377
       deil_click(){
378
+        this.currentPage =1
378
         this.Getdialyzerdetail(this.getdialyze(this.dialyze_value))
379
         this.Getdialyzerdetail(this.getdialyze(this.dialyze_value))
379
       },
380
       },
380
        // 下载 
381
        // 下载 
646
       },
647
       },
647
       getdialyze(val){
648
       getdialyze(val){
648
         const option = this.dialyze_options
649
         const option = this.dialyze_options
650
+        console.log('透析器option',option);    
649
         for(let i in option){
651
         for(let i in option){
650
           if(val == option[i].id){
652
           if(val == option[i].id){
651
             return option[i].name
653
             return option[i].name

+ 19 - 1
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

1783
                           >
1783
                           >
1784
                           碳酸氢钠<br />(ml)
1784
                           碳酸氢钠<br />(ml)
1785
                           </td>
1785
                           </td>
1786
-
1786
+                          <td
1787
+                            width="50"
1788
+                            v-if="
1789
+                              org_id == 0 || org_id == 9829
1790
+                            "
1791
+                          >
1792
+                            SpO₂<br />(%)
1793
+                          </td>
1787
                           <td width="200">病情变化及处理</td>
1794
                           <td width="200">病情变化及处理</td>
1788
                         </tr>
1795
                         </tr>
1789
 
1796
 
2041
                           >
2048
                           >
2042
                            {{ monitor_record.dicarbonate  }}<br />
2049
                            {{ monitor_record.dicarbonate  }}<br />
2043
                           </td>
2050
                           </td>
2051
+                          <td
2052
+                            v-if="
2053
+                              org_id == 0 || org_id == 9829
2054
+                            "
2055
+                          >
2056
+                            {{
2057
+                              monitor_record.blood_oxygen_saturation
2058
+                                ? monitor_record.blood_oxygen_saturation
2059
+                                : ""
2060
+                            }}
2061
+                          </td>
2044
 
2062
 
2045
                           <td style="line-height: 16px; padding: 0px">
2063
                           <td style="line-height: 16px; padding: 0px">
2046
                             <div
2064
                             <div

+ 6 - 0
src/xt_pages/dialysis/details/index.vue View File

568
                   </div>
568
                   </div>
569
                   <div></div>
569
                   <div></div>
570
                 </div>
570
                 </div>
571
+                <div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
572
+                  <div style="">透析器:
573
+                   <span>{{main_collection.prescription.dialysis_dialyszers }}&nbsp;&nbsp; {{main_collection.prescription.dialysis_irrigation}}&nbsp;&nbsp; {{main_collection.prescription.dialysis_strainer}}</span>
574
+                  </div>
575
+                 
576
+                </div>
571
               </div>
577
               </div>
572
             </div>
578
             </div>
573
 
579
 

+ 5 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

1836
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id== 9671">血容量<br />(L)</td>
1836
                         <td width="50" v-if="org_id == 9538 || org_id == 9919 || org_id== 9671">血容量<br />(L)</td>
1837
                         <td width="50" v-if="org_id == 10490 ">碳酸氢钠<br />(ml)</td>
1837
                         <td width="50" v-if="org_id == 10490 ">碳酸氢钠<br />(ml)</td>
1838
                         <td width="50" v-if="org_id == 10598">护士签名</td>
1838
                         <td width="50" v-if="org_id == 10598">护士签名</td>
1839
+                        <td width="50" v-if="org_id == 9829 || org_id == 0">SpO₂<br />(%)</td>
1839
                         <td width="200">病情变化及处理</td>
1840
                         <td width="200">病情变化及处理</td>
1840
                       </tr>
1841
                       </tr>
1841
 
1842
 
2021
                           />
2022
                           />
2022
                           </span>
2023
                           </span>
2023
                         </td>
2024
                         </td>
2025
+                        <td v-if="org_id == 0||org_id == 9829">
2026
+                          {{monitor.blood_oxygen_saturation? monitor.blood_oxygen_saturation: ""}}
2027
+                        </td>
2028
+                       
2024
                         <td style="line-height: 16px; padding: 0px">
2029
                         <td style="line-height: 16px; padding: 0px">
2025
                           <div
2030
                           <div
2026
                             style="
2031
                             style="

+ 8 - 7
src/xt_pages/outpatientCharges/statementPrint.vue View File

22
           org_id == 10028 ||
22
           org_id == 10028 ||
23
           org_id == 10278 ||
23
           org_id == 10278 ||
24
           org_id == 10610 ||
24
           org_id == 10610 ||
25
-          org_id==10537 
25
+          org_id==10537 || org_id == 0
26
         "
26
         "
27
       >
27
       >
28
         <printTwo :info="info" v-if="org_id == 9990"></printTwo>
28
         <printTwo :info="info" v-if="org_id == 9990"></printTwo>
72
       <printOne :info="info" v-if=" org_id != 9990 &&
72
       <printOne :info="info" v-if=" org_id != 9990 &&
73
             org_id != 10138 && org_id != 9504 && org_id != 10028 &&
73
             org_id != 10138 && org_id != 9504 && org_id != 10028 &&
74
             org_id != 10610 && org_id !=10537 && org_id !=10697 &&
74
             org_id != 10610 && org_id !=10537 && org_id !=10697 &&
75
-            org_id != 10278 && org_id != 10387 && org_id != 10191 && 
76
-            org_id != 10210 &&org_id != 10485 &&org_id != 10480 && 
75
+            org_id != 10278 && org_id != 10387 && org_id != 10191 &&
76
+            org_id != 10210 &&org_id != 10485 &&org_id != 10480 &&
77
             org_id != 10510 &&org_id != 10088 &&org_id != 10633 && this.paramsObj.balance_accounts_type == 1">
77
             org_id != 10510 &&org_id != 10088 &&org_id != 10633 && this.paramsObj.balance_accounts_type == 1">
78
       </printOne>
78
       </printOne>
79
       <privateChargePrint :info="info" v-if="org_id != 9990 &&
79
       <privateChargePrint :info="info" v-if="org_id != 9990 &&
80
             org_id != 10138 && org_id != 9504 &&  org_id != 10028 && org_id !=10697 &&
80
             org_id != 10138 && org_id != 9504 &&  org_id != 10028 && org_id !=10697 &&
81
-            org_id != 10278 && org_id != 10610 && org_id !=10537 && org_id != 10387 && 
82
-            org_id != 10191 &&org_id != 10210 &&org_id != 10485  &&org_id != 10480 && 
81
+            org_id != 10278 && org_id != 10610 && org_id !=10537 && org_id != 10387 &&
82
+            org_id != 10191 &&org_id != 10210 &&org_id != 10485  &&org_id != 10480 &&
83
             org_id != 10510 &&org_id != 10633 && this.paramsObj.balance_accounts_type == 2">
83
             org_id != 10510 &&org_id != 10633 && this.paramsObj.balance_accounts_type == 2">
84
       </privateChargePrint>
84
       </privateChargePrint>
85
 
85
 
512
             scanStyles: false
512
             scanStyles: false
513
           })
513
           })
514
         }else if (
514
         }else if (
515
-          this.$store.getters.xt_user.org_id == 10633 || this.$store.getters.xt_user.org_id == 0
515
+          this.$store.getters.xt_user.org_id == 10633
516
         ) {
516
         ) {
517
           const style =
517
           const style =
518
             '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;} .statementTable {border-collapse: collapse;} table tr td {padding: 2px;line-height: 30px;border: 1px solid black;}'
518
             '@media print {#statement-print{font-size:14px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;} .statementTable {border-collapse: collapse;} table tr td {padding: 2px;line-height: 30px;border: 1px solid black;}'
525
 
525
 
526
         } else {
526
         } else {
527
           const style =
527
           const style =
528
-            '@media print {#statement-print{font-size:16px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;} .statementTable{border-collapse: collapse;} table{border-collapse: collapse;text-align: center;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 57%;}}}'
528
+            // '@media print {#statement-print{font-size:16px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;} .statementTable{border-collapse: collapse;} table{border-collapse: collapse;text-align: center;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 57%;}}}'
529
+            '@media print {#statement-print{font-size:16px;border:1px solid white}.statementTitle{font-size: 22px;text-align: center;font-weight: bold;} .statementTable{border-collapse: collapse;} table{border-collapse: collapse;text-align: center;}table td {padding: 10px 5px;font-size:16px;}@media print {html {zoom: 69%;}}}'
529
           printJS({
530
           printJS({
530
             printable: 'statement-print',
531
             printable: 'statement-print',
531
             type: 'html',
532
             type: 'html',

+ 7 - 0
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

653
                   </div>
653
                   </div>
654
                 </div>
654
                 </div>
655
 
655
 
656
+                <div class="printCell" style="display:flex;" v-if="org_id ==10598 || org_id == 0">
657
+                  <div style="">透析器:
658
+                   <span>{{main_collection.prescription.dialysis_dialyszers }}&nbsp;&nbsp; {{main_collection.prescription.dialysis_irrigation}}&nbsp;&nbsp; {{main_collection.prescription.dialysis_strainer}}</span>
659
+                  </div>
660
+                 
661
+                </div>
662
+
656
 
663
 
657
               </div>
664
               </div>
658
             </div>
665
             </div>

+ 7 - 3
src/xt_pages/stock/drugs/drugInventoryModePrint.vue View File

256
             start_time:this.$route.query.start_time,
256
             start_time:this.$route.query.start_time,
257
             end_time:this.$route.query.end_time,
257
             end_time:this.$route.query.end_time,
258
           }
258
           }
259
+          const loading = this.$loading({
260
+            lock: true,
261
+            text: 'Loading',
262
+            spinner: 'el-icon-loading',
263
+            background: 'rgba(0, 0, 0, 0.7)'
264
+          })
259
           console.log("params-------",params)
265
           console.log("params-------",params)
260
           getDrugInventroyModePrintList(params).then(response=>{
266
           getDrugInventroyModePrintList(params).then(response=>{
261
               if(response.data.state == 1){
267
               if(response.data.state == 1){
268
+                 loading.close()
262
                  var list  =  response.data.data.list
269
                  var list  =  response.data.data.list
263
-
264
-                 console.log("list===============998",list)
265
-
266
                 if(list!=null && list.length > 0){
270
                 if(list!=null && list.length > 0){
267
                   let dataInfo = {}
271
                   let dataInfo = {}
268
                   list.forEach((item, index) => {
272
                   list.forEach((item, index) => {

+ 7 - 0
src/xt_pages/stock/drugs/inventoryRecordPrint.vue View File

130
               start_time:this.$route.query.start_time,
130
               start_time:this.$route.query.start_time,
131
               end_time:this.$route.query.end_time,
131
               end_time:this.$route.query.end_time,
132
             }
132
             }
133
+            const loading = this.$loading({
134
+              lock: true,
135
+              text: 'Loading',
136
+              spinner: 'el-icon-loading',
137
+              background: 'rgba(0, 0, 0, 0.7)'
138
+           })
133
           getInventoryRecordPrintList(params).then(response=>{
139
           getInventoryRecordPrintList(params).then(response=>{
134
              if(response.data.state == 1){
140
              if(response.data.state == 1){
141
+              loading.close()
135
               this.total =  response.data.data.total
142
               this.total =  response.data.data.total
136
               this.tableData = response.data.data.list
143
               this.tableData = response.data.data.list
137
               this.houseList = response.data.data.houseList
144
               this.houseList = response.data.data.houseList

+ 8 - 4
src/xt_pages/stock/drugs/newDrugInventory.vue View File

770
             arr.push(this.tableData[i])
770
             arr.push(this.tableData[i])
771
          }
771
          }
772
        }
772
        }
773
-     if(arr.length == 0){
774
-       this.$message.error("请修改数据后保存!")
775
-       loading.close()
776
-       return false
773
+
774
+      if(this.$store.getters.xt_user.template_info.org_id!=0 && this.$store.getters.xt_user.template_info.org_id!=10697){
775
+        if(arr.length == 0){
776
+          this.$message.error("请修改数据后保存!")
777
+          loading.close()
778
+          return false
779
+        }
777
       }
780
       }
781
+   
778
        var params = {
782
        var params = {
779
          tableData:arr,
783
          tableData:arr,
780
          newTableData:this.tableData
784
          newTableData:this.tableData

+ 8 - 4
src/xt_pages/stock/newInventory.vue View File

406
           arr.push(this.tableData[i])
406
           arr.push(this.tableData[i])
407
         }
407
         }
408
       }
408
       }
409
-      if(arr.length == 0){
410
-       this.$message.error("请修改数据后保存!")
411
-       loading.close()
412
-       return false
409
+
410
+      if(this.$store.getters.xt_user.template_info.org_id!=0 && this.$store.getters.xt_user.template_info.org_id!=10697){
411
+        if(arr.length == 0){
412
+        this.$message.error("请修改数据后保存!")
413
+        loading.close()
414
+        return false
415
+       }
413
       }
416
       }
417
+     
414
       var params = {
418
       var params = {
415
          tableData:arr,
419
          tableData:arr,
416
          storehouse_id:this.storehouse_id,
420
          storehouse_id:this.storehouse_id,

+ 7 - 1
src/xt_pages/stock/stockInventoryModePrint.vue View File

260
             end_time:this.$route.query.end_time,
260
             end_time:this.$route.query.end_time,
261
           }
261
           }
262
           console.log("params-------",params)
262
           console.log("params-------",params)
263
+          const loading = this.$loading({
264
+            lock: true,
265
+            text: 'Loading',
266
+            spinner: 'el-icon-loading',
267
+            background: 'rgba(0, 0, 0, 0.7)'
268
+          })
263
           getStockInventroyModePrintList(params).then(response=>{
269
           getStockInventroyModePrintList(params).then(response=>{
264
               if(response.data.state == 1){
270
               if(response.data.state == 1){
265
                  var list  =  response.data.data.list
271
                  var list  =  response.data.data.list
266
-
272
+                  loading.close()
267
                  console.log("list===============",list)
273
                  console.log("list===============",list)
268
 
274
 
269
                 if(list!=null && list.length > 0){
275
                 if(list!=null && list.length > 0){

+ 8 - 0
src/xt_pages/stock/stockInventoryPrint.vue View File

113
             page:this.$route.query.page,
113
             page:this.$route.query.page,
114
             ids:this.$route.query.ids,
114
             ids:this.$route.query.ids,
115
           }
115
           }
116
+          const loading = this.$loading({
117
+            lock: true,
118
+            text: 'Loading',
119
+            spinner: 'el-icon-loading',
120
+            background: 'rgba(0, 0, 0, 0.7)'
121
+          })
116
          getStockInventoryPrintList(params).then(response=>{
122
          getStockInventoryPrintList(params).then(response=>{
117
            if(response.data.state == 1){
123
            if(response.data.state == 1){
124
+             loading.close()
118
              var list = response.data.data.list
125
              var list = response.data.data.list
119
              console.log("list232332232323",response.data.data.list)
126
              console.log("list232332232323",response.data.data.list)
120
              this.tableList = list
127
              this.tableList = list
122
              this.houseList = response.data.data.storeHouseList
129
              this.houseList = response.data.data.storeHouseList
123
 
130
 
124
              this.docList = response.data.data.doclist
131
              this.docList = response.data.data.doclist
132
+            
125
            }
133
            }
126
          })
134
          })
127
         },
135
         },

+ 2 - 2
src/xt_pages/user/components/PatientDetail.vue View File

121
                 label="身份证号 : "
121
                 label="身份证号 : "
122
                 class="is-required"
122
                 class="is-required"
123
               >
123
               >
124
-                <el-input v-model="form.idCardNo" disabled></el-input>
124
+                <el-input v-model="form.idCardNo" disabled   @blur="checkIdCardNo"></el-input>
125
               </el-form-item>
125
               </el-form-item>
126
             </el-col>
126
             </el-col>
127
             <el-col :span="8" style="height: 59px">
127
             <el-col :span="8" style="height: 59px">
2098
             } else {
2098
             } else {
2099
               this.patientPrint.hospital_first_dialysis_date = "";
2099
               this.patientPrint.hospital_first_dialysis_date = "";
2100
             }
2100
             }
2101
-            this.checkIdCardNo();
2101
+            // this.checkIdCardNo();
2102
           } else {
2102
           } else {
2103
             console.log("patient get err state");
2103
             console.log("patient get err state");
2104
             this.$notify.error({
2104
             this.$notify.error({

+ 2 - 1
src/xt_pages/user/components/PatientForm.vue View File

131
                   label="身份证号 : "
131
                   label="身份证号 : "
132
                 >
132
                 >
133
                   <el-input
133
                   <el-input
134
+                    @blur="checkIdCardNo"
134
                     v-model="form.idCardNo"
135
                     v-model="form.idCardNo"
135
                   ></el-input><!---->
136
                   ></el-input><!---->
136
                 </el-form-item>
137
                 </el-form-item>
2122
             this.form.infectious_remark = patietInfo.infectious_remark
2123
             this.form.infectious_remark = patietInfo.infectious_remark
2123
 
2124
 
2124
 
2125
 
2125
-            this.checkIdCardNo();
2126
+            // this.checkIdCardNo();
2126
           } else {
2127
           } else {
2127
             this.$notify.error({
2128
             this.$notify.error({
2128
               title: "错误",
2129
               title: "错误",

+ 1 - 1
src/xt_pages/user/inspection.vue View File

1330
               
1330
               
1331
               if (item.item_id > 0) {
1331
               if (item.item_id > 0) {
1332
                 if (typeof(inspectionsMap[parseInt(items[index].item_id)])  == "undefined") {
1332
                 if (typeof(inspectionsMap[parseInt(items[index].item_id)])  == "undefined") {
1333
-                  if(this.org_id == 10121 || this.org_id ==10138 || this.org_id == 0 || this.org_id ==10278 || this.org_id == 10702){
1333
+                  if(this.org_id == 10121 || this.org_id ==10138 || this.org_id == 0 || this.org_id ==10278 || this.org_id == 10702 || this.org_id == 10191){
1334
                     item.value = inspectionsMap[items[index].id].inspect_value
1334
                     item.value = inspectionsMap[items[index].id].inspect_value
1335
                     item.item_name = inspectionsMap[items[index].id].item_name
1335
                     item.item_name = inspectionsMap[items[index].id].item_name
1336
                   }else{
1336
                   }else{

+ 1 - 1
src/xt_pages/user/lapsoSummary.vue View File

124
                       </el-radio-group>
124
                       </el-radio-group>
125
                     </el-form-item>
125
                     </el-form-item>
126
                 </el-col>
126
                 </el-col>
127
-                <el-col :span="24" v-if="lapseto == 2">
127
+                <el-col :span="24" v-if="lapseto == 2 || lapseto == 3 || lapseto == 4">
128
                     <el-form-item label="转归类型:"> 
128
                     <el-form-item label="转归类型:"> 
129
                         <el-radio-group style="padding: 10px;" v-model="lapse_type">
129
                         <el-radio-group style="padding: 10px;" v-model="lapse_type">
130
                             <el-radio  label="1">转入</el-radio>
130
                             <el-radio  label="1">转入</el-radio>