|
@@ -9524,23 +9524,27 @@ export default {
|
|
|
type: "warning"
|
|
|
}).then(async () => {
|
|
|
const data = await this.fMblnoSearch();
|
|
|
- if (!data) {
|
|
|
- return
|
|
|
- }
|
|
|
- this.form.fPlanqty = data.fPlanqty;
|
|
|
- this.form.fPlangrossweight = data.fPlangrossweight;
|
|
|
- this.form.fPlannetweight = data.fPlannetweight;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ if (!data) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.$set(this.form, 'fPlanqty', data.fPlanqty)
|
|
|
+ this.$set(this.form, 'fPlangrossweight', data.fPlangrossweight)
|
|
|
+ this.$set(this.form, 'fPlannetweight', data.fPlannetweight)
|
|
|
+ })//PASUQ046992263
|
|
|
}).catch(() => {
|
|
|
this.$message.info('已取消')
|
|
|
})
|
|
|
} else {
|
|
|
const data = await this.fMblnoSearch();
|
|
|
- if (!data) {
|
|
|
- return
|
|
|
- }
|
|
|
- this.form.fPlanqty = data.fPlanqty;
|
|
|
- this.form.fPlangrossweight = data.fPlangrossweight;
|
|
|
- this.form.fPlannetweight = data.fPlannetweight;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ if (!data) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.$set(this.form, 'fPlanqty', data.fPlanqty)
|
|
|
+ this.$set(this.form, 'fPlangrossweight', data.fPlangrossweight)
|
|
|
+ this.$set(this.form, 'fPlannetweight', data.fPlannetweight)
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
},
|