Browse Source

加上了排序

branch_ccpg_220107
44673626 3 years ago
parent
commit
6e9574d565
  1. 30
      vue/src/views/ux/vw/dataInput/hq_h_report/index.vue

30
vue/src/views/ux/vw/dataInput/hq_h_report/index.vue

@ -1038,8 +1038,9 @@ export default {
this.$axios
.posts("/api/settleaccount/Job/versionlist", this.listQuery)
.then((response) => {
let res = response.reverse(); //
this.JobVersionList = [];
response.forEach((element) => {
res.forEach((element, index) => {
let options = {};
options.value = element;
options.label = element;
@ -1056,6 +1057,31 @@ export default {
//this.listLoading = false;
});
},
// getJobVersionInfo() {
// //
// //this.listLoading = true;
// this.listQuery.SkipCount = (this.page - 1) * 1000;
// this.$axios
// .posts("/api/settleaccount/Job/versionlist", this.listQuery)
// .then((response) => {
// this.JobVersionList = [];
// response.forEach((element) => {
// let options = {};
// options.value = element;
// options.label = element;
// this.JobVersionList.push(options);
// });
// if (JSON.stringify(this.JobVersionList) != "[]") {
// //
// this.JobversionValue = this.JobVersionList[0].value;
// this.JobversionValueVerson = this.JobVersionList[0].label;
// this.getList();
// }
// })
// .catch(() => {
// //this.listLoading = false;
// });
// },
submiteBillNo() {
var getkeenCodeNo = this.pasterValue.substring(
0,
@ -1377,7 +1403,7 @@ export default {
getList() {
this.listLoading = true;
//
this.listQuery.name = "H平台核对明细";
this.listQuery.name = "红旗工厂核对明细";
this.listQuery.type = this.JobversionValue;
this.$axios
.posts("/api/settleaccount/Job/list", this.listQuery)

Loading…
Cancel
Save