代码拉取完成,页面将自动刷新
同步操作将从 DCloud/物资管理系统 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* @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()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。