|
|
|
@ -82,7 +82,7 @@ export default class productCheckReceipt extends BasePage {
|
|
|
|
|
@Ref('form') readonly $form!: VForm;
|
|
|
|
|
model = model;
|
|
|
|
|
form = {
|
|
|
|
|
aimWl: {} as OptionType,
|
|
|
|
|
aimWl:{} as OptionType,
|
|
|
|
|
productCode: '',
|
|
|
|
|
};
|
|
|
|
|
userDefined4: any = '';
|
|
|
|
@ -114,11 +114,11 @@ export default class productCheckReceipt extends BasePage {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//页面初始化
|
|
|
|
|
onReady() {
|
|
|
|
|
async onReady() {
|
|
|
|
|
this.$form.setRules(this.rules);
|
|
|
|
|
this.model.queryLocation();
|
|
|
|
|
this.form.aimWl.value = this.model.WlList[0].value;
|
|
|
|
|
this.model.empty();
|
|
|
|
|
await this.model.queryLocation();
|
|
|
|
|
this.form.aimWl = this.model.WlList[0];
|
|
|
|
|
this.userDefined4 = JSON.parse(sessionStorage.getItem('userDefined4'));
|
|
|
|
|
sessionStorage.removeItem('userDefined4');
|
|
|
|
|
}
|
|
|
|
|