diff --git a/7uppay.zip b/7uppay.zip new file mode 100644 index 0000000..4399450 Binary files /dev/null and b/7uppay.zip differ diff --git a/src/api/form.js b/src/api/form.js index 301d852..c5f4e3c 100644 --- a/src/api/form.js +++ b/src/api/form.js @@ -11,6 +11,13 @@ import { * */ export const common_api = { + //获取所有商户 + getAllPayTestStore: () => { + return request({ + url: '/paytest/all', + method: 'get', + }) + }, //获取所有商户 getAllstore: () => { return request({ @@ -366,6 +373,14 @@ export const transfer_capital_list = { * 资金流水 */ export const capitalDtlList = { +    // 流水导出 +    export: (query) => { +      return request({ +        url: '/record/transfer_capitaldtl_export', +        method: 'get', +        params: query +      }) +    }, // 查询资金流水列表 listInfo: (query) => { return request({ @@ -384,6 +399,7 @@ export const capitalDtlList = { * 结算流水 */ export const paySettleWater = { + // 查询结算流水列表 listInfo: (query) => { return request({ @@ -1010,6 +1026,13 @@ export const payTest = { * 订单 */ export const payOrder = { + // 手动结算 + manualSettle: (data) => { + return request({ + url: '/record/manualSettle/' + data, + method: 'GET', + }) + }, // u手工处理支付订单 payHandleCoin: (data) => { return request({ diff --git a/src/views/pay/payAgentUser/payAgentUserList.vue b/src/views/pay/payAgentUser/payAgentUserList.vue index 8ade74f..6973332 100644 --- a/src/views/pay/payAgentUser/payAgentUserList.vue +++ b/src/views/pay/payAgentUser/payAgentUserList.vue @@ -316,10 +316,12 @@ {{ detailInfoList.storeNo }} 复制 + {{ detailInfoList.storeKey }} 复制 + {{ detailInfoList.agentCount }} diff --git a/src/views/pay/payOrder/payMoneyWater.vue b/src/views/pay/payOrder/payMoneyWater.vue index f68cb7b..4e2b0cf 100644 --- a/src/views/pay/payOrder/payMoneyWater.vue +++ b/src/views/pay/payOrder/payMoneyWater.vue @@ -24,6 +24,13 @@ + + + + + + @@ -43,8 +50,7 @@ - + @@ -54,25 +60,35 @@ end-placeholder="结束日期" :picker-options="pickerOptions" :unlink-panels="true"> - 搜索 - 重置 +
+ + 搜索 + 重置 + + + + + 导出 + + +
@@ -83,26 +99,25 @@ @@ -290,7 +305,8 @@ export default { accountNo: null, isIncome: null, witType: null, - userType:null, + userType: null, + witNo: null, }, // 表单参数 form: {}, @@ -307,6 +323,23 @@ export default { this.init(); }, methods: { + /** 导出按钮操作 */ + handleExport() { + const queryParams = this.queryParams; + this.$confirm("是否确认导出资金流水?", "警告", { + confirmButtonText: "确定", + cancelButtonText: "取消", + type: "warning", + }) + .then(function () { + return capitalDtlList.export(queryParams); + }) + .then((response) => { + this.download(response.msg); + this.queryParams.pageNum = 1; + this.queryParams.pageSize = 20; + }); + }, /** 手工处理 */ handleOrder(row) { this.reset() @@ -333,23 +366,7 @@ export default { this.sortLevType = response.data }); }, - /** 导出按钮操作 */ - handleExport() { - const queryParams = this.queryParams; - this.$confirm("是否确认导出订单流水?", "警告", { - confirmButtonText: "确定", - cancelButtonText: "取消", - type: "warning", - }) - .then(function () { - return capitalDtlList.export(queryParams); - }) - .then((response) => { - this.download(response.msg); - this.queryParams.pageNum = 1; - this.queryParams.pageSize = 20; - }); - }, + // 多选框选中数据 handleSelectionChange(selection) { this.ids = selection.map(item => item.storeId) diff --git a/src/views/pay/payOrder/payOrderWater.vue b/src/views/pay/payOrder/payOrderWater.vue index e74040e..867ccdd 100644 --- a/src/views/pay/payOrder/payOrderWater.vue +++ b/src/views/pay/payOrder/payOrderWater.vue @@ -48,12 +48,15 @@ - - - + + + + + + - + + + + +
@@ -179,6 +190,10 @@