diff --git a/jsowell-ui/src/api/adapayMember/adapayMember.js b/jsowell-ui/src/api/adapayMember/adapayMember.js
index a2a372764..890452736 100644
--- a/jsowell-ui/src/api/adapayMember/adapayMember.js
+++ b/jsowell-ui/src/api/adapayMember/adapayMember.js
@@ -73,3 +73,12 @@ export function withdraw(data) {
data: data,
});
}
+
+// 提现记录接口
+export function WithdrawalHistory(data) {
+ return request({
+ url: "/adapay/member/queryWithdrawList ",
+ method: "post",
+ data: data,
+ });
+}
\ No newline at end of file
diff --git a/jsowell-ui/src/views/financial/financeDetail.vue b/jsowell-ui/src/views/financial/financeDetail.vue
index ab98a4e7c..2557eac45 100644
--- a/jsowell-ui/src/views/financial/financeDetail.vue
+++ b/jsowell-ui/src/views/financial/financeDetail.vue
@@ -124,23 +124,19 @@
该余额大于{{ withdrawalFee }}元时,才可发起取现
-
-
-
+
@@ -170,7 +166,7 @@
-
+
订单流水
@@ -208,13 +204,14 @@
-
-
-
-
+
+
+
+
+
-
+
@@ -243,6 +240,7 @@ import {
withdraw,
selectAdapayMember,
queryAdapayAccountBalance,
+ WithdrawalHistory
} from "@/api/adapayMember/adapayMember";
import { getOrderReportDetail } from "@/api/order/order";
import { getDay } from "@/utils/common";
@@ -293,6 +291,14 @@ export default {
merchantNature: "",
showAdapayCorp: "",
showAccountList: false,
+ //已提现参数
+ getWithdrawnParameters: {
+ merchantId: this.$route.query.merchantId,
+ pageNum: 1,
+ pageSize: 10,
+ },
+ payoutInformation: [],
+ getTotal: 0
};
},
methods: {
@@ -451,7 +457,17 @@ export default {
this.getList();
},
already() {
- this.recordDialog = true
+ this.recordDialog = true;
+ this.getHistory()
+ },
+ //提现记录
+ getHistory() {
+ console.log('etWithdrawnParameters', this.getWithdrawnParameters);
+ WithdrawalHistory(this.getWithdrawnParameters).then((response) => {
+ console.log("提现记录", response);
+ this.payoutInformation = response.data.list;
+ this.getTotal = response.data.total;
+ });
}
},
created() {