代码拉取完成,页面将自动刷新
同步操作将从 恩创软件开发/无人自助共享棋牌室茶室台球室系统JAVA版本支持小程序+公众号 uniApp前端模板 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import Vue from 'vue'
import App from './App'
import "@/utils/request/requireJS.js"
import uView from "uni_modules/uview-ui"
import store from './store/index.js'
import schema from 'async-validator'
import dialog from './utils/dialog'
import cookie from '@/utils/store/cookie'
import {router,RouterMount} from './router/router.js' //路径换成自己的
import { parseRoute, _router, parseQuery } from '@/utils'
import { VUE_APP_RESOURCES_URL, VUE_APP_API_URL } from '@/config'
import { navTo,showToast } from '@/utils/index'
import {
showSuccess,
showError,
getShareUrlParams
} from './utils/app'
//import share from '@/utils/share.js'
//import { share } from "@/utils/tool/lib/share"
//import shareMixin from '@/components/share/share'
//import wxshare from '@/uview-ui/libs/mixin/mpShare.js'
//引入分享
import {share} from './mixins/index.js'
Vue.mixin(share)
Vue.prototype.$store = store
Vue.prototype.$navTo = navTo
Vue.prototype.$getShareUrlParams = getShareUrlParams
Vue.prototype.$toast = showToast
Vue.prototype.$success = showSuccess
Vue.prototype.$error = showError
Vue.config.productionTip = false
Vue.config.devtools = process.env.NODE_ENV !== 'production'
Vue.prototype.$validator = function (rule) {
return new schema(rule)
}
// #ifndef VUE3
Vue.config.productionTip = false
Vue.use(uView);
// Vue.use(router)
App.mpType = 'app'
const app = new Vue({
...App,
store,
})
Object.defineProperty(Vue.prototype, '$yrouter', {
get() {
return _router
},
})
Object.defineProperty(Vue.prototype, '$yroute', {
get() {
return this._route
},
})
Vue.prototype.$VUE_APP_API_URL = VUE_APP_API_URL
try {
function isPromise(obj) {
return (
!!obj &&
(typeof obj === "object" || typeof obj === "function") &&
typeof obj.then === "function"
);
}
// 统一 vue2 API Promise 化返回格式与 vue3 保持一致
uni.addInterceptor({
returnValue(res) {
if (!isPromise(res)) {
return res;
}
return new Promise((resolve, reject) => {
res.then((res) => {
if (res[0]) {
reject(res[0]);
} else {
resolve(res[1]);
}
});
});
},
});
} catch (error) {}
/* const app = new Vue({
store,
...App
}) */
let deviceType = ''
// #ifdef APP-PLUS
// App平台编译的代码
deviceType = 'app'
Vue.prototype.$platform = uni.getSystemInfoSync().platform
// #endif
// #ifdef MP-WEIXIN
// 微信小程序编译的代码
deviceType = 'routine'
// #endif
// !!! ps 不建议在 template 中使用 $deviceType 去判断当前环境,很有可能出现 $deviceType 为 undefined 导致判断出错的问题,可以在 script 模块中正常使用
// 建议通过 store 去获取 $deviceType 可以保证 template 中取到的值有效
// import { mapState, mapMutations, mapActions } from 'vuex';
// computed: {
// ...mapState(['$deviceType'])
// },
// #ifdef H5
// H5编译的代码
import { wechat, clearAuthStatus, oAuth, auth, toAuth, pay,
openAddress, openShareAll, openShareAppMessage, openShareTimeline,
wechatEvevt, ready, wxShowLocation } from '@/libs/wechat'
import { isWeixin } from '@/utils'
if (!cookie.has(cookie.CACHE_KEY)) {
cookie.clearAll()
cookie.set(cookie.CACHE_KEY, 1)
}
var urlSpread = parseQuery()['spread']
if (urlSpread) {
cookie.set('spread', urlSpread)
}
// #endif
// #ifdef H5
// H5编译的代码
// 判断是否是微信浏览器
async function init() {
if (isWeixin()) {
deviceType = 'weixin'
let wechatInit = wechat()
if (wechatInit) {
await oAuth()
}
} else {
deviceType = 'weixinh5'
}
}
init()
// #endif
Vue.prototype.$deviceType = deviceType
Vue.mixin({
onLoad() {
const { $mp } = this.$root
this._route = parseRoute($mp)
},
onShow() {
_router.app = this
_router.currentRoute = this._route
},
// 这里为了解决 .vue文件中 template 无法获取 VUE.prototype 绑定的变量
computed: {
$VUE_APP_RESOURCES_URL() {
return VUE_APP_RESOURCES_URL
},
},
//shareMixin
//wxshare
})
store.commit('updateDevicetype', deviceType)
app.$mount()
// #endif
// #ifdef VUE3
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
// #ifdef H5
RouterMount(app,router,'#app')
// #endif
// #ifndef H5
app.$mount(); //为了兼容小程序及app端必须这样写才有效果
// #endif
return {
app
}
}
// #endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。