123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <template>
- <view class="container">
- <u-icon class="back-btn" name="arrow-left" color="black" size="20" @click="navBack"></u-icon>
- <view class="wrapper">
- <image style='width:38px;height:38px;margin:223rpx 0 20px 0;' src='@/static/logo.png'></image>
- <h2 class="title Semibold">欢迎使用畅运通-货主端</h2>
- <view
- style='position:relative;width:93%;margin-top:50px;border-bottom:1px solid #E8E9ED;padding:10px;align-items: center;'
- class="flex">
- <view class="phone-before-num NumberMedium">+86</view>
- <view style='width:85%;'>
- <input class='phone' maxlength='11' v-model='phone' placeholder="请输入手机号码" type="number">
- </view>
- </view>
- <view style='margin-top:20px;border-bottom:1px solid #E8E9ED;position:relative;height:40px'>
- <view style='position:relative;'>
- <input class='password' v-model='password' v-if="isShowPassword=='password'" placeholder="请输入密码"
- type="password" @input="check">
- <input maxlength='16' class='password' v-model='password' v-else type="text" placeholder="请输入密码"
- @input="check">
- <image class='yanjingicon' style='width:22px;height:22px;' @click="passWordStatus(1)"
- v-if="isShowPassword=='password'" src="../../static/yioncang.png" mode=""></image>
- <image class='yanjingicon' style='width:22px;height:22px;' @click="passWordStatus(2)" v-else
- src="../../static/xianshi.png" mode=""></image>
- </view>
- </view>
- <button :class='phone!=""&&password!=""?"active":""' @click='passlogin'
- class='Regular verificationCode'>登录</button>
- <button @click='goregister' class='verificationCode active Regular'>手机号一键注册</button>
- <view class='flex' style='color:#6A6A6A;margin-top:10px;'>
- <view style='flex:1;text-align:center;border-right:1px solid #E8E9ED;' class="Regular"
- @click="forgetpass()">忘记密码</view>
- <view @click='gocode' style='flex:1;text-align:center;' class="Regular">验证码登录</view>
- </view>
- </view>
- <u-toast ref="uToast"></u-toast>
- </view>
- </view>
- </template>
- <script>
- import {
- mapMutations
- } from 'vuex';
- import {
- openFSqlite,
- createFSQL,
- selectFSQL,
- addFSQL
- } from '../../util/f.js'
- import helper from '@/common/helper.js';
- import {
- queryData,
- upData,
- initData
- } from '../../util/dbUtil.js'
- import {
- mapState
- } from 'vuex';
- export default {
- data() {
- return {
- isShowPassword: 'password',
- inputContent: null,
- loginType: "wechat",
- phone: '',
- password: '',
- logining: false,
- isPhone: false,
- isApple: true,
- accessToken: '',
- params: {
- encryptedData: '',
- session_key: '',
- iv: '',
- },
- userInfo: {
- nickName: '',
- avatarUrl: '',
- gender: '',
- phone: ''
- },
- type: 'password',
- inputStatus: 'none',
- verifyCode: null,
- sendText: '获取验证码',
- sendDisabled: false,
- system: '',
- platform: '',
- userData: undefined,
- canIUseProfile: false,
- clientid:""
- }
- },
- computed: {
- ...mapState(['clientId'])
- },
- onShow() {
- // this.loginType = "wechat"
- this.$api.logout()
- console.log("login onShow")
- },
- onLoad(options) {
- // #ifdef APP-PLUS
- plus.push.getClientInfoAsync((info) => {
- var name = 'clientId'
- var value = info.clientid
- // this.$store.commit('$uStore', {name,value});
- uni.setStorageSync("clientId", info.clientid)
- this.clientid = info.clientid
- }, err => {});
- // #endif
- if (wx.getUserProfile) {
- console.log('--check getUserProfile--OK');
- this.canIUseProfile = true;
- }
- console.log("login on load")
- // var that = this
- // that.$request.baseRequest('user', 'sendIsApple', {
- // }).then(res => {
- // that.isApple = res.data
- // })
- // uni.getSystemInfo({
- // success:(res) => {
- // // console.log(res)
- // this.system = res.system // ios
- // this.platform = res.platform // 14.3
- // }
- // })
- },
- methods: {
- check(val) {
- console.log(val)
- if (!uni.$u.test.enOrNum(val.detail.value)) {
- this.$refs.uToast.show({
- type: 'error',
- message: "密码只能是字母或数字!"
- })
- this.password = ''
- return
- }
- },
- passWordStatus(type) {
- if (type == 1) {
- this.isShowPassword = 'text'
- } else {
- this.isShowPassword = 'password'
- }
- },
- passlogin(e) {
- var that = this
- if (this.phone == '') {
- that.$refs.uToast.show({
- type: 'error',
- message: "请输入手机号!"
- })
- return
- }
- if (this.password == '') {
- that.$refs.uToast.show({
- type: 'error',
- message: "请输入密码!"
- })
- return
- }
- if (!uni.$u.test.enOrNum(this.password)) {
- that.$refs.uToast.show({
- type: 'error',
- message: "密码只能是字母或数字!"
- })
- return
- }
- that.$request.baseRequest('get', '/cargoOwnerInfo/firstAuthentication', {
- phone: this.phone,
- }).then(res => {
- if (res.data.authenticationStatus == '已禁用') {
- that.$refs.uToast.show({
- type: 'error',
- message: "账号审核中!"
- })
- } else {
- uni.showLoading({
- title: '登录中',
- mask: true
- })
- that.$request.baseRequest('get', '/commonUser/login', {
- phone: that.phone,
- password: that.password,
- loginFlag: 1,
- identification: 2,
- cid:that.clientid
- }).then(res => {
- if (res.code == 200) {
- uni.setStorageSync('userInfo', res.data)
- that.$request.baseRequest('get', '/newsInfo/unreadMessage', {
- reCommonId: that.userInfo.id,
- }).then(res3 => {
- if (res3.data || res3.data == 0) {
- let name = 'myTip';
- let value = res3.data
- if (value == 0) {
- uni.removeTabBarBadge({
- index: 2
- })
- }
- that.$store.commit('$uStore', {
- name,
- value
- });
- if (value != 0 && value) {
- uni.setTabBarBadge({
- index: 2,
- text: value + ""
- })
- }
- }
- })
- that.$store.commit('login', res.data)
- var name = 'userInfo';
- var value = res.data;
- that.$store.commit('$uStore', {
- name,
- value
- });
- uni.switchTab({
- url: '/pages/order/index'
- });
- uni.hideLoading()
- } else {
- uni.hideLoading()
- uni.showToast({
- title: res.message,
- icon: 'none',
- duration: 2000
- })
- }
- })
- .catch(res => {
- uni.hideLoading()
- uni.$u.toast(res.message);
- });
- }
- })
- },
- gocode() {
- uni.navigateTo({
- url: '/pages/public/loginOther'
- })
- },
- forgetpass() {
- uni.navigateTo({
- url: '/pages/mine/settings/editPassword'
- })
- },
- goregister() {
- uni.navigateTo({
- url: '/pages/public/register'
- })
- },
- ...mapMutations(['login']),
- navBack() {
- uni.navigateBack();
- },
- },
- }
- </script>
- <style lang='scss' scoped>
- .apple {
- background: #000;
- width: 35px;
- height: 35px;
- padding: 8px;
- border-radius: 50%;
- vertical-align: middle;
- }
- page {
- background: #fff;
- }
- .phone {
- padding: 20rpx;
- font-size: 28rpx;
- }
- .close {
- width: 20px;
- height: 20px;
- position: absolute;
- right: 0px;
- }
- .yanjingicon {
- position: absolute;
- right: 0;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- .close1 {
- width: 20px;
- height: 20px;
- position: absolute;
- right: 10px;
- top: 0;
- }
- .close2 {
- width: 15px;
- height: 15px;
- position: absolute;
- right: 19px;
- top: 50%;
- transform: translateY(-45%);
- }
- .password {
- border: none;
- outline: none;
- font-size: 28rpx;
- }
- .cuIcon-weixin {
- background: #F5BA3C;
- color: #fff;
- font-size: 18px;
- padding: 9px;
- border-radius: 50%;
- vertical-align: middle;
- margin-right: 5px;
- }
- .container {
- /* padding-top: 85px; */
- position: relative;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- background: url('~@/static/images/mine/bg@2x.png');
- background-size: cover;
- }
- .wrapper {
- position: relative;
- z-index: 90;
- padding-bottom: 40upx;
- height: 100%;
- padding: 0 30px;
- }
- .back-btn {
- position: absolute;
- left: 40upx;
- z-index: 9999;
- padding-top: var(--status-bar-height);
- top: 40upx;
- font-size: 40upx;
- color: red;
- }
- .verificationCode {
- margin-top: 20px;
- background: #F5F6F9;
- color: #AFB3BF;
- }
- .verificationCode:after {
- border: none;
- }
- .verificationCode.active {
- background: #F5BA3C;
- color: #fff;
- }
- .register {
- /* position:absolute; */
- bottom: 20px;
- left: 50%;
- transform: translateX(-50%);
- color: #333333;
- height: 50px;
- line-height: 50px;
- border-radius: 30px;
- border: 1px solid #444444;
- }
- .register:after {
- border: none;
- }
- .phone-before-num {
- font-size: 34rpx;
- color: #333333;
- border-right: 1px solid #E8E9ED;
- padding-right: 20rpx;
- }
- .phone-number {
- margin-left: 20rpx;
- font-size: 34rpx;
- font-family: DINPro-Medium, DINPro;
- font-weight: 500;
- color: #333333;
- }
- /deep/.uni-input-input:disabled {
- background: #fff;
- }
- </style>
|