瀏覽代碼

修改项目结构

xiaodai2022 2 年之前
父節點
當前提交
d81bd18a20

+ 2 - 2
src/api/index.js

@@ -3,9 +3,9 @@ import http from "@/api/axios";
 const url = "cwlist";
 export default {
   // 销售统计
-  list: (data, params) => http(baseApi + "Admin" + url, data, "post", params),
+  list: (data, params) => http(baseApi + "Admin/" + url, data, "post", params),
   listNew: (data, params) =>
-    http(baseApi + "Admincx" + url, data, "post", params),
+    http(baseApi + "Admincx/" + url, data, "post", params),
   //采销365xiao销售统计
   listNew31: (data, params) =>
     http(baseApi365 + "admin/performance", data, "post", params),

+ 0 - 82
src/mixins/resToken.js

@@ -1,82 +0,0 @@
-export default {
-  methods: {
-    // async resHttp(fun, model) {
-    //   return await new Promise(async (resolve, reject) => {
-    //     const res = await fun(model);
-    //     const { code, data, message } = res;
-    //     const rescode = parseInt(code + "");
-    //     const resmodel = {
-    //       code: rescode,
-    //       data,
-    //       message,
-    //     };
-    //     if (rescode === 0) {
-    //       resolve(resmodel);
-    //     } else if (rescode >= 101 && rescode <= 104) {
-    //       resolve(resmodel);
-    //       await this.logout();
-    //     } else {
-    //       resolve(resmodel);
-    //     }
-    //   });
-    // },
-    async useResHandle(res, type) {
-      return await new Promise(async (resolve, reject) => {
-        const { code, data, message } = res ?? {};
-        const rescode = parseInt(code + "");
-        if (rescode === 0) {
-          resolve(res);
-        } else if (rescode >= 101 && rescode <= 104) {
-          if (this.loading) {
-            this.loading = false;
-          }
-
-          await this.logout();
-        } else if (rescode >= 105 && rescode <= 106) {
-          if (this.loading) {
-            this.loading = false;
-          }
-          this.$notify({
-            title: "当前供应商参数错误",
-            dangerouslyUseHTMLString: true,
-            message: "5秒后,请您重新登录!",
-          });
-          await setTimeout(async () => {
-            await this.logout();
-          }, 5000);
-        } else {
-          if (this.loading) {
-            this.loading = false;
-          }
-          if (type) {
-            resolve(res);
-          } else {
-            this.$message.warning(message);
-          }
-        }
-      });
-    },
-
-    async logout() {
-      if (this.$route.path !== "/login") {
-        await this.$store.dispatch("user/logout");
-        this.$router.push(`/login?redirect=${this.$route.fullPath}`);
-      }
-    },
-    async routeGoto(path, query) {
-      window.vm.$router.push({
-        path: path,
-        query: query,
-      });
-    },
-    async routeReGoto(path, query) {
-      window.vm.$router.replace({
-        path: path,
-        query: query,
-      });
-    },
-    setNum(s) {
-      return s ? parseFloat(s + "").toFixed(2) : "-";
-    },
-  },
-};

+ 0 - 137
src/utils/auth.js

@@ -1,137 +0,0 @@
-import Cookies from "js-cookie";
-
-const TokenKey = "Purchase-Client-Console-Token";
-const MenuKey = "Purchase-Client-Console-Menu";
-const BtnKey = "Purchase-Client-Console-MenuBtn";
-const NoticeKey = "Purchase-Client-Console-Notice";
-const mainMenuKey = "Purchase-Client-Console-MainMenu";
-const businessCompanyKey = "Purchase-Client-Console-businessCompany";
-const businessCompanyNoKey = "Purchase-Client-Console-businessCompanyNo";
-const privateFieldKey = "Purchase-Client-Console-privateField";
-const actionDataKey = "Purchase-Client-Console-actionData";
-const companyListKey="Purchase-Client-Console-companyList";
-export function getToken() {
-  return Cookies.get(TokenKey);
-}
-
-export function setToken(token) {
-  return Cookies.set(TokenKey, token);
-}
-
-export function removeToken() {
-  return Cookies.remove(TokenKey);
-}
-
-export function getMenu() {
-  const menu = Cookies.get(MenuKey);
-  if (menu) {
-    return JSON.parse(menu);
-  } else {
-    return [];
-  }
-}
-
-export function setMenu(menu) {
-  return Cookies.set(MenuKey, menu);
-}
-
-export function removeMenu() {
-  return Cookies.remove(MenuKey);
-}
-
-export function getBtn() {
-  return Cookies.get(BtnKey);
-}
-
-export function setBtn(has) {
-  return Cookies.set(BtnKey, has);
-}
-
-export function removeBtn() {
-  return Cookies.remove(BtnKey);
-}
-
-export function getNotice() {
-  return Cookies.get(NoticeKey);
-}
-
-export function setNotice(has) {
-  return Cookies.set(NoticeKey, has);
-}
-
-export function removeNotice() {
-  return Cookies.remove(NoticeKey);
-}
-
-export function getMainList() {
-  return Cookies.get(mainMenuKey);
-}
-
-export function setMainList(has) {
-  return Cookies.set(mainMenuKey, has);
-}
-
-export function removeMainList() {
-  return Cookies.remove(mainMenuKey);
-}
-
-export function get_business_company() {
-  return Cookies.get(businessCompanyKey);
-}
-
-export function set_business_company(has) {
-  return Cookies.set(businessCompanyKey, has);
-}
-
-export function remove_business_company() {
-  return Cookies.remove(businessCompanyKey);
-}
-export function get_business_companyNo() {
-  return Cookies.get(businessCompanyNoKey);
-}
-
-export function set_business_companyNo(has) {
-  return Cookies.set(businessCompanyNoKey, has);
-}
-
-export function remove_business_companyNo() {
-  return Cookies.remove(businessCompanyNoKey);
-}
-
-export function get_company_list() {
-  return Cookies.get(companyListKey);
-}
-
-export function set_company_list(has) {
-  return Cookies.set(companyListKey, has);
-}
-
-export function remove_company_list() {
-  return Cookies.remove(companyListKey);
-}
-
-
-
-export function get_private_field() {
-  return Cookies.get(privateFieldKey);
-}
-
-export function set_private_field(has) {
-  return Cookies.set(privateFieldKey, has);
-}
-
-export function remove_private_field() {
-  return Cookies.remove(privateFieldKey);
-}
-
-export function get_action_data() {
-  return Cookies.get(actionDataKey);
-}
-
-export function set_action_data(has) {
-  return Cookies.set(actionDataKey, has);
-}
-
-export function remove_action_data() {
-  return Cookies.remove(actionDataKey);
-}

+ 0 - 32
src/utils/clipboard.js

@@ -1,32 +0,0 @@
-import Vue from 'vue'
-import Clipboard from 'clipboard'
-
-function clipboardSuccess() {
-  Vue.prototype.$message({
-    message: 'Copy successfully',
-    type: 'success',
-    duration: 1500
-  })
-}
-
-function clipboardError() {
-  Vue.prototype.$message({
-    message: 'Copy failed',
-    type: 'error'
-  })
-}
-
-export default function handleClipboard(text, event) {
-  const clipboard = new Clipboard(event.target, {
-    text: () => text
-  })
-  clipboard.on('success', () => {
-    clipboardSuccess()
-    clipboard.destroy()
-  })
-  clipboard.on('error', () => {
-    clipboardError()
-    clipboard.destroy()
-  })
-  clipboard.onClick(event)
-}

+ 0 - 20
src/utils/dingding.js

@@ -1,20 +0,0 @@
-import urlConfig from '@/apis/url-config'
-
-export function getCode(callback) {
-    dd.ready(() => {
-      //使用SDK 获取免登授权码
-      dd.runtime.permission.requestAuthCode({
-        corpId: urlConfig.corpId,
-        onSuccess: (info) => {
-          // 根据钉钉提供的api 获得code后,再次调用这个callback方法
-          // 由于是钉钉获取code是异步操作,不知道什么时候执行完毕
-          // callback 函数会等他执行完毕后在自己调用自己
-          callback(info.code)
-        },
-        onFail: (err) => {
-          alert('fail');
-          alert(JSON.stringify(err));
-        },
-      });
-    });
-}

+ 0 - 35
src/utils/error-log.js

@@ -1,35 +0,0 @@
-import Vue from 'vue'
-import store from '@/store'
-import { isString, isArray } from '@/utils/validate'
-import settings from '@/settings'
-
-// you can set in settings.js
-// errorLog:'production' | ['production', 'development']
-const { errorLog: needErrorLog } = settings
-
-function checkNeed() {
-  const env = process.env.NODE_ENV
-  if (isString(needErrorLog)) {
-    return env === needErrorLog
-  }
-  if (isArray(needErrorLog)) {
-    return needErrorLog.includes(env)
-  }
-  return false
-}
-
-if (checkNeed()) {
-  Vue.config.errorHandler = function(err, vm, info, a) {
-    // Don't ask me why I use Vue.nextTick, it just a hack.
-    // detail see https://forum.vuejs.org/t/dispatch-in-vue-config-errorhandler-has-some-problem/23500
-    Vue.nextTick(() => {
-      store.dispatch('errorLog/addErrorLog', {
-        err,
-        vm,
-        info,
-        url: window.location.href
-      })
-      console.error(err, info)
-    })
-  }
-}

+ 0 - 10
src/utils/get-page-title.js

@@ -1,10 +0,0 @@
-import defaultSettings from '@/settings'
-
-const title = defaultSettings.title || '采销365供应商端'
-
-export default function getPageTitle(pageTitle) {
-  if (pageTitle) {
-    return `${pageTitle} - ${title}`
-  }
-  return `${title}`
-}

+ 0 - 359
src/utils/index.js

@@ -1,359 +0,0 @@
-/**
- * Created by PanJiaChen on 16/11/18.
- */
-
-/**
- * 将时间解析为字符串
- * @param {(Object|string|number)} time
- * @param {string} cFormat
- * @returns {string | null}
- */
-export function parseTime(time, cFormat) {
-  if (arguments.length === 0 || !time) {
-    return null
-  }
-  const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
-  let date
-  if (typeof time === 'object') {
-    date = time
-  } else {
-    if (typeof time === 'string') {
-      if (/^[0-9]+$/.test(time)) {
-        // support "1548221490638"
-        time = parseInt(time)
-      } else {
-        // support safari
-        // https://stackoverflow.com/questions/4310953/invalid-date-in-safari
-        time = time.replace(new RegExp(/-/gm), '/')
-      }
-    }
-
-    if (typeof time === 'number' && time.toString().length === 10) {
-      time = time * 1000
-    }
-    date = new Date(time)
-  }
-  const formatObj = {
-    y: date.getFullYear(),
-    m: date.getMonth() + 1,
-    d: date.getDate(),
-    h: date.getHours(),
-    i: date.getMinutes(),
-    s: date.getSeconds(),
-    a: date.getDay()
-  }
-  const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
-    const value = formatObj[key]
-    // Note: getDay() returns 0 on Sunday
-    if (key === 'a') {
-      return ['日', '一', '二', '三', '四', '五', '六'][value]
-    }
-    return value.toString().padStart(2, '0')
-  })
-  return time_str
-}
-
-/**
- * @param {number} time
- * @param {string} option
- * @returns {string}
- */
-export function formatTime(time, option) {
-  if (('' + time).length === 10) {
-    time = parseInt(time) * 1000
-  } else {
-    time = +time
-  }
-  const d = new Date(time)
-  const now = Date.now()
-
-  const diff = (now - d) / 1000
-
-  if (diff < 30) {
-    return '刚刚'
-  } else if (diff < 3600) {
-    // less 1 hour
-    return Math.ceil(diff / 60) + '分钟前'
-  } else if (diff < 3600 * 24) {
-    return Math.ceil(diff / 3600) + '小时前'
-  } else if (diff < 3600 * 24 * 2) {
-    return '1天前'
-  }
-  if (option) {
-    return parseTime(time, option)
-  } else {
-    return (
-      d.getMonth() +
-      1 +
-      '月' +
-      d.getDate() +
-      '日' +
-      d.getHours() +
-      '时' +
-      d.getMinutes() +
-      '分'
-    )
-  }
-}
-
-/**
- * @param {string} url
- * @returns {Object}
- */
-export function getQueryObject(url) {
-  url = url == null ? window.location.href : url
-  const search = url.substring(url.lastIndexOf('?') + 1)
-  const obj = {}
-  const reg = /([^?&=]+)=([^?&=]*)/g
-  search.replace(reg, (rs, $1, $2) => {
-    const name = decodeURIComponent($1)
-    let val = decodeURIComponent($2)
-    val = String(val)
-    obj[name] = val
-    return rs
-  })
-  return obj
-}
-
-/**
- * @param {string} input value
- * @returns {number} output value
- */
-export function byteLength(str) {
-  // returns the byte length of an utf8 string
-  let s = str.length
-  for (var i = str.length - 1; i >= 0; i--) {
-    const code = str.charCodeAt(i)
-    if (code > 0x7f && code <= 0x7ff) s++
-    else if (code > 0x7ff && code <= 0xffff) s += 2
-    if (code >= 0xdc00 && code <= 0xdfff) i--
-  }
-  return s
-}
-
-/**
- * @param {Array} actual
- * @returns {Array}
- */
-export function cleanArray(actual) {
-  const newArray = []
-  for (let i = 0; i < actual.length; i++) {
-    if (actual[i]) {
-      newArray.push(actual[i])
-    }
-  }
-  return newArray
-}
-
-/**
- * @param {Object} json
- * @returns {Array}
- */
-export function param(json) {
-  if (!json) return ''
-  return cleanArray(
-    Object.keys(json).map(key => {
-      if (json[key] === undefined) return ''
-      return encodeURIComponent(key) + '=' + encodeURIComponent(json[key])
-    })
-  ).join('&')
-}
-
-/**
- * @param {string} url
- * @returns {Object}
- */
-export function param2Obj(url) {
-  const search = decodeURIComponent(url.split('?')[1]).replace(/\+/g, ' ')
-  if (!search) {
-    return {}
-  }
-  const obj = {}
-  const searchArr = search.split('&')
-  searchArr.forEach(v => {
-    const index = v.indexOf('=')
-    if (index !== -1) {
-      const name = v.substring(0, index)
-      const val = v.substring(index + 1, v.length)
-      obj[name] = val
-    }
-  })
-  return obj
-}
-
-/**
- * @param {string} val
- * @returns {string}
- */
-export function html2Text(val) {
-  const div = document.createElement('div')
-  div.innerHTML = val
-  return div.textContent || div.innerText
-}
-
-/**
- * Merges two objects, giving the last one precedence
- * @param {Object} target
- * @param {(Object|Array)} source
- * @returns {Object}
- */
-export function objectMerge(target, source) {
-  if (typeof target !== 'object') {
-    target = {}
-  }
-  if (Array.isArray(source)) {
-    return source.slice()
-  }
-  Object.keys(source).forEach(property => {
-    const sourceProperty = source[property]
-    if (typeof sourceProperty === 'object') {
-      target[property] = objectMerge(target[property], sourceProperty)
-    } else {
-      target[property] = sourceProperty
-    }
-  })
-  return target
-}
-
-/**
- * @param {HTMLElement} element
- * @param {string} className
- */
-export function toggleClass(element, className) {
-  if (!element || !className) {
-    return
-  }
-  let classString = element.className
-  const nameIndex = classString.indexOf(className)
-  if (nameIndex === -1) {
-    classString += '' + className
-  } else {
-    classString =
-      classString.substr(0, nameIndex) +
-      classString.substr(nameIndex + className.length)
-  }
-  element.className = classString
-}
-
-/**
- * @param {string} type
- * @returns {Date}
- */
-export function getTime(type) {
-  if (type === 'start') {
-    return new Date().getTime() - 3600 * 1000 * 24 * 90
-  } else {
-    return new Date(new Date().toDateString())
-  }
-}
-
-/**
- * @param {Function} func
- * @param {number} wait
- * @param {boolean} immediate
- * @return {*}
- */
-export function debounce(func, wait, immediate) {
-  let timeout, args, context, timestamp, result
-
-  const later = function() {
-    // 据上一次触发时间间隔
-    const last = +new Date() - timestamp
-
-    // 上次被包装函数被调用时间间隔 last 小于设定时间间隔 wait
-    if (last < wait && last > 0) {
-      timeout = setTimeout(later, wait - last)
-    } else {
-      timeout = null
-      // 如果设定为immediate===true,因为开始边界已经调用过了此处无需调用
-      if (!immediate) {
-        result = func.apply(context, args)
-        if (!timeout) context = args = null
-      }
-    }
-  }
-
-  return function(...args) {
-    context = this
-    timestamp = +new Date()
-    const callNow = immediate && !timeout
-    // 如果延时不存在,重新设定延时
-    if (!timeout) timeout = setTimeout(later, wait)
-    if (callNow) {
-      result = func.apply(context, args)
-      context = args = null
-    }
-
-    return result
-  }
-}
-
-/**
- * This is just a simple version of deep copy
- * Has a lot of edge cases bug
- * If you want to use a perfect deep copy, use lodash's _.cloneDeep
- * @param {Object} source
- * @returns {Object}
- */
-export function deepClone(source) {
-  if (!source && typeof source !== 'object') {
-    throw new Error('error arguments', 'deepClone')
-  }
-  const targetObj = source.constructor === Array ? [] : {}
-  Object.keys(source).forEach(keys => {
-    if (source[keys] && typeof source[keys] === 'object') {
-      targetObj[keys] = deepClone(source[keys])
-    } else {
-      targetObj[keys] = source[keys]
-    }
-  })
-  return targetObj
-}
-
-/**
- * @param {Array} arr
- * @returns {Array}
- */
-export function uniqueArr(arr) {
-  return Array.from(new Set(arr))
-}
-
-/**
- * @returns {string}
- */
-export function createUniqueString() {
-  const timestamp = +new Date() + ''
-  const randomNum = parseInt((1 + Math.random()) * 65536) + ''
-  return (+(randomNum + timestamp)).toString(32)
-}
-
-/**
- * Check if an element has a class
- * @param {HTMLElement} elm
- * @param {string} cls
- * @returns {boolean}
- */
-export function hasClass(ele, cls) {
-  return !!ele.className.match(new RegExp('(\\s|^)' + cls + '(\\s|$)'))
-}
-
-/**
- * Add class to element
- * @param {HTMLElement} elm
- * @param {string} cls
- */
-export function addClass(ele, cls) {
-  if (!hasClass(ele, cls)) ele.className += ' ' + cls
-}
-
-/**
- * Remove class from element
- * @param {HTMLElement} elm
- * @param {string} cls
- */
-export function removeClass(ele, cls) {
-  if (hasClass(ele, cls)) {
-    const reg = new RegExp('(\\s|^)' + cls + '(\\s|$)')
-    ele.className = ele.className.replace(reg, ' ')
-  }
-}

+ 0 - 92
src/utils/interceptors.js

@@ -1,92 +0,0 @@
-// 添加请求拦截器
-axios.interceptors.request.use(
-  function(config) {
-    // 在发送请求之前做些什么
-    //  let token = window.vm.$getStorage("token"); // 令牌
-    //  let tid = window.vm.$getStorage("tid"); // 租户id
-    //  let envName = window.vm.$getStorage("envName"); // 环境变量
-    //  let currentOrgId = window.vm.$getStorage("currentOrgId"); // 区域id
-    //  let data = { token, tid, envName, currentOrgId };
-    //  if (!config.data || JSON.stringify(config.data) === "{}") {
-    //    config.data = data;
-    //  } else if (!config.data.hasOwnProperty("currentOrgId")) {
-    //    Object.assign(config.data, data);
-    //  }
-    // config.headers.appId = window.vm.$encrypt(
-    //   "520f066da8e7c4736abb20afdd29289a",
-    //   "TFEUyxO9PDJlyyg7"
-    // );
-    // // 加密
-    // config.headers.Authentication = window.vm.$encrypt(
-    //   "520f066da8e7c4736abb20afdd29289a#nU-#q1PwD!1573801531190",
-    //   "TFEUyxO9PDJlyyg7"
-    // );
-    // 解密
-    // config.headers.Authentication = window.vm.$decrypt(this.parmValue, "TFEUyxO9PDJlyyg7");
-    // console.log(config);
-    return config;
-  },
-  function(error) {
-    // 对请求错误做些什么
-    return Promise.reject(error);
-  }
-);
-// // 在main.js设置全局的请求次数,请求的间隙
-// axios.defaults.retry = 4;
-// axios.defaults.retryDelay = 1000;
-// 添加响应拦截器
-axios.interceptors.response.use(
-  function(response) {
-    // if (response.config.url.substr(0, 18) === "/admin/ditpcs-debug/") {
-      
-    //   return response.data;
-    // }
-    // if (response.config.url.indexOf('/admin/loveUserProject/exportProject') > -1) {
-    //     return response;
-    // }
-    // if (response.status === 200) {
-    //   if (
-    //     response.data.code !== 0 &&
-    //     response.data.code !== 2 &&
-    //     response.data.code !== 3 &&
-    //     response.data.code !== 12 &&
-    //     response.request.responseURL.indexOf(
-    //       "smartpart/admin/workerWeekly/export"
-    //     ) == -1
-    //   ) {
-    //     window.vm.$notify.error({
-    //       title: response.data.message,
-    //       message: ""
-    //     });
-    //   }
-    //   // code=2,代表token失效
-    //   if (response.data.code === 2) {
-    //     console.log("interceptors-delCookie-ctoken");
-    //     window.vm.$delCookie("ctoken");
-    //     window.vm.$router.push("login");
-    //     // window.vm.$router.push("nopermission");
-    //   }
-    //   // code=3,代表 用户无访问权限
-    //   if (response.data.code === 3) {
-    //     window.vm.$router.push("manage");
-    //   }
-    //   // code=12,代表 前端通用弹窗提示码
-    //   if (response.data.code === 12) {
-    //     window.vm.$store.commit("isShowModelFun", true);
-    //     window.vm.$store.commit("dataModelFun", response.data.data);
-    //   }
-    // }
-    return response.data;
-  },
-  function(error) {
-    // 对响应错误做点什么
-    // console.log(error);
-    // if (error.response.status === 500) {
-    //   window.vm.$notify.error({
-    //     title: "请检查您的网络",
-    //     message: "稍后重试"
-    //   });
-    // }
-    return Promise.reject(error);
-  }
-);

+ 0 - 45
src/utils/open-window.js

@@ -1,45 +0,0 @@
-/**
- *Created by PanJiaChen on 16/11/29.
- * @param {Sting} url
- * @param {Sting} title
- * @param {Number} w
- * @param {Number} h
- */
-export default function openWindow(url, title, w, h) {
-  // Fixes dual-screen position                            Most browsers       Firefox
-  const dualScreenLeft =
-    window.screenLeft !== undefined ? window.screenLeft : screen.left
-  const dualScreenTop =
-    window.screenTop !== undefined ? window.screenTop : screen.top
-
-  const width = window.innerWidth
-    ? window.innerWidth
-    : document.documentElement.clientWidth
-      ? document.documentElement.clientWidth
-      : screen.width
-  const height = window.innerHeight
-    ? window.innerHeight
-    : document.documentElement.clientHeight
-      ? document.documentElement.clientHeight
-      : screen.height
-
-  const left = width / 2 - w / 2 + dualScreenLeft
-  const top = height / 2 - h / 2 + dualScreenTop
-  const newWindow = window.open(
-    url,
-    title,
-    'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=' +
-      w +
-      ', height=' +
-      h +
-      ', top=' +
-      top +
-      ', left=' +
-      left
-  )
-
-  // Puts focus on the newWindow
-  if (window.focus) {
-    newWindow.focus()
-  }
-}

+ 0 - 21
src/utils/permission.js

@@ -1,21 +0,0 @@
-import store from '@/store'
-
-/**
- * @param {Array} value
- * @returns {Boolean}
- * @example see @/views/permission/directive.vue
- */
-export default function checkPermission(value) {
-  if (value && value instanceof Array && value.length > 0) {
-    const roles = store.getters && store.getters.roles
-    const permissionRoles = value
-
-    const hasPermission = roles.some(role => {
-      return permissionRoles.includes(role)
-    })
-    return hasPermission
-  } else {
-    console.error(`need roles! Like v-permission="['admin','editor']"`)
-    return false
-  }
-}

+ 0 - 40
src/utils/publicMethods.js

@@ -1,40 +0,0 @@
-/**
- * table/complex-table
- *  列表json转换
- * @param {*} filterVal //对应字段
- * @param {*} jsonData //json列表
- */
-export function formatJson (filterVal, jsonData) {
-  return jsonData.map(v =>
-    filterVal.map(j => {
-      return v[j]
-    })
-  )
-}
-/**
- * 获取时间凌晨(秒)
- * @param {*} s //推移几天
- */
-export function getMorningTime (passTime) {
-  let miao = passTime * 1000 * 60 * 60 * 24
-  return new Date(new Date().toLocaleDateString()).getTime() + miao
-}
-
-/**
- * 时间处理
- * @param {*} dataForm //post参数
- * @param {*} timeStamp //需要处理的时间戳
- */
-export function switchingTime (dataForm, timeStamp) {
-  let params = Object.assign({}, dataForm)
-  if (params) {
-    if (params.startTime === 0 && params.endTime === 0) {
-      params.startTime = ""
-      params.endTime = ""
-    } else if (params.startTime && params.endTime) {
-      params.startTime = params.startTime + ""
-      params.endTime = (parseInt(params.endTime) + timeStamp) + ""
-    }
-  }
-  return params
-}

+ 0 - 89
src/utils/request.js

@@ -1,89 +0,0 @@
-// import axios from 'axios'
-import { MessageBox, Message } from 'element-ui'
-import store from '@/store'
-import { getToken } from '@/utils/auth'
-
-// create an axios instance
-const service = axios.create({
-  baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url
-  // withCredentials: true, // send cookies when cross-domain requests
-  timeout: 5000 // request timeout
-})
-
-// request interceptor
-service.interceptors.request.use(
-  config => {
-    // do something before request is sent
-
-    if (store.getters.token) {
-      // let each request carry token
-      // ['X-Token'] is a custom headers key
-      // please modify it according to the actual situation
-      config.headers['X-Token'] = getToken()
-    }
-    return config
-  },
-  error => {
-    // do something with request error
-    // console.log(error) // for debug
-    return Promise.reject(error)
-  }
-)
-
-// response interceptor
-service.interceptors.response.use(
-  /**
-   * If you want to get http information such as headers or status
-   * Please return  response => response
-   */
-
-  /**
-   * Determine the request status by custom code
-   * Here is just an example
-   * You can also judge the status by HTTP Status Code
-   */
-  response => {
-    const res = response.data
-
-    // if the custom code is not 20000, it is judged as an error.
-    if (res.code !== 20000) {
-      Message({
-        message: res.message || 'Error',
-        type: 'error',
-        duration: 5 * 1000
-      })
-
-      // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
-      if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
-        // to re-login
-        MessageBox.confirm(
-          'You have been logged out, you can cancel to stay on this page, or log in again',
-          'Confirm logout',
-          {
-            confirmButtonText: 'Re-Login',
-            cancelButtonText: 'Cancel',
-            type: 'warning'
-          }
-        ).then(() => {
-          store.dispatch('user/resetToken').then(() => {
-            location.reload()
-          })
-        })
-      }
-      return Promise.reject(new Error(res.message || 'Error'))
-    } else {
-      return res
-    }
-  },
-  error => {
-    // console.log('err' + error) // for debug
-    Message({
-      message: error.message,
-      type: 'error',
-      duration: 5 * 1000
-    })
-    return Promise.reject(error)
-  }
-)
-
-export default service

+ 0 - 69
src/utils/scroll-to.js

@@ -1,69 +0,0 @@
-Math.easeInOutQuad = function(t, b, c, d) {
-  t /= d / 2
-  if (t < 1) {
-    return (c / 2) * t * t + b
-  }
-  t--
-  return (-c / 2) * (t * (t - 2) - 1) + b
-}
-
-// requestAnimationFrame for Smart Animating http://goo.gl/sx5sts
-var requestAnimFrame = (function() {
-  return (
-    window.requestAnimationFrame ||
-    window.webkitRequestAnimationFrame ||
-    window.mozRequestAnimationFrame ||
-    function(callback) {
-      window.setTimeout(callback, 1000 / 60)
-    }
-  )
-})()
-
-/**
- * Because it's so fucking difficult to detect the scrolling element, just move them all
- * @param {number} amount
- */
-function move(amount) {
-  document.documentElement.scrollTop = amount
-  document.body.parentNode.scrollTop = amount
-  document.body.scrollTop = amount
-}
-
-function position() {
-  return (
-    document.documentElement.scrollTop ||
-    document.body.parentNode.scrollTop ||
-    document.body.scrollTop
-  )
-}
-
-/**
- * @param {number} to
- * @param {number} duration
- * @param {Function} callback
- */
-export function scrollTo(to, duration, callback) {
-  const start = position()
-  const change = to - start
-  const increment = 20
-  let currentTime = 0
-  duration = typeof duration === 'undefined' ? 500 : duration
-  var animateScroll = function() {
-    // increment the time
-    currentTime += increment
-    // find the value with the quadratic in-out easing function
-    var val = Math.easeInOutQuad(currentTime, start, change, duration)
-    // move the document.body
-    move(val)
-    // do the animation unless its over
-    if (currentTime < duration) {
-      requestAnimFrame(animateScroll)
-    } else {
-      if (callback && typeof callback === 'function') {
-        // the animation is done so lets callback
-        callback()
-      }
-    }
-  }
-  animateScroll()
-}

+ 0 - 501
src/utils/validate.js

@@ -1,501 +0,0 @@
-/**
- * Created by PanJiaChen on 16/11/18.
- */
-
-/** https
- * @param {string} path
- * @returns {Boolean}
- */
-function accMulIn(arg1, arg2) {
-  let m = 0,
-    s1 = arg1.toString(),
-    s2 = arg2.toString();
-
-  try {
-    m += s1.split(".")[1].length;
-  } catch (e) {}
-
-  try {
-    m += s2.split(".")[1].length;
-  } catch (e) {}
-
-  return (
-    (Number(s1.replace(".", "")) * Number(s2.replace(".", ""))) /
-    Math.pow(10, m)
-  );
-}
-
-export function isExternal(path) {
-  return /^(https?:|mailto:|tel:)/.test(path);
-}
-//区-座-分
-export function isqzf(s) {
-  let type = true;
-  let arr = s.split("-");
-  if (arr.length === 3) {
-    type = setqj(arr[0]) && setzj(arr[1]) && setfj(arr[2]);
-  } else {
-    type = false;
-  }
-  console.log("console区-座-分 " + type);
-  return type;
-}
-// //区-座
-export function isqz(s) {
-  let type = true;
-  let arr = s.split("-");
-  if (arr.length === 2) {
-    type = setqj(arr[0]) && setzj(arr[1]);
-  } else {
-    type = false;
-  }
-  console.log("console区-座 " + type);
-  return type;
-}
-//座-分
-export function iszf(s) {
-  let type = true;
-  let arr = s.split("-");
-  if (arr.length === 2) {
-    type = setzj(arr[0]) && setfj(arr[1]);
-  } else {
-    type = false;
-  }
-  console.log("console座-分" + type);
-  return type;
-}
-
-//座
-export function isz(s) {
-  let type = true;
-  let arr = s.split("-");
-  if (arr.length === 1) {
-    type = setzj(arr[0]);
-  } else {
-    type = false;
-  }
-  console.log("console座" + type);
-  return type;
-}
-function setqj(s) {
-  return /0\d{2,3}?$/.test(s) && (s.length == 3 || s.length == 4);
-}
-function setzj(s) {
-  return /\d{7,8}$/.test(s) && (s.length == 7 || s.length == 8);
-}
-function setfj(s) {
-  return /\d{1,6}$/.test(s) && s.length > 0 && s.length < 7;
-}
-
-/** 用户名
- * @param {string} str
- * @returns {Boolean}
- */
-export function validUsername(str) {
-  const valid_map = ["admin", "editor"];
-  return valid_map.indexOf(str.trim()) >= 0;
-}
-
-/** url
- * @param {string} url
- * @returns {Boolean}
- */
-export function validURL(url) {
-  const reg =
-    /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/;
-  return reg.test(url);
-}
-
-/** 小写字母
- * @param {string} str
- * @returns {Boolean}
- */
-export function validLowerCase(str) {
-  const reg = /^[a-z]+$/;
-  return reg.test(str);
-}
-
-/** 大写字母
- * @param {string} str
- * @returns {Boolean}
- */
-export function validUpperCase(str) {
-  const reg = /^[A-Z]+$/;
-  return reg.test(str);
-}
-
-/** 字母
- * @param {string} str
- * @returns {Boolean}
- */
-export function validAlphabets(str) {
-  const reg = /^[A-Za-z]+$/;
-  return reg.test(str);
-}
-
-/** 邮箱
- * @param {string} email
- * @returns {Boolean}
- */
-export function validEmail(email) {
-  const reg =
-    /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
-  return reg.test(email);
-}
-
-/** 字符串
- * @param {string} str
- * @returns {Boolean}
- */
-export function isString(str) {
-  if (typeof str === "string" || str instanceof String) {
-    return true;
-  }
-  return false;
-}
-
-/** 数组
- * @param {Array} arg
- * @returns {Boolean}
- */
-export function isArray(arg) {
-  if (typeof Array.isArray === "undefined") {
-    return Object.prototype.toString.call(arg) === "[object Array]";
-  }
-  return Array.isArray(arg);
-}
-
-/**
- * 邮箱
- * @param {*} s
- */
-export function isEmail(s) {
-  return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(
-    s
-  );
-}
-
-/**
- * 手机号码
- * @param {*} s
- */
-export function isMobile(s) {
-  return isM(s) || isHK(s);
-}
-// 手机号码
-function isM(s) {
-  return /^1[3|4|5|6|7|8|9][0-9]\d{8}$/.test(s);
-}
-// 香港手机号码
-function isHK(s) {
-  return /^852[5|6|8|9]\d{7}$/.test(s);
-}
-
-/**
- * 电话号码
- * @param {*} s
- */
-export function isPhone(s) {
-  return /^([0-9]{3,4}-)?[0-9]{7,8}$/.test(s);
-}
-
-/**
- * 微信号
- * @param {*} s
- */
-export function isWeixin(s) {
-  return /^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$/.test(s);
-}
-/**
- * qq号
- * @param {*} s
- */
-export function isQQ(s) {
-  return /^[1-9][0-9]{4,14}$/.test(s);
-}
-
-/**
- * 固定电话(支持分机)
- * @param {*} s
- */
-export function isExtension(s) {
-  let type = true;
-  let arr = s.split("-");
-  // console.log(arr);
-  if (arr.length === 2 || arr.length === 3) {
-    type = setF(arr);
-  } else {
-    type = false;
-  }
-  // console.log('console' + type);
-  return type;
-  ///0\d{2,3}-\d{7,8}(-\d{1,6})?/.test(s)
-}
-function setF(arr) {
-  let type1 = true,
-    type2 = true,
-    type3 = true;
-  type1 = /0\d{2,3}?$/.test(arr[0]);
-  type2 =
-    arr[1].length === 7 || arr[1].length === 8
-      ? /\d{7,8}$/.test(arr[1])
-      : false;
-  if (arr.length === 3) {
-    type3 =
-      arr[2].length === 0 || arr[2].length > 6
-        ? false
-        : /\d{1,6}$/.test(arr[2]);
-  }
-  // console.log(type1, type2, type3);
-  if (arr.length === 2) {
-    return type1 && type2;
-  } else {
-    return type1 && type2 && type3;
-  }
-}
-
-// (^(\d{11})$|^((\d{3}-)?\d{8}(-\d{1,4})?)$|^((\d{4}-)?\d{7}(-\d{1,4})?)$|^(\d{7,8})$)
-/**
- * 纳税人识别号
- * @param {*} s
- */
-export function isLicense(s) {
-  return /[0-9A-HJ-NPQRTUWXY]{2}\d{6}[0-9A-HJ-NPQRTUWXY]{10}/.test(s);
-}
-
-/**
- * 身份证号码
- * @param {*} s
- */
-export function isIDentityCard(s) {
-  return /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/.test(
-    s
-  );
-}
-
-/**
- * URL地址
- * @param {*} s
- */
-export function isURL(s) {
-  return /^http[s]?:\/\/.*/.test(s);
-}
-
-/**
- * 汉语
- * @param {*} s
- */
-export function isChinese(s) {
-  return /[\u4e00-\u9fa5]$/.test(s);
-}
-
-/**
- * 数字
- * @param {*} s
- */
-export function isnumber(s) {
-  return /^[0-9]*$/.test(s);
-}
-/**
- * 数字或者带小数点的数字
- * @param {*} s
- */
-export function isnumber2(s) {
-  return /(^[0-9]{1,2}$)|(^[0-9]{1,2}[\.]{1}[0-9]{1,2}$)/.test(s);
-}
-/**
- * 数字或者带小数点的数字 1,2,3位小数
- * @param {*} s
- */
-export function isnumber3(s) {
-  return /^(([^0][0-9]+|0)\.([0-9]{1,3})$)|^([^0][0-9]+|0)$/.test(s);
-}
-/**
- * 数字字母
- * @param {*} s
- */
-export function isAlphanumeric(s) {
-  return /^[0-9A-Za-z]*$/.test(s);
-}
-
-/**
- * 表情包
- * @param {*} s
- */
-export function isEmoticon(s) {
-  const reg =
-    /[^\u0020-\u007E\u00A0-\u00BE\u2E80-\uA4CF\uF900-\uFAFF\uFE30-\uFE4F\uFF00-\uFFEF\u0080-\u009F\u2000-\u201f\u2026\u2022\u20ac\r\n]/g;
-  // console.log(reg.test(s));
-  return reg.test(s);
-}
-
-/**
- * 判断是否为微信浏览器
- * @param {*} s
- */
-export function JudgeEnvironment() {
-  const ua = navigator.userAgent.toLowerCase();
-  let environment = "";
-  const isWeixin = ua.indexOf("micromessenger") != -1;
-  if (isWeixin) {
-    environment = "Weixin";
-  }
-  const isWelink = ua.indexOf("huawei-anyoffice") != -1;
-  if (isWelink) {
-    environment = "Welink";
-  }
-  const isDingDing = ua.indexOf("dingtalk") != -1;
-  if (isDingDing) {
-    environment = "isDingDing";
-  }
-  if (environment === "") {
-    environment = "otherBrowser";
-  }
-  return environment;
-}
-
-export function timestampToTime(timestamp) {
-  const date = new Date(timestamp); // 时间戳为10位需*1000,时间戳为13位的话不需乘1000
-  const Y = date.getFullYear() + "-";
-  const M =
-    (date.getMonth() + 1 < 10
-      ? "0" + (date.getMonth() + 1)
-      : date.getMonth() + 1) + "-";
-  const D = date.getDate() + " ";
-  let h = date.getHours();
-  h = h < 10 ? `0${h}:` : h + ":";
-  let m = date.getMinutes();
-  m = m < 10 ? `0${m}:` : m + ":";
-  let s = date.getSeconds();
-  s = s < 10 ? `0${s}` : s;
-  return Y + M + D + h + m + s;
-}
-export function isCreditCode(s) {
-  const reg = /[^_IOZSVa-z\W]{2}\d{6}[^_IOZSVa-z\W]{10}$/g;
-  return reg.test(s);
-}
-
-export function isSpecialSymbol(s) {
-  // console.log(s);
-  const str = (s ?? "").replace(
-    /\\|\/|\"|\'|\<|\>|\{|\}|\[|\]|\:|\^|\$|\!|\~|\`|\|/g,
-    ""
-  );
-  // console.log(str);
-  const pattern = new RegExp("[`~!@#$^&()=|{}':;',<>/?]");
-  let specialStr = "";
-  for (let i = 0; i < str.length; i++) {
-    specialStr += str.substr(i, 1).replace(pattern, "");
-  }
-  return s.length > specialStr.length;
-}
-
-export function isAddr(s) {
-  let isok = false;
-  const regList = [
-    "多地",
-    "另给",
-    "线下",
-    "地址",
-    "单独给",
-    "内部沟通",
-    "微信",
-    "钉钉",
-    "短信",
-    "文件",
-    "另外",
-    "后面",
-    "以后",
-    "晚点",
-    "后补",
-    "再给",
-  ];
-  for (let i = 0; i < regList.length; i++) {
-    const is = s.includes(regList[i]);
-    if (is) {
-      isok = is;
-    }
-  }
-  const sstr = /^[0-9A-Za-z]*$/;
-
-  if (sstr.test(s)) {
-    isok = true;
-  }
-
-  if (!isok) {
-    let reslist = [];
-    let str = "";
-
-    for (let i = 0; i < s.length; i++) {
-      let isa = sstr.test(s[i]);
-      // console.log(isa);
-      if (isa) {
-        str += s[i];
-      } else {
-        reslist.push(str);
-        str = "";
-      }
-      if (i === s.length - 1) {
-        reslist.push(str);
-        str = "";
-      }
-    }
-    for (let b = 0; b < reslist.length; b++) {
-      if (reslist[b].length > 5) {
-        isok = true;
-      }
-    }
-  }
-  return !isok;
-}
-export function hasSpace(s) {
-  // const str1 = s.replace(/\s/g, "");
-  const str2 = s.replace(/[\r\n]/g, "");
-  return !(str2 === s);
-}
-
-
-//乘法精算
-export function accMul(arg1, arg2) {
-  return accMulIn(arg1, arg2)
-}
-
- //除法精度问题
- export function accDiv(arg1, arg2) {
-  let t1 = 0,
-    t2 = 0,
-    c1,
-    c2;
-  try {
-    t1 = arg1.toString().split(".")[1].length;
-  } catch (e) {}
-  try {
-    t2 = arg2.toString().split(".")[1].length;
-  } catch (e) {}
-  // with (Math) {
-  c1 = Number(arg1.toString().replace(".", ""));
-  c2 = Number(arg2.toString().replace(".", ""));
-  return (c1 / c2) * Math.pow(10, t2 - t1);
-  // }
-};
-
-
-//加法精算
-export function add_sum(arg1, arg2) {
-  let r1, r2, m;
-  try {
-    r1 = arg1.toString().split(".")[1].length;
-  } catch (e) {
-    r1 = 0;
-  }
-
-  try {
-    r2 = arg2.toString().split(".")[1].length;
-  } catch (e) {
-    r2 = 0;
-  }
-
-  m = Math.pow(10, Math.max(r1, r2));
-
-  return (accMulIn(arg1, m) + accMulIn(arg2, m)) / m;
-}