You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.3 KiB
67 lines
1.3 KiB
<template>
|
|
<view class="">
|
|
<navigation :showBack="true" :bgnum="false">
|
|
<text class="big_title">
|
|
Backup mnemonic
|
|
</text>
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="big_title">
|
|
Please save the mnemonic, anyone who gets your mnemonic can control your account, including transferring all funds.
|
|
</view>
|
|
|
|
<u-message-input inactive-color="#E0E5F2" active-color="#5B53FF" :width="94" :maxlength="6" mode="box" :dot-fill="true"></u-message-input>
|
|
|
|
<view class="title">
|
|
Please enter the original password for verification
|
|
</view>
|
|
</view>
|
|
|
|
<view class="main" v-if="false">
|
|
<view class="big_title">
|
|
Set new password
|
|
</view>
|
|
<view class="title">
|
|
Secure transaction passwords, please do not disclose
|
|
</view>
|
|
|
|
<u-message-input inactive-color="#E0E5F2" active-color="#5B53FF" :width="94" :maxlength="6" mode="box" :dot-fill="true"></u-message-input>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
msg:'',
|
|
msgLength:0,
|
|
fes:false,
|
|
borNum:true,
|
|
}
|
|
},
|
|
|
|
|
|
methods: {
|
|
focuss(){
|
|
this.fes=true;
|
|
},
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|