123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- 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;
- var extConfig = uni.getExtConfigSync();
-
- console.log("automaticlogin")
- console.log(extConfig)
-
- return new Promise((resolve, reject) => {
- if($store.state.userInfo){
- resolve()
- }else{
- uni.login({
- provider: 'weixin',
- success: function (loginRes) {
-
- uni.showLoading({
- title: '加载中'
- });
- request.http('miniApp2/sys/getWxOpenID', {
- code:loginRes.code,
- unionId:extConfig.unionId
- },'GET').then(res => {
- uni.hideLoading();
- $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')
- }
- }
- function formateTimeStamp (timeStamp) {
- var hour;
- var min;
- var seconds;
- let today = new Date()
- if (Number(new Date(timeStamp).getTime()) < Number(new Date().getTime())) {
- const zTime = {
- hour: 0,
- min: 0,
- seconds: 0
- }
- return zTime
- return false
- }
- let startTime = new Date(timeStamp.replace(/-/g, '/'))
- let shenyu = startTime.getTime() - today.getTime()
- let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000))
-
-
- hour = parseInt(shenyu / (60 * 60 * 1000))
- var afterHour = shenyu - hour * 60 * 60 * 1000
- min = parseInt(afterHour / (60 * 1000))
-
- seconds= parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - hour * 60 * 60 * 1000 - min * 60 * 1000) / 1000)
- if (hour < 10) {
- hour = '0' + hour
- }
-
- if (min < 10) {
- min = '0' + min;
- }
- if (seconds < 10) {
- seconds = '0' + seconds;
- }
- const restTime = {
- hour: hour,
- min: min,
- seconds: seconds
- }
-
-
- return restTime
- }
- function countdown (timeStamp) {
- var hour;
- var min;
- var seconds;
- let today = new Date()
- let startTime = new Date(timeStamp.replace(/-/g, '/'))
- let shenyu = startTime.getTime() - today.getTime()
- let shengyuD = parseInt(shenyu / (60 * 60 * 24 * 1000))
-
-
- hour = parseInt(shenyu / (60 * 60 * 1000))
- var afterHour = shenyu - hour * 60 * 60 * 1000
- min = parseInt(afterHour / (60 * 1000))
-
- seconds= parseInt((shenyu - shengyuD * 60 * 60 * 24 * 1000 - hour * 60 * 60 * 1000 - min * 60 * 1000) / 1000)
- if (hour < 10) {
- hour = '0' + hour
- }
- console.log(hour)
- if (min < 10) {
- min = '0' + min;
- }
- if (seconds < 10) {
- seconds = '0' + seconds;
- }
- const restTime = {
- hour: hour,
- min: min,
- seconds: seconds
- }
- var txt = hour+':'+min+':'+seconds;
- console.log(txt)
- return txt
- }
- export default {
- commonData:{
- companyType:1,
- },
- automaticlogin,
- isUserId,
- getExtStoreId,
- noMultipleClicks,
- formateTimeStamp,
- countdown
- }
|