|
|
@@ -1281,6 +1281,7 @@ export default {
|
|
|
suitDetailData: {},
|
|
|
suitDetailLoading: false,
|
|
|
suitDetailPid: "",
|
|
|
+ _prescribingInited: false,
|
|
|
|
|
|
isMyMade: true, // 是否是自拟处方
|
|
|
|
|
|
@@ -1460,7 +1461,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
- this._processRouteQuery();
|
|
|
+ this._processRouteQuery().finally(() => {
|
|
|
+ this._prescribingInited = true;
|
|
|
+ if (this.container_i === 0) this.openAddress();
|
|
|
+ });
|
|
|
},
|
|
|
beforeRouteLeave(to, from, next) {
|
|
|
// console.log('query===处方页面跳转', to.path);
|
|
|
@@ -2646,7 +2650,7 @@ export default {
|
|
|
},
|
|
|
// 获取数据 赋值给 适宜技术处方
|
|
|
assignRecipe3(data, loading, append = false) {
|
|
|
- console.log('适宜技术数据', data);
|
|
|
+ // console.log('适宜技术数据', data);
|
|
|
setTimeout(() => {
|
|
|
const acupointTable = this.$refs.suitScience;
|
|
|
if (!acupointTable) {
|
|
|
@@ -3532,7 +3536,7 @@ export default {
|
|
|
preId: id,
|
|
|
visitId: JSON.parse(sessionStorage.getItem("patiensInfo")).pid
|
|
|
});
|
|
|
- console.log(res, "支付状态");
|
|
|
+ // console.log(res, "支付状态");
|
|
|
if (res.ResultCode == 0) {
|
|
|
// 跟据id 回显
|
|
|
let children = this.$children.filter(item => {
|