Commit e68a29bc authored by lizhan's avatar lizhan

📝 【TASK-20240812-01】TASK:登录跳转判断

parent e6bdbe88
......@@ -3,7 +3,12 @@
<view class="header-toper">
<!-- <view class="start-bar"></view> -->
<view class="header-toper-title">
<image src="../../static/img/back.png" mode="" @click="$request.backGo"></image>
<image
v-if="leftIcon"
src="../../static/img/back.png"
mode=""
@click="$request.backGo"
></image>
<text>{{ title }}</text>
<image
v-if="rightBtn"
......@@ -22,6 +27,10 @@ export default {
rightBtn: {
type: Boolean,
default: false
},
leftIcon: {
type: Boolean,
default: true
}
},
data() {
......
<template>
<view class="main">
<view class="login-top">
<image v-if="locale=='en'" src="../../static/img/zh.png" mode="" @click="changeLang('zh')"></image>
<image v-if="locale=='zh'" src="../../static/img/en.png" mode="" @click="changeLang('en')"></image>
<text v-if="loginType == 1" @click="loginChange">{{$lang.lang.login.textLogin}}</text>
<text v-if="loginType == 2" @click="loginChange">{{$lang.lang.login.psdLogin}}</text>
<image
v-if="locale == 'en'"
src="../../static/img/zh.png"
mode=""
@click="changeLang('zh')"
></image>
<image
v-if="locale == 'zh'"
src="../../static/img/en.png"
mode=""
@click="changeLang('en')"
></image>
<text v-if="loginType == 1" @click="loginChange">{{ $lang.lang.login.textLogin }}</text>
<text v-if="loginType == 2" @click="loginChange">{{ $lang.lang.login.psdLogin }}</text>
</view>
<view class="logo">
<image src="../../static/img/logo.png" mode=""></image>
<text>{{$lang.lang.login.title}}</text>
<text>{{ $lang.lang.login.title }}</text>
</view>
<view class="login-item" v-if="loginType == 1">
<view class="login-v">
......@@ -16,7 +26,13 @@
<image src="../../static/img/phone.png" mode=""></image>
</view>
<view class="login-vp">
<input class="vp-input" v-model="mobile" type="number" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.phone">
<input
class="vp-input"
v-model="mobile"
type="number"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.phone"
/>
</view>
</view>
<view class="login-v">
......@@ -24,8 +40,16 @@
<image src="../../static/img/pass.png" mode=""></image>
</view>
<view class="login-vp">
<input class="vp-input" v-model="password" type="password" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.password">
<text class="forget" @click="$request.goPage('../forget/forget')">{{$lang.lang.login.forPsd}}?</text>
<input
class="vp-input"
v-model="password"
type="password"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.password"
/>
<text class="forget" @click="$request.goPage('../forget/forget')"
>{{ $lang.lang.login.forPsd }}?</text
>
</view>
</view>
</view>
......@@ -38,11 +62,17 @@
<view class="login-vp">
<view class="area">
<picker :value="areaIndex" :range="areaName" @change="areaChange">
<view class="uni-input">{{$request.checkAddIcon(areaData[areaIndex])}}</view>
<view class="uni-input">{{ $request.checkAddIcon(areaData[areaIndex]) }}</view>
</picker>
<image src="../../static/img/down.png" mode=""></image>
</view>
<input class="vp-input" v-model="mobile" type="number" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.phone">
<input
class="vp-input"
v-model="mobile"
type="number"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.phone"
/>
</view>
</view>
<view class="login-v">
......@@ -50,20 +80,34 @@
<image src="../../static/img/code.png" mode=""></image>
</view>
<view class="login-vp">
<input class="vp-input" v-model="code" type="code" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.code">
<text class="code" v-if="leftTime < 60">{{leftTime}}S</text>
<text class="code" @click="sendCode" v-else>{{$lang.lang.login.code}}</text>
<input
class="vp-input"
v-model="code"
type="code"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.code"
/>
<text class="code" v-if="leftTime < 60">{{ leftTime }}S</text>
<text class="code" @click="sendCode" v-else>{{ $lang.lang.login.code }}</text>
</view>
</view>
</view>
<view class="login-btns">
<view class="" @click="login">{{$lang.lang.login.loginBtn}}</view>
<view class="" @click="$request.goPage('../register/register')">{{$lang.lang.login.register}}</view>
<view class="" @click="login">{{ $lang.lang.login.loginBtn }}</view>
<view class="" @click="$request.goPage('../register/register')">{{
$lang.lang.login.register
}}</view>
</view>
<view class="agree" @click="agree = !agree">
<image :src="agree ? '../../static/img/check_true.png' : '../../static/img/check_false.png'" mode=""></image>
<view>{{$lang.lang.notices.read}}<text @click="showUser">{{$lang.lang.notices.service}}</text></view>
<image
:src="agree ? '../../static/img/check_true.png' : '../../static/img/check_false.png'"
mode=""
></image>
<view
>{{ $lang.lang.notices.read
}}<text @click="showUser">{{ $lang.lang.notices.service }}</text></view
>
</view>
<uni-popup ref="userment" type="center">
<view class="lending_content">
......@@ -71,23 +115,28 @@
<rich-text :nodes="leviteInfo"></rich-text>
</view>
<view class="lending_btns">
<view @click="$refs.userment.close()">{{$lang.lang.login.close}}</view>
<view @click="$refs.userment.close()">{{ $lang.lang.login.close }}</view>
</view>
</view>
</uni-popup>
<uni-popup ref="vepopup" type="center" :mask-click="false">
<view class="ad-conten">
<image v-if="!forceUpdate" @click="closeVe" class="ad-bg" src='../../static/img/index_close.png'></image>
<view class="ad-title">V{{appVersion}}{{$lang.lang.notices.newVersion}}</view>
<image
v-if="!forceUpdate"
@click="closeVe"
class="ad-bg"
src="../../static/img/index_close.png"
></image>
<view class="ad-title">V{{ appVersion }}{{ $lang.lang.notices.newVersion }}</view>
<view class="ad-info">
<rich-text :nodes="veData"></rich-text>
</view>
<view class="ad-btns">
<view class="ad-btn" @click="toupdate">
<view>{{$lang.lang.notices.update}}</view>
<view>{{ $lang.lang.notices.update }}</view>
</view>
<view v-if="!forceUpdate" class="ad-btn" @click="closeVe">
<view>{{$lang.lang.notices.close}}</view>
<view>{{ $lang.lang.notices.close }}</view>
</view>
</view>
<view class="progress" v-if="showdownLine">
......@@ -99,9 +148,9 @@
</template>
<script>
import userAgreement from '../../components/userAgreement/index.vue'
import userAgreement from '../../components/userAgreement/index.vue'
export default {
export default {
components: {
userAgreement
},
......@@ -112,19 +161,19 @@
areaData: [],
areaName: [],
loginType: 1,
leviteInfo:'',
leviteInfo: '',
mobile: '',
password: '',
code: '',
agree: false,
locale: this.$request.getLocale(),
veData:0,
versionCode:0,
appVersion:'',
forceUpdate:0,
showdownLine:false,
downloadNum:0,//下载百分比
totalSize:0,//下载总量
veData: 0,
versionCode: 0,
appVersion: '',
forceUpdate: 0,
showdownLine: false,
downloadNum: 0, //下载百分比
totalSize: 0 //下载总量
}
},
onLoad() {
......@@ -137,94 +186,87 @@
//#endif
},
methods: {
showUser(){
showUser() {
this.$refs.userment.open()
},
Country () {
Country() {
let that = this
that.$request.get('/app-api/ecw/country/list-all').then(res => {
that.$request.get('/app-api/ecw/country/list-all').then((res) => {
console.log(res)
if(res.code == 0 && res.data.length > 0){
for(let i in res.data){
if (res.code == 0 && res.data.length > 0) {
for (let i in res.data) {
that.areaData.push(res.data[i].tel)
if(that.locale=='zh'){
that.areaName.push('+'+res.data[i].tel + ' ' + res.data[i].nameZh)
}else{
that.areaName.push('+'+res.data[i].tel + ' ' + res.data[i].nameEn)
if (that.locale == 'zh') {
that.areaName.push('+' + res.data[i].tel + ' ' + res.data[i].nameZh)
} else {
that.areaName.push('+' + res.data[i].tel + ' ' + res.data[i].nameEn)
}
}
}
})
},
areaChange (e) {
areaChange(e) {
this.areaIndex = e.detail.value
},
changeLang(data){
changeLang(data) {
this.locale = data
this.getLeviteData()
uni.setStorageSync('locale',data)
uni.setStorageSync('locale', data)
this.$lang.setLang(data)
},
getLeviteData () {
getLeviteData() {
let that = this
that.$request.get('/app-api/system/need-know/getByKey',{key:'5'}).then(res => {
if(res.code == 0 && res.data){
if(that.$lang.locale=='zh'){
that.$request.get('/app-api/system/need-know/getByKey', { key: '5' }).then((res) => {
if (res.code == 0 && res.data) {
if (that.$lang.locale == 'zh') {
that.leviteInfo = res.data.contentZh
}else{
} else {
that.leviteInfo = res.data.contentEn
}
}
})
},
login () {
if(this.mobile == ''){
login() {
if (this.mobile == '') {
return uni.showToast({
title: this.$lang.lang.notices.phone,
icon: 'error',
icon: 'error'
})
}
if(this.password == '' && this.loginType == 1){
if (this.password == '' && this.loginType == 1) {
return uni.showToast({
title: this.$lang.lang.notices.password,
icon: 'error',
icon: 'error'
})
}
if(this.code == '' && this.loginType == 2){
if (this.code == '' && this.loginType == 2) {
return uni.showToast({
title: this.$lang.lang.notices.code,
icon: 'error',
icon: 'error'
})
}
if(!this.agree){
if (!this.agree) {
return uni.showToast({
title: this.$lang.lang.notices.chooseService,
icon: 'none',
icon: 'none'
})
}
let url = ''
let param = {}
url = this.loginType == 1 ? '/app-api/member/login' : '/app-api/member/sms-login'
param = this.loginType == 1 ? {mobile: this.mobile, password: this.password} : {areaCode: this.areaData[this.areaIndex], mobile: this.mobile, code: this.code}
param =
this.loginType == 1
? { mobile: this.mobile, password: this.password }
: { areaCode: this.areaData[this.areaIndex], mobile: this.mobile, code: this.code }
let that = this
that.$request.post(url, param).then(res => {
if(res.code == 0&&res.data){
that.$request.post(url, param).then((res) => {
if (res.code == 0 && res.data) {
uni.setStorageSync('Authorization', res.data.token)
//#ifdef APP-PLUS
uni.reLaunch({
url: '../index/index'
})
//#endif
//#ifdef H5
uni.navigateTo({
url: '../index/index'
})
//#endif
}else{
that.getUserInfo()
} else {
uni.showToast({
title: res.msg,
icon: 'none'
......@@ -232,23 +274,29 @@
}
})
},
sendCode () {
if(this.mobile == ''){
sendCode() {
if (this.mobile == '') {
return uni.showToast({
title: this.$lang.lang.notices.phone,
icon: 'error',
icon: 'error'
})
}
if (this.leftTime < 60) {
return false
}
this.$request.post('/app-api/member/send-sms-code', {areaCode: this.areaData[this.areaIndex], mobile: this.mobile, scene: 1}).then(res => {
if(res.code == 0){
this.$request
.post('/app-api/member/send-sms-code', {
areaCode: this.areaData[this.areaIndex],
mobile: this.mobile,
scene: 1
})
.then((res) => {
if (res.code == 0) {
this.countDown()
} else {
uni.showToast({
title: res.msg,
icon: 'none',
icon: 'none'
})
}
})
......@@ -261,88 +309,90 @@
this.leftTime = 60
}
},
loginChange () {
loginChange() {
this.loginType = this.loginType == 1 ? 2 : 1
},
watchWork(){
watchWork() {
let that = this
uni.onNetworkStatusChange(function (res) {
console.log(res.isConnected);
if(res.isConnected&&that.areaName.length==0){
console.log(res.isConnected)
if (res.isConnected && that.areaName.length == 0) {
that.Country()
that.getLeviteData()
}
});
})
},
toupdate(){
toupdate() {
let that = this
if(that.showdownLine) return
if (that.showdownLine) return
// #ifdef APP-PLUS
let platform = uni.getSystemInfoSync().platform.toLocaleLowerCase()
if (platform == 'ios') {
plus.runtime.openURL('https://apps.apple.com/us/app/e-c-logistics/id6466407990')
}else{
} else {
uni.showLoading({
title: this.$lang.lang.notices.startDown,
title: this.$lang.lang.notices.startDown
})
that.showdownLine = true
var dtask = plus.downloader.createDownload(
that.appUrl,
{
}, (d, status) => {
var dtask = plus.downloader.createDownload(that.appUrl, {}, (d, status) => {
uni.hideLoading()
if (status == 200) {
that.closeVe()
that.showdownLine = false
console.log("下载成功安装: " + d.filename);
console.log('下载成功安装: ' + d.filename)
plus.runtime.install(d.filename)
} else {
that.showdownLine = false
that.closeVe()
plus.nativeUI.alert(that.$lang.lang.notices.failDown)
}
});
})
// uni.navigateTo({
// url:'../updateView/updateView?url='+this.appUrl
// })
// 下载进度
dtask.addEventListener("statechanged", function (download, status) {
if(that.downloadNum==100){
uni.hideLoading();
dtask.addEventListener('statechanged', function (download, status) {
if (that.downloadNum == 100) {
uni.hideLoading()
}
switch (download.state) {
case 2:
break;
case 3://进度条百分比 totalSize为总量,baifen为当前下载的百分比
if(that.totalSize==0){
that.totalSize=parseInt(download.totalSize);
break
case 3: //进度条百分比 totalSize为总量,baifen为当前下载的百分比
if (that.totalSize == 0) {
that.totalSize = parseInt(download.totalSize)
}
if(parseInt(download.downloadedSize/that.totalSize*100)!=that.downloadNum){
that.downloadNum=parseInt(download.downloadedSize/that.totalSize*100);
if (parseInt((download.downloadedSize / that.totalSize) * 100) != that.downloadNum) {
that.downloadNum = parseInt((download.downloadedSize / that.totalSize) * 100)
}
break;
break
case 4:
// mui.toast("下载完成");
uni.hideLoading();
break;
uni.hideLoading()
break
}
});
dtask.start();
})
dtask.start()
}
// #endif
},
getVersion(){
this.version = uni.getStorageSync('appversion');
this.versionCode = uni.getStorageSync('versionCode');
getVersion() {
this.version = uni.getStorageSync('appversion')
this.versionCode = uni.getStorageSync('versionCode')
},
getVeData(){
getVeData() {
let that = this
var addType = uni.getSystemInfoSync().platform=='ios'?'userIos':'userAndroid'
that.$request.get('/app-api/system/version/latestVersion', { appType: addType,versionCode:that.versionCode}).then(res => {
var addType = uni.getSystemInfoSync().platform == 'ios' ? 'userIos' : 'userAndroid'
that.$request
.get('/app-api/system/version/latestVersion', {
appType: addType,
versionCode: that.versionCode
})
.then((res) => {
console.log(res)
if(res.code==0&&res.data){
if (res.code == 0 && res.data) {
that.veData = res.data.desp
that.appUrl = res.data.appUrl
that.appVersion = res.data.appVersion
......@@ -351,15 +401,49 @@
}
})
},
openVe(){
openVe() {
this.$refs.vepopup.open()
},
closeVe(){
closeVe() {
this.$refs.vepopup.close()
},
// 获取个人信息
async getUserInfo() {
try {
const { code, data } = await this.$request.get('/app-api/member/user/get')
if (code == 0 && data) {
const { country } = data
if (country) {
//#ifdef APP-PLUS
uni.reLaunch({
url: '../index/index'
})
//#endif
//#ifdef H5
uni.navigateTo({
url: '../index/index'
})
//#endif
} else {
//#ifdef APP-PLUS
uni.reLaunch({
url: '/pages/my_info/my_info?type=first'
})
//#endif
//#ifdef H5
uni.navigateTo({
url: '/pages/my_info/my_info?type=first'
})
//#endif
}
}
} catch (err) {
console.log(err)
}
}
}
}
</script>
<style>
@import url(../../static/css/login.css);
@import url(../../static/css/login.css);
</style>
<template>
<view>
<dHeader :title="$lang.lang.myInfo.info"></dHeader>
<dHeader :left-icon="!first" :title="first ? '个人信息填写' : $lang.lang.myInfo.info"></dHeader>
<view class="start-bar"></view>
<view class="consultAdd">
<view class="consult-item">
......@@ -89,7 +89,7 @@
@change="bindCountyChange"
>
<view :class="{ placeholder: !params.country }">{{
params.country ? params.country : $lang.lang.notices.country
params.countryValue ? params.countryValue : $lang.lang.notices.country
}}</view>
</picker>
<image class="rgt" src="../../static/img/rgt.png" mode=""></image>
......@@ -107,7 +107,7 @@
@change="bindCityChange"
>
<view :class="{ placeholder: !params.city }">{{
params.city ? params.city : $lang.lang.notices.city
params.cityValue ? params.cityValue : $lang.lang.notices.city
}}</view>
</picker>
<image class="rgt" src="../../static/img/rgt.png" mode=""></image>
......@@ -143,7 +143,7 @@
</view>
</view>
<view class="consult-btn">
<view class="" @click="submitForm">{{ $lang.lang.myInfo.edit }}</view>
<view class="" @click="submitForm">{{ first ? '完成' : $lang.lang.myInfo.edit }}</view>
</view>
</view>
</template>
......@@ -175,10 +175,16 @@ export default {
countryArray: [],
countryId: 0,
// 城市列表
cityArray: []
cityArray: [],
// 是否为首次进入 没有国家城市信息
first: false
}
},
onLoad() {
onLoad(route) {
const { type } = route
if (type == 'first') {
this.first = true
}
this.getUserInfo()
},
computed: {
......@@ -196,6 +202,16 @@ export default {
submitForm() {
this.$request.put('/app-api/member/user/update', this.params).then((res) => {
if (res.code == 0) {
if (this.first) {
uni.showToast({
title: '成功',
icon: 'none'
})
uni.reLaunch({
url: '/pages/index/index'
})
return
}
uni.showToast({
title: this.$lang.lang.notices.edited,
icon: 'none'
......@@ -218,9 +234,17 @@ export default {
if (res.data.birthday) {
this.date = res.data.birthday
}
}
this.Country()
const { city, country, countryTitleZh, countryTitleEn, cityTitleZh, cityTitleEn } =
res.data
this.params.city = city
this.params.country = country
this.params.cityValue = this.rangeKey == 'zh' ? cityTitleZh : cityTitleEn
this.params.countryValue = this.rangeKey == 'zh' ? countryTitleZh : countryTitleEn
this.getCountryList()
this.getCityList()
this.Country()
if (country) this.getCityList(country)
}
})
},
// 获取国家区号
......@@ -274,7 +298,6 @@ export default {
// 获取国家列表
getCountryList() {
this.$request.get('/admin-api/ecw/region/getTradeCountryList').then((res) => {
console.log(res)
if (res.code == 0) {
this.countryArray = res.data
}
......@@ -285,13 +308,17 @@ export default {
const index = e.detail.value
const { titleZh, titleEn, id } = this.countryArray[index]
const value = this.rangeKey == 'zh' ? titleZh : titleEn
this.$set(this.params, 'country', value)
if (this.params.country != id) {
this.$set(this.params, 'cityValue', '')
this.$set(this.params, 'city', '')
this.getCityList(id)
}
this.$set(this.params, 'countryValue', value)
this.$set(this.params, 'country', id)
},
// 获取城市列表
getCityList(id) {
this.$request.get('/admin-api/ecw/region/getCityListByParent', { id }).then((res) => {
console.log(res)
if (res.code == 0) {
this.cityArray = res.data
}
......@@ -300,9 +327,10 @@ export default {
// 城市选择 change
bindCityChange(e) {
const index = e.detail.value
const { titleZh, titleEn } = this.cityArray[index]
const { titleZh, titleEn, id } = this.cityArray[index]
const value = this.rangeKey == 'zh' ? titleZh : titleEn
this.$set(this.params, 'city', value)
this.$set(this.params, 'cityValue', value)
this.$set(this.params, 'city', id)
}
}
}
......
......@@ -5,7 +5,7 @@
</view>
<view class="logo">
<image src="../../static/img/logo.png" mode=""></image>
<text>{{$lang.lang.login.title}}</text>
<text>{{ $lang.lang.login.title }}</text>
</view>
<view class="login-item">
<view class="login-v">
......@@ -15,11 +15,17 @@
<view class="login-vp login-phone">
<view class="login-area">
<picker :value="areaIndex" :range="areaName" @change="areaChange">
<view class="uni-input">{{$request.checkAddIcon(areaData[areaIndex])}}</view>
<view class="uni-input">{{ $request.checkAddIcon(areaData[areaIndex]) }}</view>
</picker>
<image src="../../static/img/more.png" mode=""></image>
</view>
<input class="vp-input" v-model="mobile" type="number" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.phone">
<input
class="vp-input"
v-model="mobile"
type="number"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.phone"
/>
</view>
</view>
<view class="login-v">
......@@ -27,9 +33,15 @@
<image src="../../static/img/code.png" mode=""></image>
</view>
<view class="login-vp">
<input class="vp-input" v-model="code" type="number" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.code">
<view class="login-code" v-if="leftTime < 60">{{leftTime}}S</view>
<view class="login-code" v-else @click="sendCode">{{$lang.lang.login.code}}</view>
<input
class="vp-input"
v-model="code"
type="number"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.code"
/>
<view class="login-code" v-if="leftTime < 60">{{ leftTime }}S</view>
<view class="login-code" v-else @click="sendCode">{{ $lang.lang.login.code }}</view>
</view>
</view>
<view class="login-v">
......@@ -37,7 +49,13 @@
<image src="../../static/img/pass.png" mode=""></image>
</view>
<view class="login-vp">
<input class="vp-input" v-model="password" type="password" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.numPsd">
<input
class="vp-input"
v-model="password"
type="password"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.numPsd"
/>
</view>
</view>
<view class="login-v">
......@@ -45,24 +63,36 @@
<image src="../../static/img/safe.png" mode=""></image>
</view>
<view class="login-vp">
<input class="vp-input" v-model="passworded" type="password" placeholder-style="color: #ffffff" :placeholder="$lang.lang.notices.nextPsd">
<input
class="vp-input"
v-model="passworded"
type="password"
placeholder-style="color: #ffffff"
:placeholder="$lang.lang.notices.nextPsd"
/>
</view>
</view>
</view>
<view class="login-btns">
<view class="" @click="register">{{$lang.lang.login.register}}</view>
<view class="" @click="register">{{ $lang.lang.login.register }}</view>
</view>
<view class="agree" @click="agree = !agree">
<image :src="agree ? '../../static/img/check_true.png' : '../../static/img/check_false.png'" mode=""></image>
<view>{{$lang.lang.notices.read}}<text @click="showUser">{{$lang.lang.notices.service}}</text></view>
<image
:src="agree ? '../../static/img/check_true.png' : '../../static/img/check_false.png'"
mode=""
></image>
<view
>{{ $lang.lang.notices.read
}}<text @click="showUser">{{ $lang.lang.notices.service }}</text></view
>
</view>
<user-agreement ref="userment" />
</view>
</template>
<script>
import userAgreement from '../../components/userAgreement/index.vue'
export default {
import userAgreement from '../../components/userAgreement/index.vue'
export default {
components: {
userAgreement
},
......@@ -76,66 +106,73 @@
agree: false,
areaData: [],
areaName: [],
leftTime: 60,
leftTime: 60
}
},
onLoad() {
this.Country()
},
methods: {
showUser(){
showUser() {
this.$refs.userment.open()
},
Country () {
this.$request.get('/app-api/ecw/country/list-all').then(res => {
if(res.code == 0 && res.data.length > 0){
for(let i in res.data){
Country() {
this.$request.get('/app-api/ecw/country/list-all').then((res) => {
if (res.code == 0 && res.data.length > 0) {
for (let i in res.data) {
this.areaData.push(res.data[i].tel)
if(this.$lang.locale=='zh'){
this.areaName.push('+'+res.data[i].tel + ' ' + res.data[i].nameZh)
}else{
this.areaName.push('+'+res.data[i].tel + ' ' + res.data[i].nameEn)
if (this.$lang.locale == 'zh') {
this.areaName.push('+' + res.data[i].tel + ' ' + res.data[i].nameZh)
} else {
this.areaName.push('+' + res.data[i].tel + ' ' + res.data[i].nameEn)
}
}
}
})
},
areaChange (e) {
areaChange(e) {
this.areaIndex = e.detail.value
},
ismobile(code,mobile){
this.$request.get('/app-api/param/validator/mobile',{code:code,mobile:mobile}).then(res => {
if(res.code==0){
this.$request.post('/app-api/member/send-sms-code', {areaCode: this.areaData[this.areaIndex], mobile: this.mobile, scene: 0}).then(res => {
if(res.code == 0){
ismobile(code, mobile) {
this.$request
.get('/app-api/param/validator/mobile', { code: code, mobile: mobile })
.then((res) => {
if (res.code == 0) {
this.$request
.post('/app-api/member/send-sms-code', {
areaCode: this.areaData[this.areaIndex],
mobile: this.mobile,
scene: 0
})
.then((res) => {
if (res.code == 0) {
this.countDown()
} else {
uni.showToast({
title: res.msg || 'error',
icon: 'none',
icon: 'none'
})
}
})
}else{
} else {
uni.showToast({
title: this.$lang.lang.notices.nophone,
icon: 'error',
icon: 'error'
})
}
})
},
sendCode () {
if(this.mobile == ''){
sendCode() {
if (this.mobile == '') {
return uni.showToast({
title: this.$lang.lang.notices.phone,
icon: 'error',
icon: 'error'
})
}
if (this.leftTime < 60) {
return false
}
this.ismobile(this.areaData[this.areaIndex],this.mobile)
this.ismobile(this.areaData[this.areaIndex], this.mobile)
},
countDown() {
this.leftTime--
......@@ -145,76 +182,76 @@
this.leftTime = 60
}
},
register () {
register() {
let params = {
areaCode: this.areaData[this.areaIndex],
code: this.code,
englishName: '',
mobile: this.mobile,
password: this.password,
password: this.password
}
if(this.mobile == ''){
if (this.mobile == '') {
return uni.showToast({
title: this.$lang.lang.notices.phone,
icon: 'error',
icon: 'error'
})
}
if(this.code == ''){
if (this.code == '') {
return uni.showToast({
title: this.$lang.lang.notices.code,
icon: 'error',
icon: 'error'
})
}
if(this.password == ''){
if (this.password == '') {
return uni.showToast({
title: this.$lang.lang.notices.password,
icon: 'error',
icon: 'error'
})
}
if(this.passworded == ''){
if (this.passworded == '') {
return uni.showToast({
title: this.$lang.lang.notices.nextPsd,
icon: 'error',
icon: 'error'
})
}else{
} else {
var reg1 = new RegExp('^(?=.*[0-9])(?=.*[a-zA-Z])(.{6,32})$')
if (!reg1.test(this.passworded)) {
return uni.showToast({
title:this.$lang.lang.notices.numPsd,
icon: 'error',
title: this.$lang.lang.notices.numPsd,
icon: 'error'
})
}
}
if(this.password != this.passworded){
if (this.password != this.passworded) {
return uni.showToast({
title: this.$lang.lang.notices.different,
icon: 'none',
icon: 'none'
})
}
if(!this.agree){
if (!this.agree) {
return uni.showToast({
title: this.$lang.lang.notices.chooseService,
icon: 'none',
icon: 'none'
})
}
this.$request.post('/app-api/member/reg', params).then(res => {
if(res.code == 0&&res.data){
this.$request.post('/app-api/member/reg', params).then((res) => {
if (res.code == 0 && res.data) {
uni.setStorageSync('Authorization', res.data.token)
uni.reLaunch({
url: '../index/index'
url: '/pages/my_info/my_info?type=first'
})
}else{
} else {
uni.showToast({
title: res.msg,
icon: 'none',
icon: 'none'
})
}
})
}
}
}
}
</script>
<style>
@import url(../../static/css/register.css);
@import url(../../static/css/register.css);
</style>
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