├── php-api/ # 改造后的PHP接口层
├── java-ad-service/ # 若依框架微服务(广告+VIP+分账)
├── uniapp-reader/ # UniApp前端项目
│ ├── pages/ # 各端页面
│ └──
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011121314151617181920212223 |
- import Vue from 'vue'
- import App from './App'
- import store from './store' // store
- import plugins from './plugins' // plugins
- import './permission' // permission
- import { getDicts } from "@/api/system/dict/data"
- import http from '@/utils/request' // 导入HTTP工具
-
- // 注册HTTP工具
- Vue.use(http)
- Vue.use(plugins)
-
- Vue.config.productionTip = false
- Vue.prototype.$store = store
- Vue.prototype.getDicts = getDicts
-
- App.mpType = 'app'
-
- const app = new Vue({
- ...App
- })
-
- app.$mount()
|