Browse Source

提交代码

陈少旭 1 year ago
parent
commit
657cd3b3d7

+ 39 - 0
src/xt_pages/hospitalStation/index.vue View File

@@ -88,6 +88,8 @@
88 88
             <div style="display:flex;">
89 89
               <el-input v-model="form.medicalInsuranceCard"></el-input>
90 90
               <el-button style="margin-left:10px;" type="primary" @click="reading">读卡</el-button>
91
+              <el-button style="margin-left:10px;" type="primary" v-if="form.id_card_type == 4"  @click="device_init">设备初始化</el-button>
92
+
91 93
             </div>
92 94
           </el-form-item>
93 95
 
@@ -336,6 +338,43 @@ export default {
336 338
   },
337 339
 
338 340
   methods: {
341
+    device_init(){
342
+      var that = this
343
+      if (this.form.id_card_type.length == 0 || this.form.id_card_type == 0) {
344
+        this.$message.error('请先选择读卡类型')
345
+        return
346
+      }
347
+      let params = {
348
+        'admin_user_id': this.$store.getters.xt_user.user.id,
349
+
350
+      }
351
+      axios.get('http://127.0.0.1:9532/zh/api/deviceinit', {
352
+        params: params
353
+      })
354
+        .then(function(response) {
355
+          if (response.data.state == 0) {
356
+            that.$message.error(response.data.msg)
357
+            return false
358
+          } else {
359
+            if (response.data.data.failed_code == -10) {
360
+              // that.$message.error(response.data.data.msg)
361
+              that.$confirm(response.data.data.msg, '医保错误信息', {
362
+                confirmButtonText: '确 定',
363
+                type: 'warning'
364
+              }).then(() => {
365
+
366
+              }).catch(() => {
367
+              })
368
+            } else {
369
+              this.$message.success('初始化成功')
370
+            }
371
+          }
372
+        })
373
+        .catch(function(error) {
374
+
375
+        })
376
+
377
+    },
339 378
     reading() {
340 379
       var that = this
341 380
       if (this.form.id_card_type.length == 0 || this.form.id_card_type == 0) {

+ 83 - 0
src/xt_pages/hospitalStation/outpatientChargesManagement.vue View File

@@ -123,6 +123,19 @@
123 123
                 type="primary">预结算
124 124
             </el-button>
125 125
 
126
+
127
+            <el-button
128
+              size="small"
129
+              @click="opendz(1)"
130
+              type="primary">设备初始化
131
+            </el-button>
132
+            <el-button
133
+              size="small"
134
+              @click="opendz(2)"
135
+              type="primary">读电子凭证
136
+            </el-button>
137
+
138
+
126 139
             <el-button v-loading="loadingtwo"
127 140
                        v-if="(this.radio == 1 && this.activeName == 'third' &&this.hisPatientInfo.balance_accounts_type != 2 &&  this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 1) || (this.activeName != 'first' &&this.hisPatientInfo.balance_accounts_type != 2 &&  this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 1 && this.order.order_status == 1) ||   (this.hisPatientInfo.id > 0 && this.hisPatientInfo.in_hospital_status == 1 && this.hisPatientInfo.out_hospital_status == 1 && this.order.order_status == 3)"
128 141
                        size="small"
@@ -1393,6 +1406,76 @@ export default {
1393 1406
 
1394 1407
       this.dialogExportVisible = true
1395 1408
 
1409
+    },opendz(index){
1410
+      if(index == 1){
1411
+        var that = this
1412
+        if (this.form.id_card_type.length == 0 || this.form.id_card_type == 0) {
1413
+          this.$message.error('请先选择读卡类型')
1414
+          return
1415
+        }
1416
+        let params = {
1417
+          'admin_user_id': this.$store.getters.xt_user.user.id,
1418
+
1419
+        }
1420
+        axios.get('http://127.0.0.1:9532/zh/api/deviceinit', {
1421
+          params: params
1422
+        })
1423
+          .then(function(response) {
1424
+            if (response.data.state == 0) {
1425
+              that.$message.error(response.data.msg)
1426
+              return false
1427
+            } else {
1428
+              if (response.data.data.failed_code == -10) {
1429
+                // that.$message.error(response.data.data.msg)
1430
+                that.$confirm(response.data.data.msg, '医保错误信息', {
1431
+                  confirmButtonText: '确 定',
1432
+                  type: 'warning'
1433
+                }).then(() => {
1434
+
1435
+                }).catch(() => {
1436
+                })
1437
+              } else {
1438
+                this.$message.success('初始化成功')
1439
+              }
1440
+            }
1441
+          })
1442
+          .catch(function(error) {
1443
+
1444
+          })
1445
+
1446
+      }else if(index == 2){
1447
+        let params = {
1448
+          'admin_user_id': this.$store.getters.xt_user.user.id,
1449
+
1450
+        }
1451
+        axios.get('http://127.0.0.1:9532/api/readele', {
1452
+          params: params
1453
+        })
1454
+          .then(function(response) {
1455
+            if (response.data.state == 0) {
1456
+              that.$message.error(response.data.msg)
1457
+              return false
1458
+            } else {
1459
+              if (response.data.data.failed_code == -10) {
1460
+                // that.$message.error(response.data.data.msg)
1461
+                that.$confirm(response.data.data.msg, '医保错误信息', {
1462
+                  confirmButtonText: '确 定',
1463
+                  type: 'warning'
1464
+                }).then(() => {
1465
+
1466
+                }).catch(() => {
1467
+                })
1468
+              }else{
1469
+                that.$message({ message: response.data.data.msg, type: 'success', duration: 5000 })
1470
+              }
1471
+            }
1472
+          })
1473
+          .catch(function(error) {
1474
+          })
1475
+
1476
+      }
1477
+
1478
+
1396 1479
     },
1397 1480
     open(index) {
1398 1481
       if (index == 1){