1 Star 0 Fork 8

南湖PM/智慧维保APP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
Samson 提交于 2021-11-11 11:21 . 初始化项目
import Vue from 'vue'
import App from './App'
// 1.引入封装的接口请求
// import {myRequest} from './api/api.js'
// // 2.挂载到页面上
// Vue.prototype.$myRuquest = myRequest
Vue.config.productionTip = false
import {checkPhone , tip , isEmpty , isArray , isUndefined , setDataValue , authentication , debounce} from "static/js/public.js"
Vue.prototype.checkPhone = checkPhone
Vue.prototype.tip = tip
Vue.prototype.isEmpty = isEmpty
Vue.prototype.isArray = isArray
Vue.prototype.isUndefined = isUndefined
Vue.prototype.setDataValue = setDataValue
Vue.prototype.debounce = debounce
import store from "./store/index.js"
Vue.prototype.navRouter = function(url,isWod){
if(isWod && authentication(store.getters.getUserInfo.reviewStatus)){
uni.navigateTo({
url:url
})
}else if(!isWod){
uni.navigateTo({
url:url
})
}
}
Vue.prototype.backUrl = function(url){
uni.navigateBack()
}
Vue.prototype.reLaunch = function(url){
uni.reLaunch({
url:url
})
}
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/uefox/intelligent-maintenance.git
git@gitee.com:uefox/intelligent-maintenance.git
uefox
intelligent-maintenance
智慧维保APP
master

搜索帮助