123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- import Vue from 'vue'
- import App from './App'
- import { config } from './config/config'
- import store from './store'
- import Request from '@/js_sdk/luch-request/luch-request/index.js';
- const http = new Request();
- http.interceptors.response.use((response) => {
- if (response.data.code !== 200) {
- uni.showToast({
- icon:'none',
- mask:false,
- title:`${response.data.message}`,
- duration: 2000
- });
- };
- if(response.data.code == 401){
-
-
-
-
- if(location.href.split('#')[1].indexOf("/pages/product/product") != -1){
- let productID = location.href.split('#')[1].split('=')[1];
-
- uni.setStorage({
- key: 'productID',
- data:productID
- });
- };
-
- uni.showToast({
- title:response.data.message + " 即将跳转到登录页",
- icon:"none",
- duration:2000
- });
- setTimeout(i=>{
- uni.navigateTo({
- url: '/pages/login/login',
- fail:function(err){
- console.log(err)
- }
- });
- },2000);
- return Promise.reject(response)
-
- };
-
- if (response.config.custom.verification) {
- return response.data
- }
-
- return response
- }, (response) => {
- console.log(response);
- return Promise.reject(response)
- });
- import './utils/filter'
- Vue.config.productionTip = false
- const setNavbarTitle = (title,defaultTitle) => {
- uni.setNavigationBarTitle({
- title:title || defaultTitle
- })
- }
- const msg = (title, duration=1500, mask=false, icon='none')=>{
- if(Boolean(title) === false){
- return;
- }
- uni.showToast({
- title,
- duration,
- mask,
- icon
- });
- }
- Vue.prototype.checkLogin = function(backpage, backtype){
- var TOKEN = uni.getStorageSync('token');
- var TOKENHEAD = uni.getStorageSync('tokenhead');
- var USERINFO = uni.getStorageSync('userInfo');
- if(TOKEN == '' || TOKENHEAD == '' || USERINFO == ''){
- uni.redirectTo({url:'/pages/login/login?backpage='+backpage+'&backtype='+backtype});
- return false;
- }
- return [TOKEN,TOKENHEAD,USERINFO];
- }
- import $wxApi from "./wxapi.js";
- Vue.prototype.$wxApi = $wxApi;
- import $pay from "./pay.js";
- Vue.prototype.$pay = $pay
- import isTime from "utils/isTimes.js"
- Vue.prototype.isTime = isTime
- Vue.prototype.$api = {msg,http,setNavbarTitle}
- Vue.prototype.$getimg = config.imgUrl
- Vue.prototype.$placeImg = config.placeImg
- Vue.prototype.$store = store
- Vue.prototype.config = config
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
|