login.vue 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <view class="login-content">
  3. <view class="login-content-info">
  4. <view class="login-bgm":style="{backgroundImage:`url(${staticUrl}/img/tuan-index-bg.png)`}">
  5. <image class="login-logo" :src="staticUrl+'/img/logo.png'" mode="scaleToFill"></image>
  6. <text>{{ title }}</text>
  7. </view>
  8. <view class="login-info">
  9. <view class="login-info-box">
  10. <text class="login-info-title">账号密码登陆</text>
  11. <view class="login-info-form">
  12. <u--form
  13. labelWidth="0"
  14. :borderBottom="false"
  15. :model="form"
  16. :rules="rules"
  17. ref="uForm">
  18. <u-form-item prop="mobile">
  19. <u--input
  20. v-model="form.mobile"
  21. placeholder="请输入账号"
  22. border="surround"
  23. shape="circle"
  24. prefixIcon="account-fill"
  25. prefixIconStyle="font-size: 22px;color: #909399"
  26. ></u--input>
  27. </u-form-item>
  28. <u-form-item prop="password">
  29. <u--input
  30. v-model="form.password"
  31. placeholder="请输入账号密码"
  32. border="surround"
  33. shape="circle"
  34. prefixIcon="lock-fill"
  35. :password="true"
  36. prefixIconStyle="font-size: 22px;color: #909399"
  37. ></u--input>
  38. </u-form-item>
  39. </u--form>
  40. </view>
  41. <view class="login-info-submit">
  42. <u-button
  43. class="login-info-submit-but"
  44. @click="submit()"
  45. :loading="loading"
  46. loadingText="登录中..."
  47. >登录</u-button>
  48. </view>
  49. <view class="login-info-tip">暂不支持自行注册</view>
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. export default {
  57. data() {
  58. return {
  59. code:'',
  60. staticUrl:this.$commonConfig.staticUrl,
  61. title: '《伟大转折》剧目团购系统',
  62. logoUrl: this.$commonConfig.staticUrl + "login/logo.png",
  63. loading: false,
  64. backUrl:null,
  65. form: {
  66. mobile: '',
  67. password: '',
  68. },
  69. rules: {
  70. 'mobile': {
  71. type: 'string',
  72. required: true,
  73. message: '请填写账号',
  74. trigger: ['blur', 'change']
  75. },
  76. 'password': {
  77. type: 'string',
  78. required: true,
  79. message: '请填写密码',
  80. trigger: ['blur', 'change']
  81. },
  82. },
  83. }
  84. },
  85. onReady() {
  86. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  87. this.$refs.uForm.setRules(this.rules)
  88. },
  89. onLoad(e) {
  90. let that = this;
  91. uni.getStorage({
  92. key: 'backUrl',
  93. success: function (res) {
  94. // console.log('getStorage',res);
  95. },
  96. complete(res) {
  97. if(res.data){
  98. that.backUrl = '/'+res.data;
  99. }else{
  100. that.backUrl = '/pages/index/index';
  101. }
  102. console.log('backUrl',that.backUrl);
  103. }
  104. });
  105. uni.getStorage({
  106. key:'mobile',
  107. success: (res) => {
  108. that.form.mobile = res.data
  109. }
  110. })
  111. // console.log('accessToken=====',this.vuex_user_info.accessToken);
  112. let accessToken = this.vuex_user_info?.accessToken;
  113. if(accessToken){
  114. this.$u.api.teamLoginCheck().then(res=>{
  115. if(this.backUrl.includes('login/login')||this.backUrl.includes('main/index')){
  116. this.backUrl = '/pages/index/index'
  117. }
  118. uni.reLaunch({url: this.backUrl});
  119. }).catch(err=>{
  120. console.log('teamLoginCheck',err);
  121. uni.$u.vuex('vuex_member_info', {});
  122. uni.$u.vuex('vuex_user_info', {});
  123. this.$u.toast(err.msg)
  124. this.redirectToAuth()
  125. })
  126. }else{
  127. if(!e.code) { // 微信第三方登录失败
  128. this.redirectToAuth()
  129. }else {
  130. this.code = e.code
  131. }
  132. }
  133. // 测试环境填充用户名密码
  134. if(process.env.NODE_ENV=='development'){
  135. this.form.mobile = '13682277062';
  136. this.form.password = '123456';
  137. }
  138. },
  139. onShow() {
  140. },
  141. methods: {
  142. /** 公众号 微信授权登录 */
  143. redirectToAuth() {
  144. try{
  145. window.location.href = this.$commonConfig.authUrl;
  146. }catch(e){
  147. alert(`redirectToAuth e:${e}`)
  148. }
  149. },
  150. /**
  151. *
  152. * 提交登录
  153. *
  154. */
  155. async submit(e) {
  156. let _this = this;
  157. let wxinfo = null
  158. let data = {}
  159. wxinfo = await this.$u.api.wxinfoH5({code:this.code});
  160. let { openid } = wxinfo.data;
  161. this.form.h5OpenId = openid;
  162. this.loading = true
  163. this.$refs.uForm.validate().then(res => {
  164. this.$u.toast('校验通过');
  165. uni.setStorage({
  166. key:'mobile',
  167. data:this.form.mobile
  168. });
  169. this.$u.api.teamLogin(this.form).then(res=>{
  170. this.loading = false
  171. // console.log('res',res.data);
  172. this.$u.vuex('vuex_user_info', res.data);
  173. uni.reLaunch({url: this.backUrl});
  174. }).catch(err=>{
  175. console.log('login',err);
  176. this.$u.toast(err.msg);
  177. this.loading = false;
  178. setTimeout(()=>{
  179. this.redirectToAuth();
  180. },1500)
  181. })
  182. }).catch(errors => {
  183. this.$u.toast('校验失败')
  184. this.loading = false
  185. })
  186. }
  187. }
  188. }
  189. </script>
  190. <style lang="scss" scoped>
  191. .login-content {
  192. width: 100%;
  193. height: 100vh;
  194. position: relative;
  195. box-sizing: border-box;
  196. --bgm-height: 630rpx;
  197. }
  198. /** 背景 */
  199. .login-content-box {
  200. width: 100%;
  201. height: 100%;
  202. box-sizing: border-box;
  203. }
  204. .login-bgm {
  205. width: 100%;
  206. height: 630rpx;
  207. // background-image: url("#{$image-beas-url}login/bgm.png");
  208. background-size: 100% auto;
  209. background-repeat: no-repeat;
  210. box-sizing: border-box;
  211. display: flex;
  212. flex-direction: column;
  213. justify-content: center;
  214. align-items: center;
  215. .login-logo {
  216. width: 240rpx;
  217. height: 172rpx;
  218. padding: 50rpx 0;
  219. }
  220. >text {
  221. font-size: 32rpx;
  222. font-family: SourceHanSansCN, SourceHanSansCN;
  223. font-weight: bold;
  224. color: #FFD788;
  225. }
  226. }
  227. .login-info {
  228. width: 100%;
  229. height: calc(100% - var(--bgm-height) + 40rpx);
  230. background-color: #fff;
  231. border-radius: 28rpx 28rpx 0rpx 0rpx;
  232. position: absolute;
  233. bottom: 0;
  234. left: 0;
  235. z-index: 22;
  236. box-sizing: border-box;
  237. padding: 80rpx;
  238. .login-info-box {
  239. width: 100%;
  240. height: 100%;
  241. display: flex;
  242. flex-direction: column;
  243. box-sizing: border-box;
  244. .login-info-title {
  245. font-size: 32rpx;
  246. font-family: SourceHanSansCN, SourceHanSansCN;
  247. font-weight: bold;
  248. color: #2D2D2D;
  249. padding-bottom: 40rpx;
  250. }
  251. .login-info-form {
  252. }
  253. .login-info-submit {
  254. width: 100%;
  255. height: 80rpx;
  256. padding: 40rpx 0 20rpx;
  257. flex-shrink: 0;
  258. .login-info-submit-but {
  259. display: flex;
  260. justify-content: center;
  261. align-items: center;
  262. border-radius: 40rpx;
  263. width: 100% !important;
  264. height: 100% !important;
  265. background-color: #ed0000;
  266. color: #fff;
  267. }
  268. }
  269. .login-info-tip {
  270. width: 100%;
  271. text-align: center;
  272. font-size: 24rpx;
  273. font-family: SourceHanSansCN, SourceHanSansCN;
  274. font-weight: 400;
  275. color: #C2C2C2;
  276. }
  277. }
  278. }
  279. </style>