Blame view

code/finance_web/src/main.js 2.22 KB
a  
谢明辉 committed
1 2 3 4 5 6 7 8
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import ElementUI from 'element-ui'
import Axios from 'axios'
import CollapseTransition from 'element-ui/lib/transitions/collapse-transition';
a  
谢明辉 committed
9 10
import 'element-ui/lib/theme-chalk/index.css'
import '../static/city-data'
谢明辉 committed
11
// import "./mock"
谢明辉 committed
12
import './assets/icons/iconfont.css'
a  
谢明辉 committed
13
import 'babel-polyfill'
a  
谢明辉 committed
14 15 16 17 18 19 20 21


Vue.component(CollapseTransition.name, CollapseTransition)
Vue.config.productionTip = false
Vue.prototype.$Axios = Axios
/* eslint-disable no-new */
Vue.use(ElementUI)

s  
谢明辉 committed
22 23
Vue.filter('twoDecimal', function (value) {
  value = Number(value);
a  
谢明辉 committed
24 25
  return value.toFixed(2);
});
s  
谢明辉 committed
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

let loading;

function startLoading() {
  loading = Vue.prototype.$loading({
    lock: true,
    text: "加载中,请稍等",
    background: "rgba(0, 0, 0, 1)"
  })
}

function finishLoading() {
  loading.close();
}

let requestCount = 0;

function showLoading() {
  if (requestCount === 0) {
    startLoading();
  }
  requestCount++;
};

function hideLoading() {
  if (requestCount <= 0) return;
  requestCount--;
  if (requestCount === 0) {
    finishLoading();
  }
};

Axios.interceptors.request.use(
  (config) => {
    showLoading();
    return config;
  },
  function (err) {
    return Promise.reject(err);
  }
);

Axios.interceptors.response.use((response) => {
谢明辉 committed
69 70 71
  setTimeout(() => {
    hideLoading();
  }, 300);
s  
谢明辉 committed
72 73 74 75 76 77
  return response;
}, function (err) {
  hideLoading()
  return Promise.reject(err);
});

a  
谢明辉 committed
78
{
a  
谢明辉 committed
79
  if (window.location.host == 'localhost:8088') {
a  
谢明辉 committed
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
    Vue.prototype.$disparch_data = {
      code_base_url: "http://192.168.9.162:20080/api/v1/codes/",
      contract_base_url: "http://192.168.9.162:20080/api/v1/financial/contracts/",
      auth_base_url: "http://192.168.9.162:20080/api/v1/auth/"
    }
  } else {
    var url = window.location.host;
    Vue.prototype.$disparch_data = {
      code_base_url: "http://" + url + "/api/v1/codes/",
      contract_base_url: "http://" + url + "/api/v1/financial/contracts/",
      auth_base_url: "http://" + url + "/api/v1/auth/"
    }
  }
}

s  
谢明辉 committed
95 96


a  
谢明辉 committed
97 98 99
new Vue({
  el: '#app',
  router,
s  
谢明辉 committed
100 101 102
  components: {
    App
  },
a  
谢明辉 committed
103 104
  template: '<App/>'
})