diff --git a/src/api/withdraw.js b/src/api/withdraw.js new file mode 100644 index 0000000..2ff3dc7 --- /dev/null +++ b/src/api/withdraw.js @@ -0,0 +1,27 @@ +import $http from "@/utils/httpRequest"; + +/** + * 提现记录 + * @param {*} params + * @returns + */ +export function cashOutAuditPage(params) { + return $http({ + url: "/cashOutAudit/page", + method: "get", + params + }); +} + +/** + * 提现审核 + * @param {*} params + * @returns + */ +export function cashOutAuditAudit(data) { + return $http({ + url: "/cashOutAudit/audit", + method: "POST", + data + }); +} diff --git a/src/config/index.js b/src/config/index.js index cc50250..e2bb5aa 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -2,9 +2,9 @@ export const testUrl='video-admin'; export const productUrl='dj-admin'; // const baseUrl = "http://192.168.1.7:8100/czg/" -// const baseUrl = "https://video.hnsiyao.cn/czg/" + const baseUrl = "https://video.hnsiyao.cn/czg/" // // const baseUrl = "https://api.tianjinzhitongdaohe.com/czg/" -const baseUrl = "https://dj-api.hnsiyao.cn/czg/" +// const baseUrl = "https://dj-api.hnsiyao.cn/czg/" // 线上 export default{ baseUrl diff --git a/src/views/finance/components/withdraw-manage.vue b/src/views/finance/components/withdraw-manage.vue new file mode 100644 index 0000000..766b101 --- /dev/null +++ b/src/views/finance/components/withdraw-manage.vue @@ -0,0 +1,256 @@ + + + diff --git a/src/views/finance/financeList.vue b/src/views/finance/financeList.vue index 8d7bdb7..58942dd 100644 --- a/src/views/finance/financeList.vue +++ b/src/views/finance/financeList.vue @@ -1,333 +1,178 @@