main.js 1.64 KB
import Vue from "vue";
import App from "./App.vue";
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import router from "./router";
import store from "./store";
import resetCss from "./assets/resetElementCss/index.css";
import api from "./api/install";
import "./assets/css/public.css";
import echarts from "echarts";
import "./assets/icon/icon1/iconfont.css";
import "./assets/icon/icon2/iconfont.css";
import { buildCode } from "../src/assets/js/buildcodes";
import moment from "moment";
Vue.prototype.$echarts = echarts;
Vue.prototype.$moment = moment;
Vue.prototype.$buildCode = buildCode;
Vue.prototype.oParse = new XML.ObjTree();
Vue.use(api);
Vue.use(ElementUI, { size: "small", zIndex: 3000 });
Vue.use(resetCss);

Vue.config.productionTip = false;

new Vue({
  router,
  store,
  render: h => h(App)
}).$mount("#app");

/**
 * 图片上传限制
 */
Vue.prototype.uploadImgCondition = function (file) {
  const isJPG = file.type === "image/jpeg";
  const isLt2M = file.size / 1024 / 1024 < 2;

  if (!isJPG) {
    this.$message.error("上传头像图片只能是 JPG 格式!");
  }
  if (!isLt2M) {
    this.$message.error("上传头像图片大小不能超过 2MB!");
  }
  return isJPG && isLt2M;
}

/**
 * tar文件上传设置
 */
Vue.prototype.uploadFile = function(file, type, size) {
  debugger
  const isType = file.type === type;
  let isSize = null;
  if (size) {
    isSize = file.size / 1024 / 1024 < size;
  }

  if (!isType) {
    this.$message.error(`上传头像文件只能${type}是格式!`);
  }
  if (size && !isSize) {
    this.$message.error(`文件大小不能超过 ${size}MB!`);
  }
  return isType && isSize;
}