代码备份

master
anthonywj 3 years ago
parent cc467fc536
commit 4fd82282ea

@ -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"
}

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

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

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

Loading…
Cancel
Save