|
@@ -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){
|