diff --git a/api/system/dict.js b/api/system/dict.js new file mode 100644 index 00000000..b0a923a5 --- /dev/null +++ b/api/system/dict.js @@ -0,0 +1,6 @@ +import request from "@/utils/request.js"; + +// 根据字典类型查询字典数据信息 +export function getDicts(dictType) { + return request.get('app-api/system/dict-data/type/' + dictType); +} diff --git a/api/user.js b/api/user.js index da81fc15..c0684e25 100644 --- a/api/user.js +++ b/api/user.js @@ -209,14 +209,6 @@ export function extractCash(data){ return request.post('extract/cash',data) } -/** - * 提现银行/提现最低金额 - * -*/ -export function extractBank(){ - return request.get('extract/bank'); -} - /** * 会员等级列表 * diff --git a/pages/users/user_cash/index.vue b/pages/users/user_cash/index.vue index 5883a247..5cdfbb94 100644 --- a/pages/users/user_cash/index.vue +++ b/pages/users/user_cash/index.vue @@ -2,14 +2,15 @@ - - - + + + {{item.name}} - +
持卡人 @@ -22,8 +23,8 @@ 银行 - - {{array[index]}} + + {{bankList[bankIndex] && bankList[bankIndex].label}} @@ -33,7 +34,7 @@ - 当前可提现金额: ¥{{ fen2yuan(commission.brokeragePrice) }},冻结佣金:¥{{ fen2yuan(commission.frozenBrokeragePrice) }} + 当前可提现金额: ¥{{ fen2yuan(commission.brokeragePrice) }},冻结佣金:¥{{ fen2yuan(commission.frozenPrice) }} 说明: 每笔佣金的冻结期为{{frozenDays}}天,到期后可提现 @@ -41,7 +42,7 @@ - +
账号 @@ -65,7 +66,7 @@ - 当前可提现金额: ¥{{ fen2yuan(commission.brokeragePrice) }},冻结佣金:¥{{ fen2yuan(commission.frozenBrokeragePrice) }} + 当前可提现金额: ¥{{ fen2yuan(commission.brokeragePrice) }},冻结佣金:¥{{ fen2yuan(commission.frozenPrice) }} 说明: 每笔佣金的冻结期为{{frozenDays}}天,到期后可提现 @@ -73,7 +74,7 @@
- +
账号 @@ -97,7 +98,7 @@ - 当前可提现金额: ¥{{ fen2yuan(commission.brokeragePrice) }},冻结佣金:¥{{ fen2yuan(commission.frozenBrokeragePrice) }} + 当前可提现金额: ¥{{ fen2yuan(commission.brokeragePrice) }},冻结佣金:¥{{ fen2yuan(commission.frozenPrice) }} 说明: 每笔佣金的冻结期为{{frozenDays}}天,到期后可提现 @@ -110,33 +111,23 @@