41 lines
1.1 KiB
Vue
41 lines
1.1 KiB
Vue
<template>
|
|
<NavBar />
|
|
<view class="container">
|
|
<view class="title">
|
|
<PageTitle :title="$t('home.apply.title')" />
|
|
<text class="rightTitle">{{ $t('home.apply.salesWithdraw') }}</text>
|
|
</view>
|
|
<view class="content">
|
|
<image src="/static/success.png" mode="aspectFit" style="width: 56px; height: 56px"></image>
|
|
<text class="successTitle">{{ $t('withdrawal.success') }}</text>
|
|
<text class="successDesc">{{ $t('deposit.successDesc') }}</text>
|
|
</view>
|
|
<view class="btns">
|
|
<button class="btn primaryButton" type="button" :disabled="btnLoading" @click="handleContinueWithdraw">
|
|
<image v-show="btnLoading" src="/static/loadingCircle.svg" mode="aspectFit" style="width: 16px; height: 16px"></image>
|
|
{{ $t('withdrawal.continue') }}
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: '',
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
handleContinueWithdraw() {
|
|
uni.redirectTo({
|
|
url: '/pages/capital/salesWithdraw/index'
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './index.scss';
|
|
</style>
|