|
@@ -449,9 +449,9 @@ export default {
|
|
|
console.log( this.parmValue);
|
|
|
const { page, size } = this.parmValue;
|
|
|
|
|
|
- if (this.parmValue.customerCode.length > 0) {
|
|
|
- this.customerCode = [this.parmValue.customerCode];
|
|
|
- }
|
|
|
+ // if (this.parmValue.customerCode.length > 0) {
|
|
|
+ // this.customerCode = [this.parmValue.customerCode];
|
|
|
+ // }
|
|
|
|
|
|
this.pageInfo = {
|
|
|
size: size,
|
|
@@ -749,12 +749,13 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async customerChange(e) {
|
|
|
+ console.log(e)
|
|
|
+
|
|
|
if (e && e.id) {
|
|
|
- this.customerCode = [e.code];
|
|
|
this.parmValue.customerName = e.label;
|
|
|
this.parmValue.customerCode = e.code ? [e.code] : ""
|
|
|
} else {
|
|
|
- this.customerCode = [];
|
|
|
+ this.parmValue.customerCode = [];
|
|
|
this.parmValue.customerName = "";
|
|
|
}
|
|
|
this.pageInfo.curr = 1;
|