1 Star 0 Fork 119

cyworks/物资管理系统

forked from DCloud/物资管理系统 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
/**
* @name Import libs
*/
import Vue from 'vue'
/**
* @name Import Files
*/
import App from './App'
import store from '@/store'
import config from "@/common/config.js"
import Utils from '@/utils/Utils' // Common util
import HandleError from '@/utils/HandleError' // Handle error
const myCloud = uniCloud.init(config.uniCloud)
function getMaxcode(table,fields,length){
request({
name: 'maxcode_get',
data: {
table:table,
fields:fields,
length:length
}
}).then(res => {
if (res.success) {
// console.log(res)
console.log(res.data.maxcode)
return res.data.maxcode;
}
else {
return '999';
}
})
}
function canUploadImg(){
uni.showModal({
title:"温馨提示",
content:"请绑定云存储空间再上传图片",
showCancel:false
})
return false
}
const request = ({
name,
data
}) => {
return new Promise((resolve, reject) => {
uni.showLoading({
title: '加载中...'
})
// Request
myCloud
.callFunction({
name,
data:{
token: store.state.token,
...data
}
})
.then(res => {
uni.hideLoading()
if (res.result && res.result.success) {
resolve(res.result)
} else {
if (res.result && res.result.msg) {
uni.showModal({
content: res.result.msg,
showCancel: false
})
}
// HandleError.handleApiRequestException(res.result.msg)
}
})
.catch(err => {
uni.hideLoading()
HandleError.handleApiRequestException(err)
})
})
}
/**
* @name Mounted func
*/
Vue.prototype.$store = store
Vue.prototype.config = config
Vue.prototype.$util = Utils // Mounted common utils
Vue.prototype.$handleError = HandleError // Mounted handle error
Vue.prototype.$myCloud = myCloud // Mounted myCloud
Vue.prototype.$request = request
Vue.prototype.getMaxcode = getMaxcode
Vue.prototype.canUploadImg = canUploadImg
/**
* @name Libs config
*/
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
config,
...App,
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/cyworks/material_management.git
[email protected]:cyworks/material_management.git
cyworks
material_management
物资管理系统
master

搜索帮助