diff --git a/src/api/form.js b/src/api/form.js index a479b38..53a394e 100644 --- a/src/api/form.js +++ b/src/api/form.js @@ -245,4 +245,26 @@ export const payRecordRecharge = { params: query, }) }, + } + + /** + * 商户代付订单管理 + */ + export const paymentDaiFuRecord = { + // 查询商户代付订单管理 + listInfo: (query) => { + return request({ + url: '/order/PaymentRecord/list', + method: 'get', + params: query, + }) + }, + // 导出商户代付订单管理 + exportList: (query) => { + return request({ + url: '/order/PaymentRecord/export', + method: 'get', + params: query, + }) + }, } \ No newline at end of file diff --git a/src/views/otc/otcFinance/index.vue b/src/views/otc/otcFinance/index.vue index 7c00eb3..12b4ef7 100644 --- a/src/views/otc/otcFinance/index.vue +++ b/src/views/otc/otcFinance/index.vue @@ -47,19 +47,18 @@ - @@ -70,12 +69,7 @@ - + { + merchantWalletLog.listInfo(this.addSESDateRange(this.queryParams, this.dateRange)).then(response => { this.otcCoinList = response.rows; this.total = Number(response.total); this.loading = false; @@ -200,8 +177,6 @@ export default { /** 搜索按钮操作 */ handleQuery() { this.queryParams.pageNum = 1; - // let changeAmount; - // this.queryParams.changeAmount ? changeAmount = this.NumberMul(this.queryParams.changeAmount, 100) : changeAmount = null this.getList(); }, /** 重置按钮操作 */ diff --git a/src/views/otc/otcStore/index.vue b/src/views/otc/otcStore/index.vue index d8605f6..5c0e2eb 100644 --- a/src/views/otc/otcStore/index.vue +++ b/src/views/otc/otcStore/index.vue @@ -33,39 +33,27 @@
- + - - - - - - - @@ -93,23 +81,23 @@