Authorize.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. <template>
  2. <view>
  3. <view class='mask' v-if='isShowAuth && code' @click='close'></view>
  4. <view class='Popup' v-if='isShowAuth && code' :style="'top:'+top+'px;'">
  5. <view class="logo-auth">
  6. <image class="image" :src='routine_logo' mode="aspectFit"></image>
  7. </view>
  8. <!--#ifdef H5-->
  9. <text v-if="isWeixin" class='title'>授权提醒</text>
  10. <text v-else class='title'>{{title}}</text>
  11. <!--#endif-->
  12. <!--#ifndef H5-->
  13. <text class='title'>{{title}}</text>
  14. <!--#endif-->
  15. <!--#ifdef H5-->
  16. <text v-if="isWeixin" class='tip'>请授权头像等信息,以便为您提供更好的服务!</text>
  17. <text v-else class='tip'>{{info}}</text>
  18. <!--#endif-->
  19. <!--#ifndef H5-->
  20. <text class='tip'>{{info}}</text>
  21. <!--#endif-->
  22. <view class='bottom flex'>
  23. <text class='item' @click='close'>随便逛逛</text>
  24. <!-- #ifdef MP -->
  25. <button class="item grant" hover-class="none"
  26. @tap="getUserProfile"><text class="text">去授权</text></button>
  27. <!-- #endif -->
  28. <!-- #ifdef APP-PLUS -->
  29. <button class="item grant" @tap="toWecahtAuth">
  30. <text class="text">去登录</text>
  31. </button>
  32. <!-- #endif -->
  33. <!-- #ifdef H5 -->
  34. <button class="item grant" @tap="toWecahtAuth">
  35. <text v-if="isWeixin" class="text">去授权</text>
  36. <text v-else class="text">去登录</text>
  37. </button>
  38. <!-- #endif -->
  39. </view>
  40. </view>
  41. <!-- #ifdef MP -->
  42. <editUserModal :isShow="editModal" @closeEdit="closeEdit" @editSuccess="editSuccess"></editUserModal>
  43. <!-- #endif -->
  44. </view>
  45. </template>
  46. <script>
  47. // +----------------------------------------------------------------------
  48. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  49. // +----------------------------------------------------------------------
  50. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  51. // +----------------------------------------------------------------------
  52. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  53. // +----------------------------------------------------------------------
  54. // | Author: CRMEB Team <admin@crmeb.com>
  55. // +----------------------------------------------------------------------
  56. const app = getApp();
  57. import Cache from '../utils/cache';
  58. import {
  59. getLogo, commonAuth
  60. } from '../api/public';
  61. import { LOGO_URL, USER_INFO, EXPIRES_TIME} from '../config/cache';
  62. import { mapGetters } from 'vuex';
  63. import Routine from '../libs/routine';
  64. import { configMap } from '@/utils/index';
  65. import Auth from '../libs/wechat';
  66. import { toLogin } from '../libs/login';
  67. // #ifdef MP
  68. import editUserModal from '@/components/eidtUserModal/index.vue'
  69. // #endif
  70. export default {
  71. name: 'Authorize',
  72. props: {
  73. isAuto: {
  74. type: Boolean,
  75. default: true
  76. },
  77. isGoIndex: {
  78. type: Boolean,
  79. default: true
  80. },
  81. isShowAuth: {
  82. type: Boolean,
  83. default: false
  84. }
  85. },
  86. components: {
  87. // #ifdef MP
  88. editUserModal
  89. // #endif
  90. },
  91. data() {
  92. return {
  93. title: '用户登录',
  94. info: '请登录,将为您提供更好的服务!',
  95. //#ifdef H5
  96. isWeixin: this.$wechat.isWeixin(),
  97. //#endif
  98. //#ifdef MP
  99. title: '授权提醒',
  100. info: '请授权头像等信息,以便为您提供更好的服务!',
  101. //#endif
  102. canUseGetUserProfile: false,
  103. code: null,
  104. top: 0,
  105. mp_is_new: this.$Cache.get('MP_VERSION_ISNEW') || false,
  106. editModal: false, // 编辑头像信息
  107. }
  108. },
  109. computed: {
  110. ...mapGetters(['isLogin', 'userInfo', 'viewColor']),
  111. ...configMap(['routine_logo'])
  112. },
  113. watch: {
  114. isLogin(n) {
  115. n === true && this.$emit('onLoadFun', this.userInfo);
  116. },
  117. isShowAuth(n) {
  118. this.getCode(this.isShowAuth)
  119. }
  120. },
  121. created() {
  122. this.top = uni.getSystemInfoSync().windowHeight/2-70
  123. if (wx.getUserProfile) {
  124. this.canUseGetUserProfile = true
  125. }
  126. this.setAuthStatus();
  127. this.getCode(this.isShowAuth)
  128. },
  129. methods: {
  130. // #ifdef MP
  131. editSuccess() {
  132. this.editModal = false
  133. this.$emit('onLoadFun', this.userInfo);
  134. },
  135. closeEdit() {
  136. this.editModal = false
  137. },
  138. // #endif
  139. setAuthStatus() {
  140. //#ifdef MP
  141. Routine.authorize().then(res => {
  142. if (res.islogin === false)
  143. this.$emit('onLoadFun', this.userInfo);
  144. }).catch(res => {
  145. if (this.isAuto)
  146. this.$emit('authColse', true);
  147. })
  148. //#endif
  149. },
  150. getCode(n){
  151. // #ifdef MP
  152. if (n) {
  153. uni.showLoading({
  154. title: '正在登录中'
  155. });
  156. Routine.getCode().then(code => {
  157. uni.hideLoading();
  158. this.code = code;
  159. }).catch(e => {
  160. uni.hideLoading();
  161. uni.showToast({
  162. title: '登录失败',
  163. duration: 2000
  164. });
  165. })
  166. } else {
  167. this.code = null;
  168. }
  169. // #endif
  170. // #ifndef MP
  171. if(n){
  172. this.code = 1;
  173. }
  174. // #endif
  175. },
  176. toWecahtAuth(){
  177. toLogin(true);
  178. },
  179. getUserProfile() {
  180. let order_id=''
  181. if(uni.getStorageSync('order_id')){
  182. order_id=uni.getStorageSync('order_id')
  183. }
  184. let self = this;
  185. Routine.getUserProfile()
  186. .then(res => {
  187. let userInfo = res.userInfo;
  188. userInfo.code = this.code;
  189. order_id?userInfo.order_id = order_id:'';
  190. userInfo.spread = app.globalData.spid; //获取推广人ID
  191. // userInfo.spread = 82 //获取推广人ID
  192. userInfo.spread_code = app.globalData.code; //获取推广人分享二维码ID
  193. commonAuth({
  194. auth: {
  195. type:'routine',
  196. auth: userInfo
  197. },
  198. }).then(res=>{
  199. if(res.data.status == 200){
  200. let time = res.data.result.expires_time - Cache.time();
  201. self.$store.commit('UPDATE_USERINFO', res.data.result.user);
  202. self.$store.commit('LOGIN', {token:res.data.result.token, time:time});
  203. self.$store.commit('SETUID', res.data.result.user.uid);
  204. Cache.set(EXPIRES_TIME,res.data.result.expires_time,time);
  205. Cache.set(USER_INFO,res.data.result.user,time);
  206. this.$emit('onLoadFun', res.data.result.user);
  207. if(res.data.result.user.isNew && this.mp_is_new){
  208. this.editModal = true;
  209. }
  210. }else{
  211. uni.setStorageSync('auth_token',res.data.result.key);
  212. return uni.navigateTo({
  213. url:'/pages/users/login/index'
  214. })
  215. }
  216. }).catch(res => {
  217. uni.hideLoading();
  218. uni.showToast({
  219. title: res.message,
  220. icon: 'none',
  221. duration: 2000,
  222. });
  223. });
  224. })
  225. .catch(res => {
  226. uni.hideLoading();
  227. });
  228. },
  229. close() {
  230. let pages = getCurrentPages(),
  231. currPage = pages[pages.length - 1];
  232. this.$emit('authColse', false);
  233. // if (this.isGoIndex) {
  234. // uni.switchTab({
  235. // url: '/pages/index/index'
  236. // });
  237. // } else {
  238. // this.$emit('authColse', false);
  239. // }
  240. },
  241. }
  242. }
  243. </script>
  244. <style scoped lang='scss'>
  245. .Popup {
  246. flex: 1;
  247. align-items: center;
  248. justify-content: center;
  249. width: 500rpx;
  250. background-color: #fff;
  251. position: fixed;
  252. top: 500rpx;
  253. left: 125rpx;
  254. z-index: 1000;
  255. }
  256. .Popup {
  257. .logo-auth {
  258. z-index: -1;
  259. position: absolute;
  260. left: 50%;
  261. top: 0%;
  262. transform: translate(-50%, -50%);
  263. width: 150rpx;
  264. height: 150rpx;
  265. display: flex;
  266. align-items: center;
  267. justify-content: center;
  268. border: 8rpx solid #fff;
  269. border-radius: 50%;
  270. background: #fff;
  271. }
  272. .image {
  273. height: 42rpx;
  274. margin-top: -54rpx;
  275. }
  276. }
  277. .Popup .title {
  278. font-size: 28rpx;
  279. color: #000;
  280. text-align: center;
  281. margin-top: 30rpx;
  282. align-items: center;
  283. justify-content: center;
  284. width: 500rpx;
  285. display: flex;
  286. }
  287. .Popup .tip {
  288. font-size: 22rpx;
  289. color: #555;
  290. padding: 0 24rpx;
  291. margin-top: 25rpx;
  292. display: flex;
  293. align-items: center;
  294. justify-content: center;
  295. }
  296. .Popup .bottom .item {
  297. width: 250rpx;
  298. height: 80rpx;
  299. background-color: #eeeeee;
  300. text-align: center;
  301. line-height: 80rpx;
  302. margin-top: 54rpx;
  303. font-size: 24rpx;
  304. color: #666;
  305. .text{
  306. font-size: 24rpx;
  307. color: #666;
  308. }
  309. }
  310. .Popup .bottom .item.on {
  311. width: 500rpx;
  312. }
  313. .flex {
  314. display: flex;
  315. flex-direction: row;
  316. }
  317. .Popup .bottom .item.grant {
  318. font-weight: bold;
  319. background-color: #E93323;
  320. /* background-color: var(--view-theme); */
  321. border-radius: 0;
  322. padding: 0;
  323. .text{
  324. font-size: 28rpx;
  325. color: #fff;
  326. }
  327. }
  328. .mask {
  329. position: fixed;
  330. top: 0;
  331. right: 0;
  332. left: 0;
  333. bottom: 0;
  334. background-color: rgba(0, 0, 0, 0.65);
  335. z-index: 99;
  336. }
  337. </style>