123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import $store from '../store'
- import request from '@/utils/request.js'
- const isUserId = function() {
- var userId=uni.getStorageSync("wxOpenData").loginInfo.uid;
-
- if(!userId){
- uni.navigateTo({
- url:'../login/login'
- })
- }
- }
- const automaticlogin = function() {
-
- var that=this;
- const extConfig = uni.getExtConfigSync();
-
-
- return new Promise((resolve, reject) => {
- if($store.state.userInfo){
- resolve()
- }else{
- uni.login({
- provider: 'weixin',
- success: function (loginRes) {
-
- request.http('miniApp2/sys/getWxOpenID', {
- code:loginRes.code,
- unionId:extConfig.unionId
- },'GET').then(res => {
- $store.commit('mutationswxOpenData', res.data);
- var themeColor= res.data.themeColor
- uni.setStorageSync('themeColor',themeColor);
- if(res.data.loginInfo){
- $store.commit('mutationsuserInfo', res.data.loginInfo.openUser)
- }
- resolve()
- })
- }
- });
- }
-
- })
-
-
- }
- function noMultipleClicks(methods, info) {
-
- let that = this;
- if (that.noClick) {
-
- that.noClick= false;
- if((info && info !== '') || info ==0) {
-
- methods(info);
- } else {
- methods();
- }
- setTimeout(()=> {
- that.noClick= true;
- }, 3000)
- } else {
-
- }
- }
- function getExtStoreId(type){
- try{
- var extConfig = uni.getExtConfigSync ? uni.getExtConfigSync() : {shopId:'默认的门店id'};
-
-
-
-
-
-
- console.log(extConfig,'extJson对象');
-
- return extConfig
- }catch(err){
- console.log(err,'getExtStoreId__error')
- }
- }
- export default {
- commonData:{
- companyType:1,
- },
- automaticlogin,
- isUserId,
- getExtStoreId,
- noMultipleClicks,
- }
|