代码备份

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>

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

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