代码拉取完成,页面将自动刷新
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
App.mpType = 'app'
Vue.prototype.$webUrl = 'https://thk.yszyun.com'
Vue.prototype.$emp_code = '' //用户编号
Vue.prototype.$extInfoUrl = '' //在线客服链接
Vue.prototype.$corpId = '' //在线客服的企业ID
Vue.prototype.$showChat = true //是否展示在线客服
Vue.prototype.$cloudFunctionUrl = 'https://82809ea8-bc7d-40a4-808a-a22d30c9fdcd.bspapp.com/'
Vue.prototype.commHttpRequest = function(actionurl,eventName, params, loading = true, callback) {
if (loading == true) {
uni.showLoading({
mask: true
})
}
let url = this.$cloudFunctionUrl +actionurl
params['eventName']=eventName
uni.request({
url: url,
method: 'POST',
data: params,
success: res => {
uni.hideLoading()
if(res.data){
res.result = res.data
callback(res);
}
},
fail: (err) => {
uni.hideLoading()
uni.showToast({
title: err,
icon: 'none'
});
}
});
}
//统一提示
Vue.prototype.show_nativeUI_toast = function(msg, icontype = 'success'){
const iconTypeUrl = {
error: '/static/toast-image/warn.png',
success: '/static/toast-image/success.png',
warn: '/static/toast-image/warn.png'
}
uni.showToast({
title: msg,
image: iconTypeUrl[icontype],
duration:1500
})
}
Date.prototype.Format = function(fmt) {
var o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in o)
if (new RegExp("(" + k + ")").test(fmt))
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k])
.length)));
return fmt;
};
const app = new Vue({
...App
})
app.$mount()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。