login.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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. },
  117. user:{
  118. token:res.data.data.token,
  119. id:res.data.data.id,
  120. gender:res.data.data.gender,
  121. realName:res.data.data.realName,
  122. mobile:res.data.data.mobile,
  123. headUrl:res.data.data.headUrl,
  124. teamId:res.data.data.teamId,
  125. enterpriseId:res.data.data.enterpriseId,
  126. enterpriseName:res.data.data.enterpriseName,
  127. teamName:res.data.data.teamName,
  128. referrerId:res.data.data.referrerId,
  129. teamQuestionnaireId:res.data.data.teamQuestionnaireId,
  130. isRegister:res.data.data.isRegister
  131. }
  132. }))
  133. })
  134. }
  135. }else that.$showToast(res.data.msg)
  136. })
  137. }
  138. })
  139. },
  140. loginSuccessFn(res){
  141. uni.setStorageSync('token',res.data.data.token);
  142. uni.setStorageSync('userInfo',JSON.stringify({
  143. id:res.data.data.id,
  144. gender:res.data.data.gender,
  145. realName:res.data.data.realName,
  146. mobile:res.data.data.mobile,
  147. headUrl:res.data.data.headUrl,
  148. teamId:res.data.data.teamId,
  149. enterpriseId:res.data.data.enterpriseId,
  150. enterpriseName:res.data.data.enterpriseName,
  151. teamName:res.data.data.teamName,
  152. referrerId:res.data.data.referrerId,
  153. teamQuestionnaireId:res.data.data.teamQuestionnaireId,
  154. isRegister:res.data.data.isRegister
  155. }));
  156. uni.hideLoading();
  157. this.$showToast('登录成功');
  158. setTimeout(()=>{
  159. uni.reLaunch({ url:'/pages/home' })
  160. },1500)
  161. },
  162. changeAgree(){
  163. this.agree = !this.agree
  164. }
  165. }
  166. }
  167. </script>
  168. <style scoped lang="scss">
  169. .page{
  170. background: #FFFFFF;
  171. display: flex;
  172. flex-direction: column;
  173. box-sizing: border-box;
  174. .topbg{
  175. width: 100%;
  176. height: 584rpx;
  177. position: fixed;
  178. top: 0;
  179. left: 0;
  180. }
  181. .content{
  182. padding: 0 45rpx;
  183. flex: 1;
  184. overflow-y: auto;
  185. display: flex;
  186. flex-direction: column;
  187. justify-content: space-between;
  188. position: relative;
  189. .c_top{
  190. padding: 0 20rpx;
  191. &>image{
  192. height: 88rpx;
  193. margin-top: 76rpx;
  194. }
  195. .title{
  196. font-family: PingFang-SC, PingFang-SC;
  197. font-weight: bold;
  198. font-size: 48rpx;
  199. color: #252525;
  200. line-height: 67rpx;
  201. margin-top: 36rpx;
  202. }
  203. .tip{
  204. font-family: PingFangSC, PingFang SC;
  205. font-weight: 400;
  206. font-size: 30rpx;
  207. color: #646464;
  208. line-height: 47rpx;
  209. margin-top: 20rpx;
  210. }
  211. .item{
  212. margin-top: 64rpx;
  213. .qa{
  214. box-sizing: border-box;
  215. p{
  216. font-family: PingFang-SC, PingFang-SC;
  217. font-weight: bold;
  218. font-size: 32rpx;
  219. color: #252525;
  220. line-height: 45rpx;
  221. &:last-child{
  222. font-weight: 400;
  223. font-size: 28rpx;
  224. color: #646464;
  225. line-height: 47rpx;
  226. }
  227. }
  228. }
  229. }
  230. }
  231. .c_bottom{
  232. .qx_btn{
  233. margin-top: 36rpx;
  234. }
  235. .agree{
  236. margin-top: 64rpx;
  237. image{
  238. width: 30rpx;
  239. height: 30rpx;
  240. }
  241. .text{
  242. margin-left: 8rpx;
  243. font-family: PingFangSC, PingFang SC;
  244. font-weight: 400;
  245. font-size: 24rpx;
  246. color: #95A5B1;
  247. line-height: 44rpx;
  248. span{
  249. color: #002846;
  250. }
  251. }
  252. }
  253. }
  254. }
  255. }
  256. .code{
  257. width: 700rpx;
  258. padding: 40rpx 60rpx 40rpx;
  259. border-radius: 32rpx 32rpx 0 0;
  260. box-sizing: border-box;
  261. p{
  262. font-size: 40rpx;
  263. font-weight: bold;
  264. margin-bottom: 50rpx;
  265. }
  266. .cbtns{
  267. margin-top: 50rpx;
  268. &>view{
  269. width: calc(50% - 20rpx);
  270. }
  271. .qx_btn{
  272. background: #f1f1f1;
  273. }
  274. }
  275. }
  276. </style>