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>

@ -52,14 +52,14 @@
</template> </template>
<script> <script>
import { import {
filterDetailProducts, filterDetailProducts,
} from "../../api/warehouse/InvProducts"; } from "../../api/warehouse/InvProducts";
import store from "../../store"; import store from "../../store";
import draggable from "vuedraggable"; import draggable from "vuedraggable";
import {getBusType} from "../../api/warehouse/BusRole"; import {getBusType} from "../../api/warehouse/BusRole";
export default { export default {
name: "idQuery", name: "idQuery",
props: { props: {
idQuery: { idQuery: {
@ -70,8 +70,9 @@
data() { data() {
return { return {
query: { query: {
productIdFk:null, productIdFk: null,
customerId:null, customerId: null,
batchNo: null,
page: 1, page: 1,
limit: 20, limit: 20,
}, },
@ -95,8 +96,8 @@
path: "", path: "",
}); });
this.query = { this.query = {
productIdFk:null, productIdFk: null,
customerId:null, customerId: 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;
@ -170,7 +172,7 @@
this.getBusType(); this.getBusType();
this.getCodeList(); this.getCodeList();
}, },
}; };
</script> </script>

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