login.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. <template>
  2. <view class="page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='创衡汇教练AI智能体' bgColor="transparent" backUrl="/pages/home"></cus-header>
  4. <image class="topbg" :src="imgBase+'login_top_bg.png'"></image>
  5. <view class="content">
  6. <view class="c_top">
  7. <image :src="imgBase+'logo.png'" mode="heightFix"></image>
  8. <view class="title">Hi,我是创衡团队教练助手</view>
  9. <view class="tip">我能为你提供PERILL团队发展动态评估、报告分析和团队教练督导对话,期待和你的共创~</view>
  10. <view class="item adf">
  11. <view class="qa">
  12. <p>PERILL团队发展动态评估</p>
  13. <p>基于你对相关陈述的评分,从六个关键维度客观呈现团队现状。</p>
  14. </view>
  15. </view>
  16. <view class="item adf">
  17. <view class="qa">
  18. <p>AI教练督导对话</p>
  19. <p>保持正念教练督导心态,对你的PERILL团队发展动态评估或团队教练计划进行启发式沟通。</p>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="c_bottom">
  24. <button class="zt_btn" open-type="getPhoneNumber" @getphonenumber="decryptPhoneNumber">手机号一键登录</button>
  25. <view class="qx_btn" style="margin-top: 40rpx;" @tap="codeLogin" v-if="!channelType">授权码登录</view>
  26. <view class="agree adfacjc" @click="changeAgree">
  27. <image :src="imgBase+'not_select.png'" v-if="!agree"></image>
  28. <image :src="imgBase+'selected.png'" v-else></image>
  29. <view class="text">已阅读并同意我们的<span>“服务协议与隐私政策”</span></view>
  30. </view>
  31. </view>
  32. </view>
  33. <u-popup :show="show" @close="cancel" mode="center" :round="20">
  34. <view class="code">
  35. <p>授权码登录</p>
  36. <u-input v-model="phone" placeholder="请输入手机号"></u-input>
  37. <view style="margin-top: 20rpx;"></view>
  38. <u-input v-model="code" placeholder="请输入授权码"></u-input>
  39. <view class="cbtns adfacjb">
  40. <view class="zt_btn" @tap="toCodeLogin">登录</view>
  41. <view class="qx_btn" @tap="cancel">取消</view>
  42. </view>
  43. </view>
  44. </u-popup>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data(){
  50. return {
  51. show:false,
  52. phone:'',
  53. code:'',
  54. agree:false,
  55. channelType:''
  56. }
  57. },
  58. created() {
  59. if(uni.getStorageSync('channelType')) this.channelType = uni.getStorageSync('channelType')
  60. },
  61. methods:{
  62. decryptPhoneNumber(e){
  63. if(!this.agree) return this.$showToast('请勾选协议与政策')
  64. if(uni.getStorageSync('token')){
  65. uni.reLaunch({
  66. url:'/pages/home'
  67. })
  68. return
  69. }
  70. if(e.detail.code) this.wxLogin(e.detail.code);
  71. },
  72. codeLogin(){
  73. if(!this.agree) return this.$showToast('请勾选协议与政策')
  74. this.show = true;
  75. },
  76. toCodeLogin(){
  77. if(!this.$reg.mobile(this.phone)) return this.$showToast('请输入正确的手机号!')
  78. if(!this.code) return this.$showToast('请输入授权码!')
  79. this.$api.get('/wx/login-code',{
  80. checkCode:this.code,
  81. phone:this.phone
  82. }).then(res=>{
  83. if(res.data.code!==0) return this.$showToast(res.data.msg)
  84. this.loginSuccessFn(res);
  85. })
  86. },
  87. cancel(){
  88. this.code = '';
  89. this.show = false;
  90. },
  91. wxLogin(code){
  92. uni.showLoading({ title:'登录中' });
  93. let that = this;
  94. wx.login({
  95. success(res){
  96. that.$api.get('/wx/login',{
  97. code:res.code,
  98. phoneCode:code,
  99. channelType:that.channelType
  100. },false).then(res=>{
  101. if(res.data.code===0){
  102. if(res.data.data.isRegister==1){
  103. if(uni.getStorageSync('newUser')) uni.removeStorageSync('newUser')
  104. that.loginSuccessFn(res);
  105. } else{
  106. uni.setStorageSync('newUser',true)
  107. uni.navigateTo({
  108. url:'/pages/registerInfo?params='+encodeURIComponent(JSON.stringify({
  109. info:{
  110. channelType:that.channelType,
  111. mobile:res.data.data.mobile||'',
  112. isRegister:res.data.data.isRegister,
  113. referrerId:res.data.data.referrerId||'',
  114. teamQuestionnaireId:res.data.data.teamQuestionnaireId||'',
  115. userId:res.data.data.id||'',
  116. openId:res.data.data.openId||'',
  117. },
  118. user:{
  119. token:res.data.data.token,
  120. openId:res.data.data.openId,
  121. id:res.data.data.id,
  122. gender:res.data.data.gender,
  123. realName:res.data.data.realName,
  124. mobile:res.data.data.mobile,
  125. headUrl:res.data.data.headUrl,
  126. teamId:res.data.data.teamId,
  127. enterpriseId:res.data.data.enterpriseId,
  128. enterpriseName:res.data.data.enterpriseName,
  129. teamName:res.data.data.teamName,
  130. referrerId:res.data.data.referrerId,
  131. teamQuestionnaireId:res.data.data.teamQuestionnaireId,
  132. isRegister:res.data.data.isRegister
  133. }
  134. }))
  135. })
  136. }
  137. }else that.$showToast(res.data.msg)
  138. })
  139. }
  140. })
  141. },
  142. loginSuccessFn(res){
  143. uni.setStorageSync('token',res.data.data.token);
  144. uni.setStorageSync('userInfo',JSON.stringify({
  145. id:res.data.data.id,
  146. openId:res.data.data.openId,
  147. gender:res.data.data.gender,
  148. realName:res.data.data.realName,
  149. mobile:res.data.data.mobile,
  150. headUrl:res.data.data.headUrl,
  151. teamId:res.data.data.teamId,
  152. enterpriseId:res.data.data.enterpriseId,
  153. enterpriseName:res.data.data.enterpriseName,
  154. teamName:res.data.data.teamName,
  155. referrerId:res.data.data.referrerId,
  156. teamQuestionnaireId:res.data.data.teamQuestionnaireId,
  157. isRegister:res.data.data.isRegister
  158. }));
  159. uni.hideLoading();
  160. this.$showToast('登录成功');
  161. setTimeout(()=>{
  162. uni.reLaunch({ url:'/pages/home' })
  163. },1500)
  164. },
  165. changeAgree(){
  166. this.agree = !this.agree
  167. }
  168. }
  169. }
  170. </script>
  171. <style scoped lang="scss">
  172. .page{
  173. background: #FFFFFF;
  174. display: flex;
  175. flex-direction: column;
  176. box-sizing: border-box;
  177. .topbg{
  178. width: 100%;
  179. height: 584rpx;
  180. position: fixed;
  181. top: 0;
  182. left: 0;
  183. }
  184. .content{
  185. padding: 0 45rpx;
  186. flex: 1;
  187. overflow-y: auto;
  188. display: flex;
  189. flex-direction: column;
  190. justify-content: space-between;
  191. position: relative;
  192. .c_top{
  193. padding: 0 20rpx;
  194. &>image{
  195. height: 88rpx;
  196. margin-top: 76rpx;
  197. }
  198. .title{
  199. font-family: PingFang-SC, PingFang-SC;
  200. font-weight: bold;
  201. font-size: 48rpx;
  202. color: #252525;
  203. line-height: 67rpx;
  204. margin-top: 36rpx;
  205. }
  206. .tip{
  207. font-family: PingFangSC, PingFang SC;
  208. font-weight: 400;
  209. font-size: 30rpx;
  210. color: #646464;
  211. line-height: 47rpx;
  212. margin-top: 20rpx;
  213. }
  214. .item{
  215. margin-top: 64rpx;
  216. .qa{
  217. box-sizing: border-box;
  218. p{
  219. font-family: PingFang-SC, PingFang-SC;
  220. font-weight: bold;
  221. font-size: 32rpx;
  222. color: #252525;
  223. line-height: 45rpx;
  224. &:last-child{
  225. font-weight: 400;
  226. font-size: 28rpx;
  227. color: #646464;
  228. line-height: 47rpx;
  229. }
  230. }
  231. }
  232. }
  233. }
  234. .c_bottom{
  235. .qx_btn{
  236. margin-top: 36rpx;
  237. }
  238. .agree{
  239. margin-top: 64rpx;
  240. image{
  241. width: 30rpx;
  242. height: 30rpx;
  243. }
  244. .text{
  245. margin-left: 8rpx;
  246. font-family: PingFangSC, PingFang SC;
  247. font-weight: 400;
  248. font-size: 24rpx;
  249. color: #95A5B1;
  250. line-height: 44rpx;
  251. span{
  252. color: #002846;
  253. }
  254. }
  255. }
  256. }
  257. }
  258. }
  259. .code{
  260. width: 700rpx;
  261. padding: 40rpx 60rpx 40rpx;
  262. border-radius: 32rpx 32rpx 0 0;
  263. box-sizing: border-box;
  264. p{
  265. font-size: 40rpx;
  266. font-weight: bold;
  267. margin-bottom: 50rpx;
  268. }
  269. .cbtns{
  270. margin-top: 50rpx;
  271. &>view{
  272. width: calc(50% - 20rpx);
  273. }
  274. .qx_btn{
  275. background: #f1f1f1;
  276. }
  277. }
  278. }
  279. </style>