|
|
@ -108,8 +108,8 @@ |
|
|
<PatientRegisterForChoose :params="PatientRegisterList" @chooseBak="chooseBak" /> |
|
|
<PatientRegisterForChoose :params="PatientRegisterList" @chooseBak="chooseBak" /> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
|
|
|
|
|
|
<el-dialog title="调查问卷" :visible.sync="dialogWin.question" width="800px" |
|
|
|
|
|
:close-on-click-modal="false" :append-to-body="true"> |
|
|
|
|
|
|
|
|
<el-dialog title="调查问卷" :visible.sync="dialogWin.question" width="800px" :close-on-click-modal="false" |
|
|
|
|
|
:append-to-body="true"> |
|
|
<Question :refParams="questionParams" /> |
|
|
<Question :refParams="questionParams" /> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</div> |
|
|
</div> |
|
|
@ -519,6 +519,9 @@ export default { |
|
|
console.log(`watch.refParams.resetTimes newVal: ${newVal} oldVal: ${oldVal}`); |
|
|
console.log(`watch.refParams.resetTimes newVal: ${newVal} oldVal: ${oldVal}`); |
|
|
if (newVal && newVal != oldVal) { |
|
|
if (newVal && newVal != oldVal) { |
|
|
this.prBase = Object.assign({}, this.prBase, this.prBaseInit) |
|
|
this.prBase = Object.assign({}, this.prBase, this.prBaseInit) |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.$refs['tmh'].focus(); //打开光标定位到条码栏里 |
|
|
|
|
|
}); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|