| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import Vue from 'vue'
- import App from './App'
- Vue.config.productionTip = false
- // import uView from "uview-ui";
- // Vue.use(uView);
- import md5 from 'js-md5';
- Vue.prototype.$md5 = md5;
- import dayjs from 'dayjs';
- Vue.prototype.$day = dayjs;
- import cof from '@/static/config/in';
- Vue.prototype.$cof = cof;
- // 微信全局分享
- import share from '@/utils/share.js'
- Vue.mixin(share)
- // js高精度计算
- import highPrecision from "@/utils/highPrecision";
- Vue.prototype.$h = highPrecision;
- Vue.prototype.tidyTpye = (da) => {
- switch(da) {
- case '1': return "零售专区";
- case '2': return "批发专区";
- case '3': return "精品专区";
- case '4': return "今日值得买";
- case '5': return "茶宝兑换";
- case '6': return "天天捡漏";
- default: return ""
- }
- }
- // 自动适配接口域名
- import hosts from "@/request/config";
- Vue.prototype.$hosts = hosts;
- // 上传
- import { up } from "@/utils/up";
- Vue.prototype.$up = up;
- // 页面跳转
- import { goto } from '@/utils/myfun.js';
- Vue.prototype.goto = goto;
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
- Array.prototype.indexOf = function (val) {
- for (var i = 0; i < this.length; i++) {
- if (this[i] == val) return i;
- }
- return -1;
- };
- Array.prototype.remove = function (val) {
- var index = this.indexOf(val);
- if (index > -1) {
- this.splice(index, 1);
- }
- };
- Vue.directive('focus', {
- inserted: (el, binding) => {
- if (binding.value == true || binding.value == undefined) {
- el.focus()
- }
- }
- });
|