加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 2.81 KB
一键复制 编辑 原始数据 按行查看 历史
gxheart 提交于 2021-10-22 09:36 . init project
import Vue from 'vue'
import App from './App'
import store from './store'
Vue.config.productionTip = false
const tui = {
toast: function(text, duration, success) {
uni.showToast({
title: text,
icon: success ? 'success' : 'none',
duration: duration || 2000
})
},
constNum: function() {
const res = uni.getSystemInfoSync();
return res.platform.toLocaleLowerCase() == "android" ? 300 : 0;
},
px: function(num) {
return uni.upx2px(num) + 'px';
},
interfaceUrl: function() {
//接口地址
return "https://127.0.0.1:9501/api/v1/";
},
request: function(url, postData, method, type, hideLoading) {
//接口请求
if (!hideLoading) {
uni.showLoading({
mask: true,
title: '请稍候...'
})
}
return new Promise((resolve, reject) => {
uni.request({
url: this.interfaceUrl() + url,
data: postData,
header: {
'content-type': type ? 'application/x-www-form-urlencoded' : 'application/json',
'authorization': this.getToken(),
'security': 1
},
method: method, //'GET','POST'
dataType: 'json',
success: (res) => {
!hideLoading && uni.hideLoading()
resolve(res.data)
},
fail: (res) => {
if (!hideLoading) {
this.toast("网络不给力,请稍后再试~")
}
reject(res)
}
})
})
},
uploadFile: function(src) {
const that = this
uni.showLoading({
title: '请稍候...'
})
return new Promise((resolve, reject) => {
const uploadTask = uni.uploadFile({
url: 'https://abc.cc',
filePath: src,
name: 'file',
header: {
'content-type': 'multipart/form-data'
},
formData: {},
success: function(res) {
uni.hideLoading()
let d = JSON.parse(res.data)
if (d.code === 1) {
let fileObj = JSON.parse(d.data)[0];
//文件上传成功后把图片路径数据提交到服务器,数据提交成功后,再进行下张图片的上传
resolve(fileObj)
} else {
that.toast(res.message);
}
},
fail: function(res) {
reject(res)
uni.hideLoading();
that.toast(res.message);
}
})
})
},
setToken: function(token) {
uni.setStorageSync("token", token)
},
getToken() {
return uni.getStorageSync("token")
},
isLogin: function() {
return uni.getStorageSync("token") ? true : false
},
webURL:function(){
return "https://www.thorui.cn/wx"
}
}
Vue.prototype.tui = tui
Vue.prototype.$eventHub = Vue.prototype.$eventHub || new Vue()
Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化