|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
- <template-page ref="pageRef" :getList="getList" :columnParsing="columnParsing" :tableAttributes="tableAttributes"
|
|
|
- :tableEvents="tableEvents">
|
|
|
+ <template-page ref="pageRef" :getList="getList" :exportList="exportList" :columnParsing="columnParsing"
|
|
|
+ :tableAttributes="tableAttributes" :tableEvents="tableEvents">
|
|
|
</template-page>
|
|
|
</template>
|
|
|
|
|
@@ -8,7 +8,7 @@
|
|
|
import TemplatePage from '@/components/template/template-page-1.vue'
|
|
|
import import_mixin from '@/components/template/import_mixin.js'
|
|
|
import operation_mixin from '@/components/template/operation_mixin.js'
|
|
|
-import { increOrderSettleList2 } from "@/api/orderSettleManag.js"
|
|
|
+import { increOrderSettleList2, increOrderSettleListExport2 } from "@/api/orderSettleManag.js"
|
|
|
export default {
|
|
|
components: {
|
|
|
TemplatePage,
|
|
@@ -46,7 +46,7 @@ export default {
|
|
|
if (this.websitId) {
|
|
|
pam.params.push({ "param": "websit_id", "compare": "=", "value": this.websitId })
|
|
|
}
|
|
|
- if(this.detailParams.length){
|
|
|
+ if (this.detailParams.length) {
|
|
|
pam.params = [...pam.params.filter(item => item.param !== "a.pay_time"), ...this.detailParams,]
|
|
|
}
|
|
|
return increOrderSettleList2(pam)
|
|
@@ -55,6 +55,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ exportList: increOrderSettleListExport2,
|
|
|
+
|
|
|
// 表格列解析渲染数据更改
|
|
|
columnParsing(item, defaultData) {
|
|
|
return defaultData
|