mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 19:42:08 +08:00
docs
This commit is contained in:
parent
5860dfb85f
commit
cd839dc6b3
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,7 +1,7 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
/docs
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -1,7 +1,7 @@
|
||||
import qs from 'qs'
|
||||
// axios
|
||||
import request from '@/utils/request'
|
||||
//user api
|
||||
// user api
|
||||
|
||||
// 登录
|
||||
export function login(params) {
|
||||
|
@ -7,16 +7,14 @@
|
||||
<van-tabbar-item to="/about" icon="user-o">
|
||||
关于我
|
||||
</van-tabbar-item>
|
||||
</van-tabbar>
|
||||
<!-- <van-tabbar fixed v-model="active" @change="onChange">
|
||||
</van-tabbar>
|
||||
<!-- <van-tabbar fixed v-model="active" @change="onChange">
|
||||
<van-tabbar-item to="/home" icon="home-o">首页</van-tabbar-item>
|
||||
<van-tabbar-item to="/about" icon="user-o">关于我</van-tabbar-item>
|
||||
</van-tabbar> -->
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
export default {
|
||||
name: 'TabBar',
|
||||
data() {
|
||||
@ -24,9 +22,7 @@ export default {
|
||||
active: 0
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -5,5 +5,5 @@ module.exports = {
|
||||
baseApi: 'https://test.xxx.com/api', // 本地api请求地址,注意:如果你使用了代理,请设置成'/'
|
||||
APPID: 'xxx',
|
||||
APPSECRET: 'xxx',
|
||||
$cdn:'https://imgs.solui.cn'
|
||||
$cdn: 'https://imgs.solui.cn'
|
||||
}
|
||||
|
@ -11,7 +11,7 @@ import store from './store'
|
||||
// 引入全局样式
|
||||
import '@/assets/css/index.scss'
|
||||
// 设置 js中可以访问 $cdn
|
||||
import {$cdn} from '@/config'
|
||||
import { $cdn } from '@/config'
|
||||
Vue.prototype.$cdn = $cdn
|
||||
|
||||
// 全局引入按需引入UI库 vant
|
||||
|
@ -1,6 +1,6 @@
|
||||
// 按需全局引入 vant组件
|
||||
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(Cell)
|
||||
Vue.use(List)
|
||||
|
@ -27,7 +27,7 @@ const createRouter = () =>
|
||||
new Router({
|
||||
// mode: 'history', // 如果你是 history模式 需要配置vue.config.js publicPath
|
||||
// base: '/app/',
|
||||
scrollBehavior: () => ({y: 0}),
|
||||
scrollBehavior: () => ({ y: 0 }),
|
||||
routes: router
|
||||
})
|
||||
|
||||
|
@ -8,7 +8,7 @@ const mutations = {
|
||||
}
|
||||
const actions = {
|
||||
// 设置name
|
||||
setUserName({commit}, name) {
|
||||
setUserName({ commit }, name) {
|
||||
commit('SET_USER_NAME', name)
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
import axios from 'axios'
|
||||
import store from '@/store'
|
||||
import {Toast} from 'vant'
|
||||
import { Toast } from 'vant'
|
||||
// 根据环境不同引入不同api地址
|
||||
import {baseApi} from '@/config'
|
||||
import { baseApi } from '@/config'
|
||||
// create an axios instance
|
||||
const service = axios.create({
|
||||
baseURL: baseApi, // url = base api url + request url
|
||||
|
Loading…
x
Reference in New Issue
Block a user