| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323 |
- <template>
- <view class="content">
- <view class="header">
- <image :src="staticUrl+'logo.png'"></image>
- </view>
- <view class="list">
- <view class="list-call">
- <image class="img" src="/static/shilu-login/1.png"></image>
- <input class="sl-input" v-model="phone" type="number" maxlength="11" placeholder="手机号" />
- </view>
- <view class="list-call">
- <image class="img" src="/static/shilu-login/2.png"></image>
- <input class="sl-input" v-model="password" type="text" maxlength="32" placeholder="登录密码" :password="!showPassword" />
- <image class="img" :src="showPassword?'/static/shilu-login/op.png':'/static/shilu-login/cl.png'" @tap="display"></image>
- </view>
- <view class="list-call">
- <image class="img" src="/static/shilu-login/3.png"></image>
- <input class="sl-input" v-model="code" type="number" maxlength="4" placeholder="验证码" />
- <view class="yzm" :class="{ yzms: second>0 }" @tap="getcode">{{yanzhengma}}</view>
- </view>
- <view class="list-call" v-if="iskq==1">
- <image class="img" src="/static/shilu-login/4.png"></image>
- <input class="sl-input" v-model="invitation" type="text" maxlength="12" placeholder="邀请码 没有留空" />
- </view>
- </view>
- <view class="button-login" hover-class="button-hover" @tap="bindLogin">
- <text style="font-size: 40upx;">注册</text>
- </view>
- <view class="agreement">
- <image @tap="agreementSuccess" :src="agreement==true?'/static/shilu-login/ty1.png':'/static/shilu-login/ty0.png'"></image>
- <text @tap="agreementSuccess"> 同意</text>
- <navigator open-type="navigate">《软件用户协议》</navigator>
- </view>
- </view>
- </template>
- <script>
- export default {
- onLoad(e) {
- this.staticUrl=this.configs.staticUrl
- if(e.uid){
- this.invitation=e.uid
- }
- this.getList();
- },
- onUnload() {
- clearInterval(js)
- this.second = 0;
- },
- data() {
- return {
- phone: '',
- password: '',
- code: '',
- invitation: '',
- agreement: true,
- showPassword: false,
- second: 0,
- iskq:0,
- staticUrl:'',
- js:null,
- };
- },
- computed: {
- yanzhengma() {
- if (this.second == 0) {
- return '获取验证码';
- } else {
- if (this.second < 10) {
- return '重新获取0' + this.second;
- } else {
- return '重新获取' + this.second;
- }
- }
- }
- },
- onUnload() {
- this.clear()
- },
- methods: {
- display() {
- this.showPassword = !this.showPassword
- },
-
- agreementSuccess() {
-
- this.agreement = !this.agreement;
- },
- async getcode(){
- var _this= this
- if (this.phone.length != 11) {
- uni.showToast({
- icon: 'none',
- title: '手机号不正确'
- });
- return;
- }
- if(this.second > 0) return;
- if(this.second==0){
- this.second = 60;
- // 请求服务器,发送验证码
- //let [err,res] =await this.$httpas.post('/api/ems/index',{'phone':this.phone});
- let [err,res] =await this.$httpas.post('/api/sms/send',{'mobile':this.phone,'event':'register'});
- if (!this.$httpas.errorCheck(err,res)) return;
- if(res.data.ok == 1){
- uni.setStorage({//缓存配置信息
- key: 'yzmss',
- data: res.data.data
- })
- uni.showToast({ title: res.data.msg,icon:"none" });
- }else{
- this.second=0
- uni.showToast({ title: res.data.msg,icon:"none" });
- }
- }
- _this.js = setInterval(function() {
- _this.second--;
- if (_this.second <= 0) {
- _this.clear()
- }
- }, 1000)
- if(this.second > 0) return;
- },
- clear(){
- clearInterval(this.js)
- this.js = null
- this.second = 0
- },
- bindLogin() {
- if(this.agreement == false) {
- uni.showToast({
- icon: 'none',
- title: '请先阅读《软件用户协议》'
- });
- return;
- }
- if (this.phone.length != 11) {
- uni.showToast({
- icon: 'none',
- title: '手机号不正确'
- });
- return;
- }
- if(this.password.length < 6) {
- uni.showToast({
- icon: 'none',
- title: '密码不正确'
- });
- return;
- }
- if(!this.code || this.code.length != 4) {
- uni.showToast({
- icon: 'none',
- title: '验证码不正确'
- });
- return;
- }
- this.zc();
- },
- async zc(){
- let _this=this;
- let data = {'mobile':this.phone,'code':this.code,'username':this.phone,'password':this.password,'pid':this.invitation};
- if(this.openid){
- data.openid=this.openid
- data.nickName=this.nickName
- data.avatarUrl=this.avatarUrl
- }
- let [err,res] =await this.$httpas.post('/api/user/reg',data);
- if (!this.$httpas.errorCheck(err,res)) return;
-
- if(res.data.code === 1){
- uni.showModal({
- title: '',
- content: res.data.msg,
- showCancel: false,
- confirmText: "确定",
- success: function (res) {
- if (res.confirm) {
- uni.navigateBack();
- } else if (res.cancel) {
-
- }
- }
- });
- }else{
- uni.showToast({ title: res.data.msg,icon:"none" });
- }
- },
- getList() {
- let data = {};
- var limit=15;
- data.limit=limit
- data.ishot=2
- uni.request({
- url: this.configs.webUrl+'/api/video/lists',
- data: data,
- success: data => {
- //console.log(data.data)
- uni.setStorage({//缓存配置信息
- key: 'config',
- data: data.data.config
- })
- if(uni.getStorageSync("config").iskq){
- this.iskq=uni.getStorageSync("config").iskq;
- }
- },
- fail: (data, code) => {
- }
- });
- },
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .header {
- width: 161rpx;
- height: 161rpx;
- background: rgba(63, 205, 235, 1);
- box-shadow: 0rpx 12rpx 13rpx 0rpx rgba(63, 205, 235, 0.47);
- border-radius: 50%;
- margin-top: 30rpx;
- margin-left: auto;
- margin-right: auto;
- }
- .header image {
- width: 161rpx;
- height: 161rpx;
- border-radius: 50%;
- }
- .list {
- display: flex;
- flex-direction: column;
- padding-top: 50rpx;
- padding-left: 70rpx;
- padding-right: 70rpx;
- }
- .list-call {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 100rpx;
- color: #333333;
- border-bottom: 0.5px solid #e2e2e2;
- }
- .list-call .img {
- width: 40rpx;
- height: 40rpx;
- }
- .list-call .sl-input {
- flex: 1;
- text-align: left;
- font-size: 32rpx;
- margin-left: 16rpx;
- }
- .yzm {
- color: #FF7D13;
- font-size: 24rpx;
- line-height: 64rpx;
- padding-left: 10rpx;
- padding-right: 10rpx;
- width: auto;
- height: 64rpx;
- border: 1rpx solid #FFA800;
- border-radius: 50rpx;
- }
- .yzms {
- color: #999999 !important;
- border: 1rpx solid #999999;
- }
- .button-login {
- color: #FFFFFF;
- font-size: 34rpx;
- width: 470rpx;
- height: 100rpx;
- line-height: 100rpx;
- background: linear-gradient(-90deg, rgba(75, 196, 93, 1), rgba(188, 226, 158, 1));
- box-shadow: 0rpx 0rpx 13rpx 0rpx rgba(164, 217, 228, 0.2);
- border-radius: 50rpx;
- text-align: center;
- margin-left: auto;
- margin-right: auto;
- margin-top: 100rpx;
- }
- .button-hover {
- background: linear-gradient(-90deg, rgba(75, 196, 93, 1), rgba(188, 226, 158, 1));
- }
- .agreement {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- font-size: 30rpx;
- margin-top: 80rpx;
- color: #FFA800;
- text-align: center;
- height: 40rpx;
- line-height: 40rpx;
- }
- .agreement image {
- width: 40rpx;
- height: 40rpx;
- }
- </style>
|