|
@@ -404,7 +404,7 @@ export default {
|
|
|
refTradeCategory: "",
|
|
|
startAcceptTime: "",
|
|
|
endAcceptTime: "",
|
|
|
- geLiInerNote:'',
|
|
|
+ geLiInerNote: "",
|
|
|
}, // 搜索表单
|
|
|
refundDepositArr: [
|
|
|
{
|
|
@@ -598,18 +598,12 @@ export default {
|
|
|
},
|
|
|
//导出
|
|
|
exportFn() {
|
|
|
- if (this.selectData.length) {
|
|
|
- const arr = [];
|
|
|
- for (let i = 0; i < this.selectData.length; i++) {
|
|
|
- arr.push(this.selectData[i].depositManageId);
|
|
|
- }
|
|
|
- downloadFiles("/deposit-manage/export", {
|
|
|
- id: arr,
|
|
|
- orderType: "TRADE",
|
|
|
- });
|
|
|
- } else {
|
|
|
- this.$errorMsg("请选择押金项");
|
|
|
- }
|
|
|
+ let params = {
|
|
|
+ ...this.screenForm,
|
|
|
+ orderType: "HOME",
|
|
|
+ examine: this.examine,
|
|
|
+ };
|
|
|
+ downloadFiles("/deposit-manage/export", params);
|
|
|
},
|
|
|
//多选列表数据
|
|
|
handleSelectionChange(selectData) {
|