xiaofangweibao-applet/main.js

78 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2024-04-07 11:10:47 +08:00
import App from './App'
import request from 'utils/request.js' //引入异步请求函数
import share from '@/utils/share.js'
Vue.mixin(share)
// #ifndef VUE3
import Vue from 'vue'
// uview
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
Vue.prototype.request = request.request //挂载到全局
// let imgurldev = 'http://localhost:8083'
let imgurl = 'https://ga.rasmall.cn/prod-api'
Vue.prototype.myimgurl = function () {
return imgurl;
};
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
...App
})
let adlist = [
{
bannerAd: 'adunit-3187490d80ba92ca',//Banner广告
gridAd: 'adunit-26da28df208c002c',//原生广告
videoAd: 'adunit-e3777ebcaaad92af',//视频广告
awardAd: 'adunit-c6b420834b40ddbb',//激励式广告
plaqueAd: 'adunit-67e3b026600b6582',//插屏广告
}
]
function myad(){
return adlist;
}
function jump(url){
uni.navigateTo({
url: url
});
}
// function GoLogin(url){
// uni.redirectTo({
// url: '/pages/login/login'
// });
// uni.switchTab({
// url: '/pages/index/index'
// });
// }
function Godetails(v,url){
console.log(JSON.stringify(v))
uni.navigateTo({
url:url+'?params='+ JSON.stringify(v)
})
}
function ZH(json){
return JSON.parse(json)
}
function mes(str){
uni.showToast({
title:str,
icon:'none'
})
}
Vue.prototype.jump = jump;
Vue.prototype.myad = myad;
Vue.prototype.mes = mes;
Vue.prototype.Godetails = Godetails;
Vue.prototype.ZH = ZH;
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}
// #endif