diff --git a/src/components/doctorCheck/RegisterCheckList.vue b/src/components/doctorCheck/RegisterCheckList.vue
index 555d174..754b4e4 100644
--- a/src/components/doctorCheck/RegisterCheckList.vue
+++ b/src/components/doctorCheck/RegisterCheckList.vue
@@ -3,7 +3,7 @@
-
@@ -15,7 +15,7 @@
-
@@ -27,7 +27,7 @@
-
@@ -48,7 +48,7 @@
-
@@ -75,7 +75,7 @@
diff --git a/src/store/index.js b/src/store/index.js
index 436d8d5..17ea07c 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -536,6 +536,7 @@ export default new Vuex.Store({
WebBookingMzak: 0, // 人寿预约
ImportOrgData: 0, // 导入企业(青藏公司)数据
queue: 0, // 排队信息
+ doctorAutoNext:0, //触发医生诊台保存结果后自动下一个功能
},
// 登记时复制分组与套餐用
diff --git a/src/views/charge/charge.vue b/src/views/charge/charge.vue
index 09bba5e..f89e5c4 100644
--- a/src/views/charge/charge.vue
+++ b/src/views/charge/charge.vue
@@ -533,12 +533,12 @@ export default {
break;
}
- const loading = this.$loading({
- lock: true,
- text: 'Loading',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- });
+ // const loading = this.$loading({
+ // lock: true,
+ // text: 'Loading',
+ // spinner: 'el-icon-loading',
+ // background: 'rgba(0, 0, 0, 0.7)'
+ // });
postapi(url, body).then(res => {
console.log(url, body, res)
if (res.code != - 1) {
@@ -559,10 +559,11 @@ export default {
this.form = Object.assign({}, this.formInit)
}
}
- loading.close();
+ // loading.close();
})
.catch((err) => {
- loading.close();
+ console.error(err)
+ // loading.close();
});
},
diff --git a/src/views/doctorCheck/doctorCheck.vue b/src/views/doctorCheck/doctorCheck.vue
index 20edb0b..662d42c 100644
--- a/src/views/doctorCheck/doctorCheck.vue
+++ b/src/views/doctorCheck/doctorCheck.vue
@@ -679,6 +679,8 @@ export default {
// 保存成功后,是否自动下一个项目
if (this.LocalConfig.doctorCheck.isAutoNext == 'Y') {
+
+ /* 检查类别分区后,自动下一个项目不起作用
// this.doctorCheck.RegisterCheckList registerCheckId
lfind = Number(lfind) + 1
if (this.doctorCheck.RegisterCheckList.length >= lfind) {
@@ -691,6 +693,8 @@ export default {
this.dataTransOpts.refresh.register_check.S++
this.dataTransOpts.refresh.register_check_item.M++
}
+ */
+ this.dataTransOpts.plus.doctorAutoNext++
}
}
//console.log('操作成功')