diff --git a/api/pay.js b/api/pay.js
index af14b51..252f9c0 100644
--- a/api/pay.js
+++ b/api/pay.js
@@ -48,4 +48,9 @@ export const userWithdraw = (data) => oahttp.get('/user/withdraw', data)
/**
* 提现记录
*/
-export const userWithdrawList = (data) => oahttp.get('/user/withdrawList', data)
\ No newline at end of file
+export const userWithdrawList = (data) => oahttp.get('/user/withdrawList', data)
+
+/**
+ * 可提现金额
+ */
+export const getCurrCycleWithdraw = (data) => oahttp.get('/user/getCurrCycleWithdraw', data)
\ No newline at end of file
diff --git a/components/companyFinance/companyFinance.vue b/components/companyFinance/companyFinance.vue
index 33b3bdc..5e24bcf 100644
--- a/components/companyFinance/companyFinance.vue
+++ b/components/companyFinance/companyFinance.vue
@@ -6,7 +6,7 @@
{{cCount(+company.deposit)}}
0.00
-
+
公司收益总金额(元)
{{cCount(+company.company_money)}}
0.00
diff --git a/pages.json b/pages.json
index 6f890a3..8bee131 100644
--- a/pages.json
+++ b/pages.json
@@ -374,7 +374,25 @@
}
}
}
- }, {
+ },{
+ "path": "withdrawDeposit/company",
+ "style": {
+ "navigationBarTitleText": "提现",
+ "enablePullDownRefresh": false,
+ "navigationBarBackgroundColor": "#0122C7",
+ "navigationBarTextStyle": "white",
+ "app-plus": {
+ "titleNView": {
+ "buttons": [{
+ "color": "#fff",
+ "text": "提现记录",
+ "fontSize": "15",
+ "width": "90"
+ }]
+ }
+ }
+ }
+ },{
"path": "withdrawList/withdrawList",
"style": {
"navigationBarTitleText": "提现记录",
diff --git a/subpkg/withdrawDeposit/company.vue b/subpkg/withdrawDeposit/company.vue
new file mode 100644
index 0000000..18a36f3
--- /dev/null
+++ b/subpkg/withdrawDeposit/company.vue
@@ -0,0 +1,275 @@
+
+
+
+
+
+ 提现信息
+
+ 提现账户
+ {{$store.state.app.userInfo.company.company_name||''}}
+ {{$store.state.app.userInfo.account||''}}
+
+
+ 可提现金额
+ {{company_money||'0.00'}}元
+
+
+
+
+ 提示
+
+ 可提现金额是公司再2023-07-01-至2023-08-15日期间内的收益总和,并不是当前公司收益金额,提现后将会由后台审核,审核通过后会直接往您所上传的银行卡汇款,请耐心等待
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file