|
@@ -426,7 +426,7 @@ export default {
|
|
|
pageNum: 1,
|
|
|
pageSize: 50,
|
|
|
fOriginalbillno: null,
|
|
|
- isCntrno: null,
|
|
|
+ isCntrno: 0,
|
|
|
fPreqty: null,
|
|
|
fLocalcntrno: null,
|
|
|
fPregrossweight: null,
|
|
@@ -834,7 +834,6 @@ export default {
|
|
|
this.$message.error("请输入仓库!");
|
|
|
return false;
|
|
|
}
|
|
|
-
|
|
|
let queryParams = {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
@@ -870,7 +869,9 @@ export default {
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
mapListWhgenleg(this.queryParams).then((response) => {
|
|
|
- console.log(response);
|
|
|
+ response.rows.map((e) => {
|
|
|
+ e.fCntrno=this.queryParams.isCntrno == 1 ? null:e.fCntrno
|
|
|
+ })
|
|
|
this.whgenlegList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|