123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <template>
- <view>
- <u-navbar title="" autoBack placeholder></u-navbar>
- <view class="card_login">
- <view class="card_head_logo">
- <image class="mine_image" src="../static/logo.png" mode=""></image>
- <view class="welcome_title">欢迎注册茂坤冷链运输</view>
- </view>
- <u-form labelPosition="left" :model="formList" :rules="rules" ref="uForm">
- <u-form-item label="类型" prop="type" labelWidth="80" borderBottom ref="item1">
- <u-radio-group v-model="formList.type" placement="row">
- <u-radio shape="circle" :customStyle="{marginRight: '20px'}" v-for="(item, index) in radiolist"
- :key="index" :label="item.name" :name="item.value"></u-radio>
- </u-radio-group>
- </u-form-item>
- <u-form-item label="手机号" prop="phone" labelWidth="80" borderBottom ref="item1">
- <u-input v-model="formList.phone" border="none" placeholder="请填写手机号"></u-input>
- </u-form-item>
- <u-form-item label="验证码" prop="verifyCode" labelWidth="80" borderBottom>
- <u-input v-model="formList.verifyCode" border="none" placeholder="请填写验证码"></u-input>
- <u-button slot="right" @tap="getCode" :text="tips" type="success" size="mini"
- :disabled="disabled1"></u-button>
- </u-form-item>
- <u-form-item label="密码" prop="password" labelWidth="80" borderBottom ref="item1">
- <u-input v-show="isText === true" placeholder="请填写密码" border="none" v-model="formList.password"
- class="input_class_pwd" :password="true">
- <template slot="suffix" v-if="formList.password">
- <u-icon name="eye-off" @click="isText = false" size="20"></u-icon>
- </template>
- </u-input>
- <u-input v-show="isText === false" placeholder="请填写密码" border="none" v-model="formList.password"
- class="input_class_pwd" :password="false">
- <template slot="suffix" v-if="formList.password">
- <u-icon name="eye-fill" @click="isText = true" size="20"></u-icon>
- </template>
- </u-input>
- </u-form-item>
- </u-form>
- <u-code ref="uCode" @change="codeChange" seconds="90" @start="disabled1 = true"
- @end="disabled1 = false"></u-code>
- <view class="title_register" @click="goLogin">去登录</view>
- <view class="card_btn">
- <u-button type="primary" :disabled="disabled" text="注册" @click="getRegister"></u-button>
- </view>
- </view>
- <!-- <view class="wx_card">
- <view class="card_btn_wx frame">
- <u-icon name="weixin-fill" size="26" color="#07c160"></u-icon>
- </view>
- <span class="title_login_wx">微信登录</span>
- </view> -->
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- radiolist: [{
- name: '私人',
- value: 1,
- }, {
- name: '商户',
- value: 0,
- }],
- formList: {
- type: 1,
- phone: '',
- verifyCode: '',
- password: '',
- },
- tips: '',
- disabled1: false,
- rules: {
- phone: {
- type: 'string',
- required: true,
- message: '请填写手机号',
- trigger: ['blur']
- },
- verifyCode: {
- type: 'string',
- required: true,
- message: '请填写验证码',
- trigger: ['blur']
- },
- password: {
- type: 'string',
- required: true,
- message: '请填写密码',
- trigger: ['blur']
- },
- },
- isText: true,
- }
- },
- computed: {
- disabled() {
- if (this.formList.phone == '' || this.formList.verifyCode == '' || this.formList.password == '') {
- return true;
- } else {
- return false;
- }
- },
- },
- methods: {
- // 注册
- getRegister() {
- this.$refs.uForm.validate().then(res => {
- uni.showLoading();
- this.$api.post('/api/applet/register', {
- phone: this.formList.phone,
- password: this.formList.password,
- verifyCode: this.formList.verifyCode
- }).then((res) => {
- if (res.code == 200) {
- uni.showToast({
- title: res.msg,
- icon: 'none',
- duration: 2000
- });
- this.formList.phone = ''
- this.formList.password = ''
- this.formList.verifyCode = ''
- } else {
- this.formList.phone = ''
- this.formList.password = ''
- this.formList.verifyCode = ''
- uni.showToast({
- title: res.data.msg,
- icon: 'none',
- duration: 2000
- });
- }
- uni.hideLoading();
- })
- }).catch(errors => {
- // uni.$u.toast('校验失败')
- })
- },
- getCode() {
- if (this.$refs.uCode.canGetCode) {
- // 模拟向后端请求验证码
- if (this.formList.phone) {
- uni.showLoading({
- title: '正在获取验证码'
- })
- // 通知验证码组件内部开始倒计时
- this.$refs.uCode.start();
- this.$api.get('/api/verify-code', {
- phone: this.formList.phone,
- }).then(res => {
- if (res.code == 200) {
- // 这里此提示会被this.start()方法中的提示覆盖
- uni.$u.toast('验证码已发送');
- }
- uni.hideLoading();
- })
- } else {
- uni.$u.toast('请先输入手机号');
- }
- } else {
- uni.$u.toast('倒计时结束后再发送');
- }
- },
- codeChange(text) {
- this.tips = text;
- },
- // 登录
- goLogin() {
- // uni.redirectTo({
- // url: '/pages/login'
- // })
- uni.navigateBack({
- delta: 1
- });
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #fff !important;
- }
- .welcome_title {
- font-size: 46rpx;
- font-weight: 600;
- margin-bottom: 60rpx;
- margin-top: 10rpx;
- }
- .card_head_logo {
- margin-top: 50rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .card_login {
- padding: 20rpx 40rpx;
- }
- .mine_image {
- width: 100rpx;
- height: 100rpx;
- }
- .title_register {
- margin-top: 20rpx;
- display: flex;
- justify-content: flex-end;
- font-size: 28rpx;
- color: #494949;
- }
- .card_hint {
- margin-top: 60rpx;
- display: flex;
- align-items: flex-start;
- }
- .agreement_title {
- font-size: 30rpx;
- color: #333;
- }
- .protocol_title {
- color: #1177ff;
- }
- .card_btn {
- margin-top: 50rpx;
- }
- .card_checkbox {
- margin-top: 5rpx;
- position: relative;
- cursor: pointer;
- }
- .message {
- display: none;
- position: absolute;
- padding: 5px 8px;
- border: 1px solid #494949;
- border-radius: 9px;
- top: -36px;
- font-size: 12px;
- width: 110px;
- background: #494949;
- color: #fff;
- left: -6px;
- }
- .message::after {
- content: '';
- position: absolute;
- left: 8px;
- top: 100%;
- border: 8px solid transparent;
- border-top: 6px solid #494949;
- margin-left: -2px;
- }
- </style>
|