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,125 +52,127 @@
</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: {
type: Object, type: Object,
required: true, required: true,
},
}, },
data() { },
return { data() {
query: { return {
productIdFk:null, query: {
customerId:null, productIdFk: null,
page: 1, customerId: null,
limit: 20, batchNo: null,
}, page: 1,
codeArry: [], limit: 20,
total: 0, },
loading: true, codeArry: [],
index: null, total: 0,
formLoading: false, loading: true,
formVisible: false, index: null,
deleteLoading: false, formLoading: false,
orderNo: null, formVisible: false,
busTypes: [], deleteLoading: false,
orderNo: null,
busTypes: [],
};
},
components: {
draggable,
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
}; };
this.getCodeList();
}, },
components: { onSubmit() {
draggable, this.$router.push({
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
}, },
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
productIdFk:null,
customerId:null,
page: 1,
limit: 20,
};
this.getCodeList();
},
onSubmit() {
this.$router.push({
path: "",
query: this.query,
});
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
},
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;
filterDetailProducts(this.query) // this.query.batchNo = this.idQuery.batchNo;
.then((response) => { filterDetailProducts(this.query) //
this.loading = false; .then((response) => {
this.codeArry = response.data.list || []; this.loading = false;
this.total = response.data.total || 0; this.codeArry = response.data.list || [];
}) this.total = response.data.total || 0;
.catch(() => { })
this.loading = false; .catch(() => {
this.list = []; this.loading = false;
this.total = 0; this.list = [];
}); this.total = 0;
}, });
intentBack() { },
// this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}}); intentBack() {
this.$router.go(-1); // this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}});
}, this.$router.go(-1);
getActionName(action) { },
for (let i = 0; i < this.busTypes.length; i++) { getActionName(action) {
if (this.busTypes[i].action === action) { for (let i = 0; i < this.busTypes.length; i++) {
return this.busTypes[i].name; if (this.busTypes[i].action === action) {
} return this.busTypes[i].name;
} }
}, }
getBusType() {
let query = {
enabled: true,
};
getBusType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
},
}, },
filters: {}, getBusType() {
mounted() { let query = {
document.body.ondrop = function (event) { enabled: true,
event.preventDefault();
event.stopPropagation();
}; };
getBusType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
// this.getList();
})
.catch(() => {
});
}, },
created() { },
this.getBusType(); filters: {},
this.getCodeList(); mounted() {
}, document.body.ondrop = function (event) {
}; event.preventDefault();
event.stopPropagation();
};
},
created() {
this.getBusType();
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