| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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 hosts from "@/request/config";
- Vue.prototype.$hosts = hosts;
- import { goto } from '@/utils/myfun.js';
- Vue.prototype.goto = goto;
- //注册为全局组件 - 通告
- import noticeBar from "@/components/noticeBar";
- Vue.component('noticeBar', noticeBar);
- 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);
- }
- };
|