fix: 修复原始单据

dev_ksck_z
chenhc 7 months ago
parent 634db17e69
commit 6dc00efe2a

@ -130,6 +130,7 @@
<el-form-item label="医保编码:" prop="ybbm"> <el-form-item label="医保编码:" prop="ybbm">
<el-input style="width: 90%" size="small" placeholder="请输入医保编码" <el-input style="width: 90%" size="small" placeholder="请输入医保编码"
v-model.trim="newProductData.ybbm" v-model.trim="newProductData.ybbm"
v-debounce-input:500ms="getYbHcData"
></el-input> ></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>

@ -329,7 +329,7 @@
:total="errTotal" :total="errTotal"
:limit.sync="errQuery.limit" :limit.sync="errQuery.limit"
:page.sync="errQuery.page" :page.sync="errQuery.page"
@pagination="handleCurrentChange" @pagination="handleCurrentChangeError"
></pagination> ></pagination>
@ -679,6 +679,10 @@ export default {
handleCurrentChange(val) { handleCurrentChange(val) {
this.filterQuery.page = val.page; this.filterQuery.page = val.page;
this.getList(); this.getList();
},
handleCurrentChangeError(val) {
this.errQuery.page = val.page;
this.getErrorList(this);
} }
, ,

@ -160,7 +160,7 @@
ref="inputRef" ref="inputRef"
style="ime-mode: disabled" style="ime-mode: disabled"
type="tel" type="tel"
placeholder="请点击输入框进行扫码设置或者扫码录入" :placeholder="this.placeholder"
v-model="scanCode" v-model="scanCode"
></el-input> ></el-input>
</el-form-item> </el-form-item>
@ -385,6 +385,7 @@ export default {
// //
// //
loading: false, loading: false,
placeholder: '请点击输入框进行选择单据',
tableHeader: [], tableHeader: [],
queryList: [], queryList: [],
tableObj: [], tableObj: [],
@ -685,6 +686,7 @@ export default {
this.originCode = this.filterQuery.code; this.originCode = this.filterQuery.code;
} else if (response.code == 601) { } else if (response.code == 601) {
this.formData.billNo = response.data.billNo this.formData.billNo = response.data.billNo
this.placeholder = "已选入单据请扫UDI码进行作业"
this.getBillNo(this.formData.billNo) this.getBillNo(this.formData.billNo)
this.startDeal(); this.startDeal();
@ -759,6 +761,7 @@ export default {
this.filterQuery.code = "01" + response.data.nameCode; this.filterQuery.code = "01" + response.data.nameCode;
this.originCode = this.filterQuery.code; this.originCode = this.filterQuery.code;
} else if (response.code == 601) { } else if (response.code == 601) {
this.placeholder = "已选入单据请扫UDI码进行作业"
this.formData.billNo = response.data.billNo this.formData.billNo = response.data.billNo
this.getBillNo(this.formData.billNo) this.getBillNo(this.formData.billNo)
this.startDeal(); this.startDeal();

Loading…
Cancel
Save