diff --git a/lang/zh.json b/lang/zh.json index f974555a..2046f265 100644 --- a/lang/zh.json +++ b/lang/zh.json @@ -191,6 +191,7 @@ "plugins-coin-convert": "转换", "plugins-coin-cash": "提现", "plugins-coin-detail": "明细", + "plugins-coin-transfer": "转账", "plugins-coin-transfer-list": "转账明细", "plugins-coin-transaction-list": "交易明细", "plugins-coin-cash-list": "提现明细", diff --git a/pages.json b/pages.json index 93fc1c26..22657d4b 100644 --- a/pages.json +++ b/pages.json @@ -1502,6 +1502,13 @@ "navigationBarTitleText": "" } }, + { + "path": "transfer/transfer", + "style": { + "enablePullDownRefresh": true, + "navigationBarTitleText": "" + } + }, { "path": "transfer-list/transfer-list", "style": { diff --git a/pages/plugins/coin/collection/collection.vue b/pages/plugins/coin/collection/collection.vue index f4524eec..0f0feeed 100644 --- a/pages/plugins/coin/collection/collection.vue +++ b/pages/plugins/coin/collection/collection.vue @@ -39,7 +39,7 @@ code: '', size: 280, }, - accounts_key: '3453sdfsdf3254233453sdfsdf325423', + accounts_key: '', }; }, diff --git a/pages/plugins/coin/detail/detail.vue b/pages/plugins/coin/detail/detail.vue index f7b72932..6b759ba2 100644 --- a/pages/plugins/coin/detail/detail.vue +++ b/pages/plugins/coin/detail/detail.vue @@ -151,9 +151,9 @@ // 虚拟币操作列表 coin_oprate_list: [ { - name: '充值', + name: '转账', icon: 'icon-transfer-count', - url: '/pages/plugins/coin/recharge/recharge', + url: '/pages/plugins/coin/transfer/transfer', }, { name: '收款', diff --git a/pages/plugins/coin/transfer/transfer.css b/pages/plugins/coin/transfer/transfer.css new file mode 100644 index 00000000..aa4ef1fc --- /dev/null +++ b/pages/plugins/coin/transfer/transfer.css @@ -0,0 +1,11 @@ +.note { + background-color: #fafafc; +} + +.transfer-btn { + background: linear-gradient(107deg, #31B4FC 0%, #0842E2 100%); +} + +.transfer-btn:active { + background: linear-gradient(107deg, #168ACA 0%, #022A97 100%); +} \ No newline at end of file diff --git a/pages/plugins/coin/transfer/transfer.vue b/pages/plugins/coin/transfer/transfer.vue new file mode 100644 index 00000000..aa0fbfdc --- /dev/null +++ b/pages/plugins/coin/transfer/transfer.vue @@ -0,0 +1,214 @@ + + +