加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.81 KB
一键复制 编辑 原始数据 按行查看 历史
追风の牧羊人 提交于 2021-07-03 21:19 . 修复bug
import Vue from 'vue'
import App from './App'
import common from '@/common/common.js';
import Time from '@/common/Time.js';
import AMap from '@/common/SDK/amap-wx.js';
import store from './store';
// webim
import WebIM from '@/common/chat/WebIM.js';
import uView from "uview-ui";
Vue.prototype.$WebIM=WebIM;
// 瀑布流
// 初始化地图
// 平台不同,key需要不同
Vue.prototype.$Map=new AMap.AMapWX({key:'05af99827dbeee187d30738f6650d171'});
// 05af99827dbeee187d30738f6650d171//微信小程序
//7e4d8b4fd86295a22dcf6a8706263cf5//旧的app
// 36ad183340446d7e2804e17bf66fdc9a//新的app key
// 31dbf484fb34bacf9c26e40c7b9b34dd //dd key
// Vue.prototype.baseUrl="https://shop.mmdddd.com:8445/bus_app/";
// Vue.prototype.imgUrl="https://shop.mmdddd.com/bus_ship/";
// test
// Vue.prototype.baseUrl="https://shop.mmdddd.com:8445/bus_app/";
Vue.prototype.baseUrl="https://shop.mmdddd.com:8445/bus_app/";
//Vue.prototype.baseUrl="http://192.168.1.101:8445/bus_app/";
Vue.prototype.imgUrl="https://shop.mmdddd.com:8445/bus_ship/";
// webview
Vue.prototype.webviewUrl="https://shop.mmdddd.com:8445/workShopWeb/";
// Vue.prototype.webviewUrl="http://192.168.101.26:8080/";
Vue.prototype.bgImgUrl="https://shop.mmdddd.com:8445/h5/";
Vue.prototype.$bus = new Vue();
Vue.prototype.common=common;
Vue.prototype.Time=Time;
/* 自定义toast */
Vue.prototype.$toast = function(text, icon = 'none', duration = 1000) {
return new Promise(resolve => {
uni.showToast({
title: text,
icon,
})
setTimeout(() => {
resolve()
}, duration)
})
}
Vue.use(uView);
// Vue.config.productionTip = false;
//#ifdef APP-PLUS
let window={};
//#endif
App.mpType = 'app'
Vue.filter('toFixed', function (value) {
if (!value) return '0.00'
value = Number(value)
return value.toFixed(2)
})
window.Vue = new Vue({
...App,
store
}).$mount()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化