diff --git a/src/pages.json b/src/pages.json
index 51fe09c..944d62d 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -723,6 +723,12 @@
}
},
{
+ "path": "pages/index/recharge_record",
+ "style" : {
+ "navigationBarTitleText": "充值记录"
+ }
+ },
+ {
"path": "pages/douyin_withdraw/index",
"style" : {
"navigationBarTitleText": "平台提现"
diff --git a/src/subpackage/wallet/js/api.js b/src/subpackage/wallet/js/api.js
index 4ff0fc2..654bb3a 100644
--- a/src/subpackage/wallet/js/api.js
+++ b/src/subpackage/wallet/js/api.js
@@ -8,6 +8,9 @@ export const WALLET_API = {
// 宝付
getPayAssureConfigs:`${ORIGIN}/admin/pay/assure/getPayAssureConfigs`, // 查看可选择的支付账户列表
baofuV2Gateway:`${ORIGIN}/admin/pay/assure/baofuV2/gateway`, // 宝付v2获取金额信息
+ // tid1819
+ wxpayinfo:`${ORIGIN}/admin/assistant/merchantwallet/wxpayinfo`, // 这个是充值
+ rechargeList:`${ORIGIN}/admin/merchantwallet/recharge/list`, // 这是充值记录
}
export default WALLET_API;
\ No newline at end of file
diff --git a/src/subpackage/wallet/pages/douyin_withdraw/index.vue b/src/subpackage/wallet/pages/douyin_withdraw/index.vue
index 9c3665a..f11b299 100644
--- a/src/subpackage/wallet/pages/douyin_withdraw/index.vue
+++ b/src/subpackage/wallet/pages/douyin_withdraw/index.vue
@@ -26,7 +26,7 @@
diff --git a/src/subpackage/wallet/pages/index/modules/recharge_modal.vue b/src/subpackage/wallet/pages/index/modules/recharge_modal.vue
new file mode 100644
index 0000000..784cc5b
--- /dev/null
+++ b/src/subpackage/wallet/pages/index/modules/recharge_modal.vue
@@ -0,0 +1,82 @@
+
+
+
+
+ 钱包余额:
+ {{ balance || 0 }}元
+
+
+
+ 取消
+ 确认
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/subpackage/wallet/pages/index/modules/wallet_info.vue b/src/subpackage/wallet/pages/index/modules/wallet_info.vue
index f450eb1..7826478 100644
--- a/src/subpackage/wallet/pages/index/modules/wallet_info.vue
+++ b/src/subpackage/wallet/pages/index/modules/wallet_info.vue
@@ -7,10 +7,10 @@
欧轩内部钱包账户余额
-
+
(用于购买服务使用)
@@ -18,7 +18,7 @@
¥
{{ balance }}
-
+ 充值
diff --git a/src/subpackage/wallet/pages/index/recharge_record.vue b/src/subpackage/wallet/pages/index/recharge_record.vue
new file mode 100644
index 0000000..d557240
--- /dev/null
+++ b/src/subpackage/wallet/pages/index/recharge_record.vue
@@ -0,0 +1,137 @@
+
+
+
+
+
+ {{ e.amount || 0 }}
+ {{ e.order_no || '-' }}
+ {{ e.pay_time || '-' }}
+ {{ e.pay_type || '-' }}
+ {{ e.trans_no || '-' }}
+
+ {{ e.optsourse || '-' }} ({{ e.optname }})
+
+
+
+
+
+
+
+
+
\ No newline at end of file