Commit aa6157d3 by 李少勇

修改qrtmgs交易

parent e11ab582
......@@ -73,6 +73,50 @@ export default {
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
dbClick() {
this.activeTab = 'fc'
this.handleSearch1()
},
async handleSearch1() {
this.load1 = true;
let rtnmsg = await Api.post("/frontend/qrtsel/query", {
...this.model,
pageNumber: this.pagination1.pageNum,
pageSize: this.pagination1.pageSize,
dts: moment(dts).format("YYYY-MM-DD"),
dte: moment(dte).format("YYYY-MM-DD"),
});
if (rtnmsg.respCode == SUCCESS) {
this.load1 = false;
this.stmData1.data = [];
this.stmData1.data=rtnmsg.data.list;
this.pagination1 = {
pageNum: rtnmsg.data.pageNum || 1,
pageSize: rtnmsg.data.pageSize || 10,
total: parseInt(rtnmsg.data.total),
};
} else {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.服务请求失败!"),
});
}
this.load1 = false;
},
// pageSize改变
handleSizeChange1(val) {
this.pagination1.pageNum = 1;
this.pagination1.pageSize = val;
this.handleSearch1();
},
// 页码改变
handleCurrentChange1(val) {
this.pagination1.pageNum = val;
this.handleSearch1();
},
handleSelectionChange1(val) {
this.multipleSelection1 = val;
}
},
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment