123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095 |
- <template>
- <view class="container">
- <view class="left-bottom-sign"></view>
- <view class="back-btn yticon icon-zuojiantou-up" @click="navBack"></view>
- <view class="right-top-sign"></view>
- <!-- 设置白色背景防止软键盘把下部绝对定位元素顶上来盖住输入框等 -->
- <view class="wrapper">
- <view class="left-top-sign">LOGIN</view>
- <view class="welcome">
- 欢迎回来!
- </view>
- <!-- <button v-if="!loginType" class="confirm-btn" @click="chooseLoginType('wechat')" :disabled="logining">微信快速登录(推荐)</button>
- <button v-if="!loginType" class="confirm-btn" @click="chooseLoginType('phone')" :disabled="logining">手机注册登录</button> -->
- <!-- #ifdef MP-WEIXIN -->
- <!-- 旧版本方式 -->
- <block v-if="canIUseProfile==false" >
- <button v-if="loginType === 'wechat'" class="confirm-btn" open-type="getUserInfo" @getuserinfo="miniWechatLogin"
- :disabled="logining">微信授权登录</button>
- </block>
- <!-- 新版本方式 -->
- <block v-else>
- <button v-if="loginType === 'wechat'" class="confirm-btn" @tap="miniWechatLogin"
- :disabled="logining" >微信授权登录</button>
- </block>
- <!-- #endif -->
- <!-- #ifdef APP-PLUS -->
- <block v-if="isApple">
- <button v-if="loginType === 'wechat'" class="confirm-btn" @click="wechatLogin" :disabled="logining">微信授权登录</button>
- <button v-if="loginType === 'wechat' && isApple && platform == 'ios' && system >= '13'" class="confirm-btn" @click="appleLogin" :disabled="logining">通过Apple登录</button>
- </block>
- <block v-else>
- <view class="input-content">
- <view class="cu-form-group">
- <view class="title"><text class="cuIcon-my"></text></view>
- <input placeholder="请输入用户名" v-model="phone" name="input" ></input>
- </view>
- <view class="cu-form-group">
- <view class="title"><text class="cuIcon-lock"></text></view>
- <input placeholder="请输入登录密码" password v-model="password" name="input" ></input>
- </view>
- <view style='padding:0;' class="cu-form-group">
- <view></view>
- <view @click='forgetpass'>忘记登录密码?</view>
- </view>
- <button style='width:100%;' @click='phonelogin' class="cu-btn bg-gradual-green">登录</button>
- </view>
- <!-- <view style=' position: fixed;bottom: 9px;width: 100%;text-align-last: center;'>
- <text @click="wechatLogin" class="cuIcon-weixin"></text>
- <image class='apple' src="https://taohaoliang.oss-cn-beijing.aliyuncs.com/tmp/apple.png" @click="appleLogin" alt=""></image>
- </view> -->
- </block>
- <!-- #endif -->
- <!-- #ifdef H5 -->
- <button v-if="loginType === 'wechat'" class="confirm-btn" @click="wechatH5Login" :disabled="logining">微信授权登录</button>
- <button v-if="loginType === 'wechat' && isApple && platform == 'ios' && system >= '13'" class="confirm-btn" @click="appleLogin" :disabled="logining">通过Apple登录</button>
- <!-- #endif -->
- <button v-if="loginType === 'phone'" class="confirm-btn" @click="toLogin" :disabled="logining">登录</button>
- <view v-if="loginType === 'phone'" class="forget-section">
- 忘记密码?
- </view>
- <!-- #ifdef MP-WEIXIN -->
- <div v-if="isPhone" class="alert" >
- <div class="auth">
- <div class="apply">
- <span class="">需要获取您的手机权限</span>
- <p>(请开启手机权限)</p>
- </div>
- <button class="confirm" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">确认</button>
- </div>
- </div>
- <!-- #endif -->
- <!-- #ifdef APP-PLUS -->
- <neil-modal
- :show="isPhone"
- @close="cancel"
- :style="{display:inputStatus}"
- title="绑定手机号"
- showConfirm="true"
- showCancel="true"
- @confirm="confirm"
- >
- <view class="cu-form-group">
- <input v-model="inputContent" style="margin:20upx;" type="mobile" placeholder="请输入手机号" />
- </view>
- <view class="cu-form-group">
- <view class="title">验证码</view>
- <input type="mobile" value="" placeholder="6位验证码" maxlength="6"
- data-key="verifyCode" @input="verifyCodeInput" style="width: 60%;"></input>
- <button class='cu-btn bg-green shadow':disabled="sendDisabled" @click="doGetVerify">{{sendText}}</button>
- </view>
- </neil-modal>
- <!-- #endif -->
- </view>
- <view v-if="loginType === 'phone'" class="register-section">
- 还没有账号?
- <text @click="toRegist">马上注册</text>
- </view>
- </view>
- </template>
- <script>
- import {
- mapMutations
- } from 'vuex';
- import { openFSqlite, createFSQL, selectFSQL, addFSQL } from '../../util/f.js'
- import { queryData, upData, initData } from '../../util/dbUtil.js'
- export default {
- data() {
- return {
- inputContent: null,
- loginType: "wechat",
- phone: '',
- password: '',
- logining: false,
- isPhone: false,
- isApple: true,
- accessToken:'',
- params:{
- encryptedData:'',
- session_key:'',
- iv:'',
- },
- userInfo:{
- nickName:'',
- avatarUrl:'',
- gender:'',
- phone:''
- },
- inputStatus:'none',
- verifyCode:null,
- sendText:'获取验证码',
- sendDisabled: false,
- system:'',
- platform:'',
- userData:undefined,
- canIUseProfile:false
- }
- },
- onShow() {
- // this.loginType = "wechat"
- this.$api.logout()
- },
- onLoad(options) {
-
- if( wx.getUserProfile ){
- console.log('--check getUserProfile--OK');
- this.canIUseProfile = true;
- }
- console.log("login on load")
- var that = this
- that.$api.request('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: {
- forgetpass(){
- uni.navigateTo({
- url:'/pages/public/reset'
- })
- },
- phonelogin(){
- var that=this
- uni.showLoading({
- title: '登录中',
- mask:true
- })
- console.log("clientid",that.clientId)
- this.$api.request('user', 'login',{
- password:that.password,
- phone:that.phone,
- cid:that.clientId
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- console.log(res)
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- that.liangxinLogin()
- uni.switchTab({
- url: '/pages/sale/information'
- });
- uni.hideLoading()
- })
- },
- appleLogin(){
- var that=this
- uni.getProvider({
- service: 'oauth',
- success: function (res) {
- // console.log(res.provider)
- if(~res.provider.indexOf('apple')) {
- uni.login({
- provider: 'apple',
- success: loginRes => {
- uni.getUserInfo({
- provider: 'apple',
- success: userInfoRes => {
-
- that.$api.request('user', 'thirdPartLogin', {
- loginType: 4/* */,
- raw: JSON.stringify(userInfoRes.userInfo)
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- console.log("thirdPartLogin:"+res.data.phone)
- that.accessToken = res.data.accessToken
- that.logining = false
- uni.getUserInfo({
- lang: 'zh_CN',
- success: (e) => {
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- e.userInfo.nickname = e.userInfo.nickName
- e.userInfo.cid = uni.getStorageSync("clientId")
- that.$api.request('user', 'syncUserInfo', e.userInfo).then(syncRes => {
- //同步过后
- res.data.nickname = e.userInfo.nickName
- res.data.avatarUrl = e.userInfo.avatarUrl
- res.data.gender = e.userInfo.gender
-
- if(!res.data.phone){
- res.data.phone = e.userInfo.phone
- }
-
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- })
- },
- complete: (e) => {
- uni.hideLoading()
-
- if(!res.data.phone||res.data.phone==""||res.data.phone ==undefined){
- that.isPhone = true//显示自定义的获取手机权限提示框
- that.inputStatus = 'inline'
- that.inputContent = ''
- }
- else{
- uni.switchTab({
- url: '/pages/sale/sale'
- });
- console.log("complete")
- }
- }
- })
-
- })
- console.log('获取用户信息成功'+JSON.stringify(userInfoRes))
- }
- })
- },
- fail: err => {
- console.log('apple登录失败' + JSON.stringify(err))
- uni.showToast({
- title:'登录失败',
- icon:'none'
- })
- }
- })
- }
- },
- fail: err => {
- uni.showToast({
- title:'登录失败',
- icon:'none'
- })
- }
- })
- },
- doGetVerify() {
- const that = this
- var phone = this.inputContent;
- if (!phone || phone.length != 11) {
- uni.showToast({
- title:'请输入正确手机号!',
- icon:'none'
- })
- return
- }
-
- that.$api.request('user', 'sendVerifyCode', {
- phone: phone,
- }).then(res => {
- that.sendDisabled = true
- let sec = 60
- let interval = setInterval(() => {
- sec--;
- that.sendText = sec + 's后重发'
- if (sec <= 0) {
- that.sendDisabled = false
- that.sendText = "获取验证码"
- clearInterval(interval)
- }
- }, 1000)
- })
-
- },
- verifyCodeInput(e){
- this.verifyCode = e.detail.value
- },
- cancel() {
- this.inputShow = false
- this.inputStatus = 'none'
- this.isPhone = false
- },
- confirm() {
- var that = this
- if (!this.inputContent || this.inputContent.length != 11) {
- uni.showToast({
- title:'请输入正确手机号!',
- icon:'none'
- })
- return
- }
- if (!this.verifyCode) {
- uni.showToast({
- title:'请输入验证码!',
- icon:'none'
- })
- return
- }
- this.$api.request('user', 'mergeUser', {
- phone: that.inputContent,
- verifyCode:that.verifyCode
- },failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.accessToken = res.data.accessToken
- that.$api.setUserInfo(res.data)
- that.logining = false
- uni.getUserInfo({
- lang: 'zh_CN',
- success: (e) => {
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- e.userInfo.nickname = e.userInfo.nickName
- e.userInfo.cid = uni.getStorageSync("clientId")
- console.log(e.userInfo)
- that.$api.request('user', 'syncUserInfo', e.userInfo).then(syncRes => {
- //同步过后
- res.data.nickname = e.userInfo.nickName
- res.data.avatarUrl = e.userInfo.avatarUrl
- res.data.gender = e.userInfo.gender
- res.data.phone = e.userInfo.phone
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- that.liangxinLogin()
- })
- },
- complete: (e) => {
- uni.switchTab({
- url: '/pages/sale/information'
- });
- uni.hideLoading()
- that.isPhone=false
-
- uni.navigateBack()
- }
- })
- })
-
- },
- ...mapMutations(['login']),
- inputChange(e) {
- const key = e.currentTarget.dataset.key;
- this[key] = e.detail.value;
- },
- chooseLoginType(type) {
- this.loginType = type
- },
- navBack() {
- uni.navigateBack();
- },
- toRegist() {
- uni.redirectTo({
- url: '/pages/public/register'
- })
- },
- ///发起消息订阅
- requestSubscribe(){
- const that = this
- wx.requestSubscribeMessage({
- tmplIds: ['xL_uZEqJz4QP1FbnlzQWAiO2zVBn3Qeu8JwLVOU3hU0','8cVkckXi_8zfHeScXRHhjN6cgZFYYCWIMPDTiPWagXY','IE7WxBsv-fDvPWSrng-97lGWtvZf9rHuECBlhRLlWxI'],//
- success :(res)=>{
- console.log("订阅消息 成功 "+res);
- },
- fail :(errMsg) =>{
- console.log("订阅消息 失败 "+errMsg.errMsg);
- },
- complete:(errMsg)=>{
- console.log("订阅消息 完成 "+errMsg);
-
- }
-
- });
- },
- getPhoneNumber(e) {
-
- console.log(e)
- if (e.mp.detail.errMsg==="getPhoneNumber:ok") {
- this.isPhone = false
- this.params.iv = e.mp.detail.iv
- this.params.encryptedData = e.mp.detail.encryptedData
- this.params.session_key = this.accessToken
- console.log(this.params)
- this.getTokenAsync(this.params)
- }
-
- },
- // 请求后获取token
- async getTokenAsync(params) {
- let that = this
- this.$api.request('user', 'getPhoneNumber', params).then(res => {
- if(res.data.phoneNumber){
- that.userInfo.phone = res.data.phoneNumber
- }
- if(res.data.unionId){
- that.userInfo.unionId = res.data.unionId
- }
-
- that.userInfo.cid = uni.getStorageSync("clientId")
- console.log(that.userInfo)
- that.$api.request('user', 'syncUserInfo', that.userInfo).then(syncRes => {
- uni.setStorageSync('userInfo', that.userInfo)
- that.$store.commit('login', that.userInfo)
- that.$api.setUserInfo(that.userInfo)
- uni.hideLoading()
- that.liangxinLogin()
- })
- if(res.data.phoneNumber){
- uni.switchTab({
- url: '/pages/sale/information'
- });
- }
-
- })
- },
- async toLogin() {
- this.verifyCode = ''
- const that = this
- if (that.phone.length !== 11) {
- that.$api.msg('请输入11位中国手机号')
- } else if (that.password.length < 8) {
- that.$api.msg('密码至少8位')
- } else {
- that.logining = true;
- //#ifdef MP-WEIXIN
- //若是小程序平台,则获取到openId。整个过程是静默完成的
- uni.login({
- provider: 'weixin',
- success: (wxres => {
- that.$api.request('user', 'login', {
- phone: that.phone,
- password: that.password,
- loginType: 1,
- raw: JSON.stringify(wxres)
- }, failres => {
- that.logining = false
- uni.showToast({
- title: failres.errmsg,
- icon: "none"
- });
- }).then(res => {
- that.logining = false
- that.$store.commit('login', res.data)
- uni.setStorageSync('userInfo', res.data)
- if (that.$api.prePage().lodaData) {
- that.$api.prePage().loadData()
- }
- uni.navigateBack()
- })
- })
- })
- //#endif
- //#ifdef APP-PLUS || H5
- //若是App登录,则不需要保存OpenId。可直接登录
- that.$api.request('user', 'login', {
- phone: that.phone,
- password: that.password,
- }, failres => {
- that.logining = false
- uni.showToast({
- title: failres.errmsg,
- icon: "none"
- });
- }).then(res => {
- that.logining = false
- that.$store.commit('login', res.data)
- uni.setStorageSync('userInfo', res.data)
- if (that.$api.prePage().lodaData) {
- that.$api.prePage().loadData()
- }
- uni.navigateBack()
- })
- //#endif
- }
- },
-
- miniWechatLogin(e) {
- const that = this
- //旧版本方式
- if( this.canIUseProfile == false ){
- console.log("旧版本方式")
- //获取授权信息
- if(e.detail.userInfo){
-
- console.log('用户允许了授权')
- console.log( e.detail.userInfo ); //1.拿到基本的微信信息!!
-
- uni.showLoading({
- title: '加载中',
- mask:true
- })
- that.logining = true
- let loginType = 1
- let userInfo = e.detail.userInfo
- uni.login({
- provider: 'weixin',
- success: (wxres => {
- that.logining = false
- that.$api.request('user', 'thirdPartLogin', {
- loginType: loginType,
- raw: JSON.stringify(wxres)
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- that.accessToken = res.data.accessToken
- that.$api.setUserInfo(res.data)
- that.userInfo = res.data
- uni.getUserInfo({
- lang: 'zh_CN',
- provider: 'weixin',
- withCredentials:true,
- success: (e) => {
- that.params.iv = e.iv
- that.params.encryptedData = e.encryptedData
- that.params.session_key = that.accessToken
- console.log(this.params)
- that.getTokenAsync(this.params)
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- e.userInfo.nickname = e.userInfo.nickName
- if(e.userInfo.phone == undefined){
- e.userInfo.phone = ''
- }
- e.userInfo.cid = uni.getStorageSync("clientId")
- console.log(e.userInfo)
- that.$api.request('user', 'syncUserInfo', e.userInfo).then(syncRes => {
- //同步过后
- res.data.nickname = userInfo.nickName
- res.data.avatarUrl = userInfo.avatarUrl
- res.data.gender = userInfo.gender
- if(userInfo.phone){
- res.data.phone = userInfo.phone
- that.liangxinLogin()
- }
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- that.$api.setUserInfo(res.data)
-
- uni.hideLoading()
- // uni.navigateBack()
- })
- },
- complete: (e) => {
- uni.hideLoading()
-
- if(!res.data.phone||res.data.phone==""||res.data.phone ==undefined){
- that.isPhone = true//显示自定义的获取手机权限提示框
- that.inputStatus = 'inline'
- that.inputContent = ''
- }
- else{
- uni.setStorageSync('PageCur', "sale");
- // uni.switchTab({
- // url: '/pages/sale/sale'
- // });
- uni.switchTab({
- url: '/pages/sale/information'
- });
- console.log("complete")
- }
- }
- })
- })
- }),
-
- })
-
- }
-
- //新版本方式
- }else{
- console.log("新版本方式")
- uni.showLoading({
- title: '加载中',
- mask:true
- })
- that.logining = true
- let loginType = 1
- wx.getUserProfile({
- desc : '用于完善用户资料',
- lang : 'zh_CN',
- success : function( proRes ){
- console.log('proRes.userInfo',proRes.userInfo)
- uni.login({
- provider: 'weixin',
- success: (wxres => {
- that.logining = false
- that.$api.request('user', 'thirdPartLogin', {
- loginType: loginType,
- raw: JSON.stringify(wxres)
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- console.log('res+++++',res)
- that.accessToken = res.data.accessToken
- that.$api.setUserInfo(res.data)
- that.userInfo = res.data
- // that.params.iv = proRes.iv
- // that.params.encryptedData = proRes.encryptedData
- // that.params.session_key = that.accessToken
- // console.log(that.params)
- // that.getTokenAsync(that.params)
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- if(proRes.userInfo.phone == undefined){
- proRes.userInfo.phone = ''
- }
- res.data.cid = uni.getStorageSync("clientId")
- that.$api.request('user', 'syncUserInfo', res.data).then(syncRes => {
- //同步过后
- res.data.nickname = proRes.userInfo.nickName
- res.data.avatarUrl = proRes.userInfo.avatarUrl
- res.data.gender = proRes.userInfo.gender
- if(proRes.userInfo.phone){
- res.data.phone = proRes.userInfo.phone
- }
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- that.$api.setUserInfo(res.data)
- uni.hideLoading()
- if(!that.userInfo.phone||that.userInfo.phone==""||that.userInfo.phone ==undefined){
- that.isPhone = true//显示自定义的获取手机权限提示框
- that.inputStatus = 'inline'
- that.inputContent = ''
- }
- else{
- uni.setStorageSync('PageCur', "sale");
- // uni.switchTab({
- // url: '/pages/sale/sale'
- // });
- uni.reLaunch({
- url: '/pages/sale/information'
- });
- console.log("complete")
- that.liangxinLogin()
- }
- })
- console.log( 'wx.getUserProfile=>用户允许了授权' );
- })
- })
- })
-
- },
- fail : function( res ){
- console.log('wx.getUserProfile=>用户拒绝了授权');
- console.log( res );
-
- }
- });
-
- }
-
- // 获取用户的当前设置,判断是否点击了“总是保持以上,不在询问”
- // wx.getSetting({
- // withSubscriptions: true,//是否获取用户订阅消息的订阅状态,默认false不返回
- // success(res){
- // debugger
- // if(res.subscriptionsSetting.mainSwitch){
-
- // }else{
-
- // }
- // }
- // })
- // uni.showModal({
- // title: '温馨提示',
- // content: '为更好的与您沟通,小程序需要向您发送通知消息',
- // confirmText:"同意",
- // cancelText:"拒绝",
- // showCancel: false,
- // success: function (res) {
- // if (res.confirm) {
- // //调用订阅消息
- // that.requestSubscribe();
- // } else if (res.cancel) {
- // ///显示第二个弹说明一下
- // wx.showModal({
- // title: '温馨提示',
- // content: '拒绝后您将无法获取实时的交易、物流消息',
- // confirmText:"知道了",
- // showCancel:false,
- // success: function (res) {
- // uni.openSetting({ // 打开设置页
- // success(res) {
- // console.log(res.authSetting)
- // }
- // });
- // }
- // });
- // }
- // }
- // });
-
-
- },
- wechatLogin() {
- const that = this
- that.logining = true
- let loginType = 2
- uni.showLoading({
- title: '正在同步消息',
- mask:true
- })
- uni.login({
- provider: 'weixin',
- success: (wxres => {
- that.$api.request('user', 'thirdPartLogin', {
- loginType: loginType,
- raw: JSON.stringify(wxres)
- }, failres => {
- that.$api.msg(failres.errmsg)
- uni.hideLoading()
- }).then(res => {
- console.log("thirdPartLogin:"+res.data.phone)
- that.accessToken = res.data.accessToken
- that.logining = false
- uni.getUserInfo({
- lang: 'zh_CN',
- success: (e) => {
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- e.userInfo.nickname = e.userInfo.nickName
- e.userInfo.cid = uni.getStorageSync("clientId")
- console.log(e.userInfo)
- that.$api.request('user', 'syncUserInfo', e.userInfo).then(syncRes => {
- //同步过后
- res.data.nickname = e.userInfo.nickName
- res.data.avatarUrl = e.userInfo.avatarUrl
- res.data.gender = e.userInfo.gender
- if(res.data.phone){
- res.data.phone = e.userInfo.phone
- that.liangxinLogin()
- }
-
- uni.setStorageSync('userInfo', res.data)
- that.$store.commit('login', res.data)
- })
- },
- complete: (e) => {
- uni.hideLoading()
-
- if(!res.data.phone||res.data.phone==""||res.data.phone ==undefined){
- that.isPhone = true//显示自定义的获取手机权限提示框
- that.inputStatus = 'inline'
- that.inputContent = ''
- }
- else{
- // uni.switchTab({
- // url: '/pages/sale/sale'
- // });
- uni.switchTab({
- url: '/pages/sale/information'
- });
- console.log("complete")
-
- }
-
- }
- })
-
- })
- })
- })
- },
- wechatH5Login() {
- const that = this
- let href = window.location.origin
- let page = that.$api.prePage()
- let prePath = '/pages/index/index'
- if (page) {
- prePath = page.__page__.path
- }
- window.location = 'https://open.weixin.qq.com/connect/oauth2/authorize?'
- + 'appid=' + that.$api.defConfig().h5Appid + '&redirect_uri=' + escape(href) + '&response_type=code&scope=snsapi_userinfo&state=' + escape(prePath) + '#wechat_redirect'
- },
- liangxinLogin(){
- const that = this
- var userInfoTmp = uni.getStorageSync("userInfo")
- console.log('userInfoTmp',userInfoTmp)
- that.$socket.login(userInfoTmp.phone, "123456", null, res=>{
- console.log('粮信登录',res)
- if (res.success) {
- that.$socket.showLoginDialog = false
- // 缓存用户
- that.userData = res.response.data
- console.log('userData',that.userData)
- that.$u.vuex("userData", that.userData);
- // 缓存通讯录
- that.$socket.listGuests(that.userData.user.operId, res => {
- // #ifdef APP-PLUS
- createFSQL(that.userData.user.operId).then();
- let contact = res.response.data;
- contact.forEach(c=>{
- c.members.forEach(m=>{
- m.name = c.name;
- addFSQL(m, that.userData.user.operId).then();
- })
- })
- // #endif
- that.$u.vuex('firendItem', res.response.data)
- });
-
- // 缓存消息列表
- that.$socket.queryOnlineMessage(that.userData.user.operId,q =>{
- let data = q.response.data;
- for(var i in data){
- initData(data[i].groupMsg.list, data[i].groupInfo.chatId);
- }
- })
-
- // 缓存链接
- that.$socket.getLinks(that.userData.user.operId, res=>{
- that.$u.vuex('linkItem',res.response.data)
- });
-
-
- // // 跳转到消息列表
- // that.$u.route({
- // url: 'pages/home/home',
- // type: 'switchTab'
- // });
- } else {
- uni.showModal({
- title:res.reason + ",请稍后再试",
- showCancel:false
- })
- }
- });
- }
- },
- }
- </script>
- <style lang='scss' scoped>
- .apple{
- background: #000;
- width: 35px;
- height: 35px;
- padding: 8px;
- border-radius: 50%;
- vertical-align: middle;
- }
- page {
- background: #fff;
- }
- .cuIcon-weixin{
- background: #39b54a;
- color: #fff;
- font-size: 18px;
- padding: 9px;
- border-radius: 50%;
- vertical-align: middle;
- margin-right:5px;
- }
- .alert{
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- overflow: hidden;
- outline: 0;
- -webkit-overflow-scrolling: touch;
- background-color: rgb(0, 0, 0);
- filter: alpha(opacity=60);
- background-color: rgba(0, 0, 0, 0.6);
- z-index: 9999;
- .auth{
- position: absolute;
- top: 50%;
- left: 50%;
- width: 80%;
- height: 340rpx;
- border-radius: 20rpx;
- transform:translate(-50%,-50%);
- background: #fff;
- display: flex;
- flex-direction: column;
- .apply{
- margin: 0rpx auto;
- padding: 60rpx 40rpx;
- flex:1;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- font-size: 34rpx;
- color:rgb(34,34,34);
- p{
- font-size:30rpx
- }
- }
- .confirm{
- border-top: 1rpx solid rgb(221,221,221);
- text-align: center;
- height: 100rpx;
- width: 100%;
- line-height: 100rpx;
- font-size: 34rpx;
- color:rgb(255,145,37);
- }
- }
- }
- .container {
- padding-top: 115px;
- position: relative;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- background: #fff;
- }
- .wrapper {
- position: relative;
- z-index: 90;
- background: #fff;
- padding-bottom: 40upx;
- height:100%;
- }
- .back-btn {
- position: absolute;
- left: 40upx;
- z-index: 9999;
- padding-top: var(--status-bar-height);
- top: 40upx;
- font-size: 40upx;
- color: $font-color-dark;
- }
- .left-top-sign {
- font-size: 120upx;
- color: $page-color-base;
- position: relative;
- left: -16upx;
- }
- .right-top-sign {
- position: absolute;
- top: 80upx;
- right: -30upx;
- z-index: 95;
- &:before,
- &:after {
- display: block;
- content: "";
- width: 400upx;
- height: 80upx;
- background: #b4f3e2;
- }
- &:before {
- transform: rotate(50deg);
- border-radius: 0 50px 0 0;
- }
- &:after {
- position: absolute;
- right: -198upx;
- top: 0;
- transform: rotate(-50deg);
- border-radius: 50px 0 0 0;
- /* background: pink; */
- }
- }
- .left-bottom-sign {
- position: absolute;
- left: -270upx;
- bottom: -320upx;
- border: 100upx solid #d0d1fd;
- border-radius: 50%;
- padding: 180upx;
- }
- .welcome {
- position: relative;
- left: 50upx;
- top: -90upx;
- font-size: 46upx;
- color: #555;
- text-shadow: 1px 0px 1px rgba(0, 0, 0, .3);
- }
- .input-content {
- padding: 0 60upx;
- }
- .input-item {
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- padding: 0 30upx;
- background: $page-color-light;
- height: 120upx;
- border-radius: 4px;
- margin-bottom: 50upx;
- &:last-child {
- margin-bottom: 0;
- }
- .tit {
- height: 50upx;
- line-height: 56upx;
- font-size: $font-sm+2upx;
- color: $font-color-base;
- }
- input {
- height: 60upx;
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- width: 100%;
- }
- }
- .confirm-btn {
- width: 630upx;
- height: 76upx;
- line-height: 76upx;
- border-radius: 50px;
- margin-top: 70upx;
- background: $uni-color-primary;
- color: #fff;
- font-size: $font-lg;
- &:after {
- border-radius: 100px;
- }
- }
- .forget-section {
- font-size: $font-sm+2upx;
- color: $font-color-spec;
- text-align: center;
- margin-top: 40upx;
- }
- .register-section {
- position: absolute;
- left: 0;
- bottom: 50upx;
- width: 100%;
- font-size: $font-sm+2upx;
- color: $font-color-base;
- text-align: center;
- text {
- color: $font-color-spec;
- margin-left: 10upx;
- }
- }
- </style>
|