月兑活动修改为红色

This commit is contained in:
2023-07-14 16:42:17 +08:00
parent ebb9575bd0
commit f74b177f6d
24 changed files with 2969 additions and 2130 deletions

42
main.js
View File

@@ -1,22 +1,24 @@
import Vue from 'vue'
import App from './App'
import store from './store'
import { VueJsonp } from 'vue-jsonp'
Vue.config.productionTip = false
// Vue.config.ignoredElements = ['wx-open-subscribe']
Vue.prototype.$store = store
import Vue from 'vue'
import App from './App'
import store from './store'
import { VueJsonp } from 'vue-jsonp'
Vue.config.productionTip = false
// Vue.config.ignoredElements = ['wx-open-subscribe']
Vue.config.ignoredElements = [ ...Vue.config.ignoredElements, 'wx-open-launch-weapp' ]
Vue.prototype.$store = store
Vue.prototype.$wx = require('jweixin-module')
App.mpType = 'app'
// jsonp
Vue.use(VueJsonp)
const app = new Vue({
...App
})
App.mpType = 'app'
// jsonp
Vue.use(VueJsonp)
const app = new Vue({
...App
})
app.$mount()