123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <template>
- <view class="container">
- <view class="row b-b">
- <text class="tit">{{$t('set.a3')}}</text>
- <input class="input" disabled v-model="account" type="text" :placeholder="$t('reg.a3')"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b">
- <text class="tit">{{$t('reg.a8')}}</text>
- <input class="input" v-model="password" type="password" :placeholder="$t('reg.a9')"
- placeholder-class="placeholder" />
- </view>
- <view class="row b-b">
- <text class="tit">{{$t('reg.b0')}}</text>
- <input class="input" v-model="repeat" type="password" :placeholder="$t('reg.b1')"
- placeholder-class="placeholder" />
- </view>
- <!-- <view class="row b-b">
- <text class="tit">{{$t('reg.a6')}}</text>
- <input class="input" v-model="captcha" type="text" :placeholder="$t('reg.a7')" placeholder-class="placeholder" />
- <view class="code" @click="verification">{{ countDown == 0 ? $t('reg.c6') : countDown }}</view>
- </view> -->
- <button class="add-btn" :class="{'bg-gray':loding}"
- @click="loding?'':confirm()">{{$t('common.submit')}}</button>
- </view>
- </template>
- <script>
- import {
- verify
- } from '@/api/login.js';
- import {
- mapState
- } from 'vuex';
- import {
- Reset
- } from '@/api/set.js';
- import detectEthereumProvider from '@metamask/detect-provider'
- export default {
- data() {
- return {
- time: '', //保存倒计时对象
- countDown: 0, //倒计时
- account: '', //手机号
- captcha: '', //验证码
- password: '', //密码
- repeat: '', //确认密码
- loding: false, //是否载入中
- };
- },
- computed: {
- ...mapState("user", ['userInfo'])
- },
- onLoad() {
- if (this.userInfo.account == null) {
- this.account = '';
- } else {
- this.account = this.userInfo.account;
- this.show = false;
- }
- uni.setNavigationBarTitle({
- title: this.$t("tab.b3"),
- });
- },
- watch: {
- // 监听倒计时
- countDown(i) {
- if (i == 0) {
- clearInterval(this.time);
- }
- }
- },
- methods: {
- //发送验证码
- verification() {
- let obj = this;
- if (this.account == '') {
- this.$api.msg(obj.$t("safe.b5"));
- return;
- }
- // if (!/(^1[3|4|5|7|8][0-9]{9}$)/.test(this.account)) {
- // this.$api.msg(obj.$t("safe.b8"));
- // return;
- // }
- // 判断是否在倒计时
- if (obj.countDown > 0) {
- return false;
- } else {
- obj.countDown = 60;
- obj.time = setInterval(() => {
- obj.countDown--;
- }, 1000);
- //调用验证码接口
- verify({
- phone: obj.account,
- type: ''
- })
- .then(({
- data
- }) => {})
- .catch(err => {
- console.log(err);
- });
- }
- },
- async confirm(e) {
- this.loding = true;
- uni.showLoading({
- title: this.$t("userinfo.u23"),
- mask: true
- });
- const provider = await detectEthereumProvider();
- // 链接到MetaMask
- ethereum.request({
- method: 'eth_requestAccounts'
- }).then((account) => {
- console.log(account, 'account');
- // this.$store.commit('accounts/connect_wallet', account[0]);
- // localStorage.setItem('accounts', account)
- const PKR_LOGIN = 'PKR_RESET' + (new Date()).getTime();
- ethereum.request({
- "method": "personal_sign",
- "params": [
- PKR_LOGIN,
- account[0]
- ]
- }).then((res) => {
- Reset({
- password: this.password,
- repeat: this.repeat,
- sign:res,
- account: account[0],
- msg:PKR_LOGIN
- })
- .then(() => {
- this.loding = false;
- uni.showToast({
- title: this.$t("safe.d3"),
- icon: "success",
- mask: true
- });
- })
- .catch(err => {
- this.loding = false;
- console.log(err);
- });
- });
- });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background: #f3f3f3;
- }
- .row {
- display: flex;
- align-items: center;
- position: relative;
- padding: 0 30rpx;
- height: 110rpx;
- background: $font-color-white;
- .tit {
- min-width: 130rpx;
- flex-shrink: 0;
- font-size: 30rpx;
- }
- .input {
- flex: 1;
- font-size: 30rpx;
- color: $font-color-light;
- padding-left: 20rpx;
- }
- .iconlocation {
- font-size: 36rpx;
- color: $font-color-light;
- }
- }
- .add-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100rpx;
- margin: 60rpx auto;
- font-size: $font-lg;
- background-color: #FFF;
- border: none;
- }
- .bg-gray {
- background-color: $color-gray;
- }
- .code {
- color: #000s;
- font-size: 23rpx;
- border-left: 1px solid #eeeeee;
- width: 150rpx;
- flex-shrink: 0;
- text-align: center;
- }
- </style>
|