This commit is contained in:
sunnie 2020-05-28 16:24:37 +08:00
parent 5860dfb85f
commit cd839dc6b3
10 changed files with 12 additions and 16 deletions

2
.gitignore vendored
View File

@ -1,7 +1,7 @@
.DS_Store .DS_Store
node_modules node_modules
/dist /dist
/docs
# local env files # local env files
.env.local .env.local
.env.*.local .env.*.local

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -1,7 +1,7 @@
import qs from 'qs' import qs from 'qs'
// axios // axios
import request from '@/utils/request' import request from '@/utils/request'
//user api // user api
// 登录 // 登录
export function login(params) { export function login(params) {

View File

@ -14,9 +14,7 @@
</van-tabbar> --> </van-tabbar> -->
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: 'TabBar', name: 'TabBar',
data() { data() {
@ -24,9 +22,7 @@ export default {
active: 0 active: 0
} }
}, },
methods: { methods: {}
}
} }
</script> </script>

View File

@ -5,5 +5,5 @@ module.exports = {
baseApi: 'https://test.xxx.com/api', // 本地api请求地址,注意:如果你使用了代理,请设置成'/' baseApi: 'https://test.xxx.com/api', // 本地api请求地址,注意:如果你使用了代理,请设置成'/'
APPID: 'xxx', APPID: 'xxx',
APPSECRET: 'xxx', APPSECRET: 'xxx',
$cdn:'https://imgs.solui.cn' $cdn: 'https://imgs.solui.cn'
} }

View File

@ -11,7 +11,7 @@ import store from './store'
// 引入全局样式 // 引入全局样式
import '@/assets/css/index.scss' import '@/assets/css/index.scss'
// 设置 js中可以访问 $cdn // 设置 js中可以访问 $cdn
import {$cdn} from '@/config' import { $cdn } from '@/config'
Vue.prototype.$cdn = $cdn Vue.prototype.$cdn = $cdn
// 全局引入按需引入UI库 vant // 全局引入按需引入UI库 vant

View File

@ -1,6 +1,6 @@
// 按需全局引入 vant组件 // 按需全局引入 vant组件
import Vue from 'vue' import Vue from 'vue'
import {Button, List, Cell, Tabbar, TabbarItem} from 'vant' import { Button, List, Cell, Tabbar, TabbarItem } from 'vant'
Vue.use(Button) Vue.use(Button)
Vue.use(Cell) Vue.use(Cell)
Vue.use(List) Vue.use(List)

View File

@ -27,7 +27,7 @@ const createRouter = () =>
new Router({ new Router({
// mode: 'history', // 如果你是 history模式 需要配置vue.config.js publicPath // mode: 'history', // 如果你是 history模式 需要配置vue.config.js publicPath
// base: '/app/', // base: '/app/',
scrollBehavior: () => ({y: 0}), scrollBehavior: () => ({ y: 0 }),
routes: router routes: router
}) })

View File

@ -8,7 +8,7 @@ const mutations = {
} }
const actions = { const actions = {
// 设置name // 设置name
setUserName({commit}, name) { setUserName({ commit }, name) {
commit('SET_USER_NAME', name) commit('SET_USER_NAME', name)
} }
} }

View File

@ -1,8 +1,8 @@
import axios from 'axios' import axios from 'axios'
import store from '@/store' import store from '@/store'
import {Toast} from 'vant' import { Toast } from 'vant'
// 根据环境不同引入不同api地址 // 根据环境不同引入不同api地址
import {baseApi} from '@/config' import { baseApi } from '@/config'
// create an axios instance // create an axios instance
const service = axios.create({ const service = axios.create({
baseURL: baseApi, // url = base api url + request url baseURL: baseApi, // url = base api url + request url