master
hongtianzai 3 years ago
commit 9e96515dac

@ -1,3 +1,4 @@
{ {
"BASE_URL":"http://localhost:9995" "BASE_URL":"http://127.0.0.1:9995",
"Download_URL": "https://www.udims.com/UDI_DL_Server_test"
} }

@ -262,7 +262,7 @@ export default {
}) })
} }
} },
} }
</script> </script>

@ -72,6 +72,7 @@
query: { query: {
productIdFk: null, productIdFk: null,
customerId: null, customerId: null,
batchNo: null,
page: 1, page: 1,
limit: 20, limit: 20,
}, },
@ -120,8 +121,9 @@
getCodeList() { getCodeList() {
this.loading = true; this.loading = true;
this.query.productIdFk = this.idQuery.id; this.query.productIdFk = this.idQuery.relIdFk;
this.query.customerId = store.getters.customerId; this.query.customerId = store.getters.customerId;
this.query.batchNo = this.idQuery.batchNo;
filterDetailProducts(this.query) // filterDetailProducts(this.query) //
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;

@ -180,7 +180,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination <el-pagination
:page-size="query.limit" :page-size="filterQuery.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
@ -580,6 +580,7 @@
this.list = response.data.list || []; this.list = response.data.list || [];
this.detailList = []; this.detailList = [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
console.log(this.total+"0000000000000000000");
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

Loading…
Cancel
Save