Commit 0145c15e by GiottoMaster

update

parent 9645d707
...@@ -408,6 +408,15 @@ ...@@ -408,6 +408,15 @@
</div> </div>
</div> </div>
</div> </div>
<van-dialog v-model="overShow" :closeOnClickOverlay="true" :show-confirm-button="false">
<div class="head">
<div class="title">{{ $t('showAfter.title') }}</div>
</div>
<div class="content">
{{ $t('mine.deposit.tips1') }}
</div>
</van-dialog>
</div> </div>
</template> </template>
<script> <script>
...@@ -415,6 +424,7 @@ export default { ...@@ -415,6 +424,7 @@ export default {
name: 'deposit', name: 'deposit',
data() { data() {
return { return {
overShow:true,
pay_way: 'bank', //bank/alipay/wxpay/usdt 1/2/3/4 pay_way: 'bank', //bank/alipay/wxpay/usdt 1/2/3/4
amount: null, //支付金额 amount: null, //支付金额
tabShow: 0, //当前选中的 tabShow: 0, //当前选中的
...@@ -756,6 +766,7 @@ export default { ...@@ -756,6 +766,7 @@ export default {
}, },
}, },
mounted() { mounted() {
this.overShow = true
//公告弹窗 //公告弹窗
let that = this; let that = this;
function openGonggao() { function openGonggao() {
...@@ -896,6 +907,12 @@ export default { ...@@ -896,6 +907,12 @@ export default {
this.jumpUrl = null; this.jumpUrl = null;
}, },
}, },
beforeRouteEnter(to, from, next) {
next(vm => {
console.log(vm);
vm.overShow = true
});
},
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
...@@ -940,4 +957,23 @@ export default { ...@@ -940,4 +957,23 @@ export default {
padding: 5px 5px 5px 12px; padding: 5px 5px 5px 12px;
cursor: pointer; cursor: pointer;
} }
.van-dialog {
width: 80%;
max-width: 700px;
.head {
background: linear-gradient(90deg, #F3B096 0.56%, #EBBDAC 100%);
height: 60px;
line-height: 60px;
text-align: center;
color: #fff;
font-weight: bold;
width: 100%;
position: relative;
}
.content {
padding: 40px 80px;
text-align: center;
}
}
</style> </style>
...@@ -383,6 +383,7 @@ export const mine = { ...@@ -383,6 +383,7 @@ export const mine = {
placeholder3: '请输入开户行', placeholder3: '请输入开户行',
placeholder4: '请输入取款金额', placeholder4: '请输入取款金额',
placeholder5: '请输入备注', placeholder5: '请输入备注',
tips1: '如果您需要储值,请联系客服中心确认银行账户。',
}, },
mail: { mail: {
title: '消息公告', title: '消息公告',
......
...@@ -383,6 +383,7 @@ export const mine = { ...@@ -383,6 +383,7 @@ export const mine = {
placeholder3: 'Please enter the bank where the account is opened', placeholder3: 'Please enter the bank where the account is opened',
placeholder4: 'Please enter the withdrawal amount', placeholder4: 'Please enter the withdrawal amount',
placeholder5: 'Please enter remarks', placeholder5: 'Please enter remarks',
tips1: 'If you need to top up, please contact the customer service center to confirm your bank account.',
}, },
mail: { mail: {
title: 'Message announcement', title: 'Message announcement',
......
...@@ -334,7 +334,7 @@ deposit: { ...@@ -334,7 +334,7 @@ deposit: {
label22: '정확한 은행 개설 주소를 입력해주세요.', label22: '정확한 은행 개설 주소를 입력해주세요.',
label23: '입금 금액', label23: '입금 금액',
label24: '가능한 금액 범위 내에서 입력해주세요.', label24: '가능한 금액 범위 내에서 입력해주세요.',
label25: '입금청', label25: '입금청',
label26: '지갑 프로토콜', label26: '지갑 프로토콜',
label27: '입금 금액', label27: '입금 금액',
label28: '프로토콜 선택', label28: '프로토콜 선택',
...@@ -344,7 +344,7 @@ deposit: { ...@@ -344,7 +344,7 @@ deposit: {
label32: '입금 주소', label32: '입금 주소',
label33: '입금 완료', label33: '입금 완료',
label34: '참고 환율', label34: '참고 환율',
label35: '입금청', label35: '입금청',
label36: '입금 금액', label36: '입금 금액',
label37: '알리페이에서 낯선 계좌로의 송금을 차단할 수 있습니다. 결제가 실패할 경우 다른 충전 방법을 이용해주세요.', label37: '알리페이에서 낯선 계좌로의 송금을 차단할 수 있습니다. 결제가 실패할 경우 다른 충전 방법을 이용해주세요.',
label38: '입금 금액이 정수일 경우 입금 지연이 발생할 수 있습니다. 끝자리 숫자를 조정하는 것이 좋습니다. (예: 102, 121, 156 등)', label38: '입금 금액이 정수일 경우 입금 지연이 발생할 수 있습니다. 끝자리 숫자를 조정하는 것이 좋습니다. (예: 102, 121, 156 등)',
...@@ -383,6 +383,7 @@ deposit: { ...@@ -383,6 +383,7 @@ deposit: {
placeholder3: '계좌 개설 은행을 입력해주세요.', placeholder3: '계좌 개설 은행을 입력해주세요.',
placeholder4: '원 이상부터 가능.', placeholder4: '원 이상부터 가능.',
placeholder5: '메모를 입력하세요', placeholder5: '메모를 입력하세요',
tips1: '충전을 원하실 경우 고객센터에 입금 계좌문의를 하시길 바랍니다.'
}, },
mail: { mail: {
title: '공지 사항', title: '공지 사항',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment