diff --git a/common/api.js b/common/api.js
index 6f6b11f..f58630a 100644
--- a/common/api.js
+++ b/common/api.js
@@ -74,4 +74,13 @@ export const orderPay = (params, config = {custom: { auth: true }}) => http.post
export const bindInvitor = (params, config = {custom: { auth: true }}) => http.post('/api/user/bindInvitor', params, config);
//上架
export const payUpGoods = (params, config = {custom: { auth: true }}) => http.post('/api/order/payUpGoods', params, config);
+//收支详情
+export const incomeDetail = (params, config = {custom: { auth: true }}) => http.get('/api/user/getUserIncomeAndExpandList', {params}, config);
+//提交支付凭证
+export const submitPingzheng = (params, config = {custom: { auth: true }}) => http.post('/api/user/submitPay', params, config);
+//确认收款
+export const confirmPay = (params, config = {custom: { auth: true }}) => http.post('/api/user/confirmPay', params, config);
+//确认签约
+export const confirmSign = (params, config = {custom: { auth: true }}) => http.post('/api/user/updateUserInfo', params, config);
+
diff --git a/common/config.js b/common/config.js
index a42a668..4790e4a 100644
--- a/common/config.js
+++ b/common/config.js
@@ -1,2 +1,5 @@
-export const $apiLinks = "https://admin.hezhiying.com.cn/" // api 接口地址
-export const baseUrl = "https://admin.hezhiying.com.cn/"
\ No newline at end of file
+// export const $apiLinks = "https://admin.hezhiying.com.cn/" // api 接口地址
+// export const baseUrl = "https://admin.hezhiying.com.cn/"
+
+export const $apiLinks = "https://huazhiyuadmin.first315.com/" // api 接口地址
+export const baseUrl = "https://huazhiyuadmin.first315.com/"
\ No newline at end of file
diff --git a/pages/home/home.vue b/pages/home/home.vue
index df4e3ed..2e21bde 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -62,7 +62,10 @@
-
+
+
+
+
@@ -239,4 +242,8 @@ export default {
diff --git a/pages/my/incomeExpenditureDetail.vue b/pages/my/incomeExpenditureDetail.vue
index 2decb09..9992c12 100644
--- a/pages/my/incomeExpenditureDetail.vue
+++ b/pages/my/incomeExpenditureDetail.vue
@@ -1,26 +1,34 @@
-
-
+
+ 暂无数据
+
+ 付款人:{{incomeDetail.buyer.nickname}}
+ 联系电话:{{incomeDetail.buyer.mobile}}
+ 付款金额:{{incomeDetail.amount}}元
+ 支付凭证
+ 确认收款
+
+
测试优先公司
- 收款人:xxx 付款金额:xxx元
+ 收款人:{{incomeDetail.seller.nickname}} 付款金额:{{incomeDetail.amount}}元
-
+
{{item.name}}
-
+
银行卡姓名
- {{yhk.bank_realname}}
+ {{incomeDetail.seller.bank_realname}}
onCopyResult('success')"
v-clipboard:error="(type) => onCopyResult('error')"
src="../../static/image/copy.png" mode="widthFix">
@@ -31,9 +39,9 @@
卡号
- {{yhk.bank_no}}
+ {{incomeDetail.seller.bank_no}}
onCopyResult('success')"
v-clipboard:error="(type) => onCopyResult('error')"
src="../../static/image/copy.png" mode="widthFix">
@@ -44,9 +52,9 @@
开户行
- {{yhk.bank_address}}
+ {{incomeDetail.seller.bank_address}}
onCopyResult('success')"
v-clipboard:error="(type) => onCopyResult('error')"
src="../../static/image/copy.png" mode="widthFix">
@@ -57,9 +65,9 @@
支行
- {{yhk.bank_address}}
+ {{incomeDetail.seller.bank_sub_address}}
onCopyResult('success')"
v-clipboard:error="(type) => onCopyResult('error')"
src="../../static/image/copy.png" mode="widthFix">
@@ -67,6 +75,13 @@
+
+
+
+
+ 收款码
+
+
- 提交
+ 提交
@@ -97,7 +112,7 @@