最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

vue基于better-scroll仿京東分類列表

 更新時間:2020年06月30日 15:37:19   作者:雅雅嘿  
這篇文章主要為大家詳細介紹了vue基于better-scroll仿京東分類列表,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了vue基于better-scroll仿京東分類列表的具體代碼,供大家參考,具體內(nèi)容如下

效果圖目錄結構

1、main.js(需要安裝router)

import Vue from 'vue'
import App from './App.vue'
import router from './router'
import '../src/assets/js/mock'
import axios from 'axios'
 
axios.defaults.baseURL='http://mockjs.com/api'
Vue.prototype.$http=axios
Vue.config.productionTip = false
 
new Vue({
 router,
 render: h => h(App)
}).$mount('#app')

2、router.js

如果字體圖標引入錯誤,百度阿里字體圖標引入方法

import Vue from 'vue'
import Router from 'vue-router'
import './assets/css/iconfont.css' //全局引入字體圖標
 
Vue.use(Router)
 
export default new Router({
 linkExactActiveClass:'active',
 mode: 'history',
 base: process.env.BASE_URL,
 routes: [
 {
 path: '/',
 name: 'home',
 component: ()=>import('./views/home.vue')
 },
 {
 path: '/class',
 name: 'class',
 component: () => import('./views/class.vue')
 },
 {
 path: '/shopcart',
 name: 'shopcart',
 component: () => import('./views/shopcart.vue')
 }, 
 {
 path:'/me',
 name:'me',
 component:()=>import('./views/me.vue')
 }
 ]
})

 3、App.vue

<template>
 <div id="app">
 <router-view></router-view>
 <v-tabbar></v-tabbar>
 </div>
</template>
<script>
import tabbar from '../components/tabbar';
export default {
 components:{
 'v-tabbar':tabbar,
 },
}
</script>
 
<style lang="scss">
* {
 margin: 0;
 padding: 0;
}
html {
 height: 100%;
}
body {
 height: 100%;
 background-color: #efeff4;
}
a {
 text-decoration: none;
 color: #000;
}
li {
 list-style: none;
}
.clearfix:after {
 content: '.';
 display: block;
 clear: both;
 visibility: hidden;
 height: 0;
 font-size: 0;
}
#app {
 font-family: "Avenir", Helvetica, Arial, sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 text-align: center;
 color: #2c3e50;
 height: 100%;
}
</style>

4、tabbar.vue

<template>
 <div class="tabbar">
 <div class="tabbar">
 <router-link class="tab_list" to="/" exact>
 <i class="iconfont">&#xe5ad;</i>
 <p>首頁</p>
 </router-link>
 <router-link class="tab_list" to="/class">
 <i class="iconfont">&#xe62f;</i>
 <p>分類</p>
 </router-link>
 <router-link class="tab_list" to="/shopcart">
 <i class="iconfont">&#xe660;</i>
 <p>購物車</p>
 </router-link>
 <router-link class="tab_list" to="/me">
 <i class="iconfont">&#xe60d;</i>
 <p>我的</p>
 </router-link>
 </div>
 </div>
</template>
<style lang="scss" scoped>
.tabbar {
 position: fixed;
 display: flex;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 42px;
 padding-top: 8px;
 background-color: #fff;
 .tab_list {
 flex: 1;
 i {
 font-size: 18px;
 }
 p {
 font-size: 14px;
 }
 }
 .active {
 color: #ffaf77;
 }
}
</style>
5、class.vue
<template>
 <div class="class">
 <div class="head">
 <i class="iconfont">&#xe62d;</i>
 <span>分類</span>
 </div>
 <div class="main">
 <div class="wrapper" ref="wrapper">
 <ul class="content">
 <!-- 分類列表 -->
 <li v-for="(item,index) in detialList" :key="index" @click="listClick(index)" :class="index===active?'active':''">{{item.list}}</li>
 </ul>
 </div>
 <div class="detialList_box">
 <!-- 分類詳情列表 -->
 <ul class="detialList clearfix" v-for="(item,index) in detialList" v-show="index===active" :key="index">
 <li class="detial_title">{{item.list}}</li>
 <li v-for="(item,index) in item.detial" :key="index">
 <img :src="item.src" alt="">
 <p>{{item.text}}</p>
 </li>
 </ul>
 <div class="padding_color"></div>
 </div>
 </div>
 </div>
</template>
<script>
import BScroll from "better-scroll";
export default {
 data() {
 return {
 detialList: [ //分類數(shù)據(jù)
 {
 list:'保健品',
 detial:[
 {src:require('../assets/images/shop1.png'),text:'愛他美'},
 {src:require('../assets/images/shop1.png'),text:'愛他美'},
 {src:require('../assets/images/shop1.png'),text:'愛他美'},
 {src:require('../assets/images/shop1.png'),text:'愛他美'},
 {src:require('../assets/images/shop1.png'),text:'愛他美'},
 {src:require('../assets/images/shop1.png'),text:'愛他美'},
 ]
 },
 {
 list:'酒水',
 detial:[
 {src:require('../assets/images/shop1.png'),text:'酒水'},
 {src:require('../assets/images/shop1.png'),text:'酒水'},
 {src:require('../assets/images/shop1.png'),text:'酒水'},
 {src:require('../assets/images/shop1.png'),text:'酒水'},
 {src:require('../assets/images/shop1.png'),text:'酒水'},
 {src:require('../assets/images/shop1.png'),text:'酒水'},
 ]
 },
 {
 list:'茶葉',
 detial:[
 {src:require('../assets/images/shop1.png'),text:'茶葉'},
 {src:require('../assets/images/shop1.png'),text:'茶葉'},
 {src:require('../assets/images/shop1.png'),text:'茶葉'},
 {src:require('../assets/images/shop1.png'),text:'茶葉'},
 {src:require('../assets/images/shop1.png'),text:'茶葉'},
 {src:require('../assets/images/shop1.png'),text:'茶葉'},
 ]
 },
 {
 list:'農(nóng)產(chǎn)品',
 detial:[
 {src:require('../assets/images/shop1.png'),text:'農(nóng)產(chǎn)品'},
 {src:require('../assets/images/shop1.png'),text:'農(nóng)產(chǎn)品'},
 {src:require('../assets/images/shop1.png'),text:'農(nóng)產(chǎn)品'},
 {src:require('../assets/images/shop1.png'),text:'農(nóng)產(chǎn)品'},
 {src:require('../assets/images/shop1.png'),text:'農(nóng)產(chǎn)品'},
 {src:require('../assets/images/shop1.png'),text:'農(nóng)產(chǎn)品'},
 ]
 },
 ],
 active:0,
 detialtext:'保健品'
 };
 },
 methods: {
 listClick(index){ //顯示隱藏分類詳情
 this.active=index;
 this.detialtext=index;
 }
 },
 created() {
 // mockjs模擬數(shù)據(jù)
 // this.$http.get("/detial").then(res => {
 // this.detialList=res.data.detials
 // });
 },
 mounted() {
 this.$nextTick(() => {
 this.scroll = new BScroll(this.$refs.wrapper, { //better-scroll初始化
 scrollY, //豎向滾動
 click:true //滾動區(qū)域可觸發(fā)點擊事件
 });
 });
 }
};
</script>
<style lang="scss" scoped>
.class {
 height: 100%;
 .head {
 position: fixed;
 z-index: 999;
 top: 0;
 left: 0;
 height: 44px;
 width: 100%;
 line-height: 44px;
 text-align: center;
 color: #fff;
 background-color: #ff8c3c;
 i {
 position: absolute;
 left: 10px;
 }
 }
 .main {
 display: flex;
 height: 100%;
 .wrapper {
 overflow: hidden;
 width: 80px;
 height: 100%;
 background-color: #fff;
 .content {
 padding-top: 40px;
 padding-bottom: 80px;
 li {
 height: 40px;
 width: 80px;
 line-height: 40px;
 padding-left: 10px;
 text-align: left;
 background-color: #fff;
 border: 1px solid #efeff4;
 }
 .active {
 background-color: #efeff4;
 border-left: 2px solid #ff0000;
 }
 }
 }
 .detialList_box {
 flex: 1;
 overflow: hidden;
 margin: 0 8px;
 background-color: #fff;
 .detialList {
 padding-bottom: 20px;
 li {
 float: left;
 width: 33.3333333%;
 img {
 width: 100%;
 }
 }
 .detial_title{
 height: 40px;
 width: 100%;
 line-height: 40px;
 margin-top: 40px;
 background-color: #efeff4;
 }
 }
 .padding_color {
 background-color: #efeff4;
 height: 100%;
 }
 }
 }
}
</style>

關于vue.js組件的教程,請大家點擊專題vue.js組件學習教程進行學習。

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • element ui循環(huán)調(diào)用this.$alert 消息提示只顯示最后一個

    element ui循環(huán)調(diào)用this.$alert 消息提示只顯示最后一個

    這篇文章主要介紹了element ui循環(huán)調(diào)用this.$alert 消息提示只顯示最后一個,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-10-10
  • vuejs router history 配置到iis的方法

    vuejs router history 配置到iis的方法

    今天小編就為大家分享一篇vuejs router history 配置到iis的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2018-09-09
  • vue項目實現(xiàn)通過ip地址訪問和localhost訪問方式

    vue項目實現(xiàn)通過ip地址訪問和localhost訪問方式

    這篇文章主要介紹了vue項目實現(xiàn)通過ip地址訪問和localhost訪問方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-09-09
  • VUE中template的三種寫法

    VUE中template的三種寫法

    這篇文章介紹了VUE中template的三種寫法,文中通過示例代碼介紹的非常詳細。對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-04-04
  • Vue使用正則校驗文本框為正整數(shù)

    Vue使用正則校驗文本框為正整數(shù)

    這篇文章主要介紹了Vue使用正則校驗文本框為正整數(shù)問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-10-10
  • vuejs開發(fā)組件分享之H5圖片上傳、壓縮及拍照旋轉的問題處理

    vuejs開發(fā)組件分享之H5圖片上傳、壓縮及拍照旋轉的問題處理

    這篇文章主要介紹了vuejs開發(fā)組件分享之H5圖片上傳、壓縮及拍照旋轉的問題處理,需要的朋友可以參考下
    2017-03-03
  • 實現(xiàn)elementUI表單的全局驗證的方法步驟

    實現(xiàn)elementUI表單的全局驗證的方法步驟

    這篇文章主要介紹了實現(xiàn)elementUI表單的全局驗證的方法步驟,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2019-04-04
  • Vue3的7種種組件通信詳情

    Vue3的7種種組件通信詳情

    Vue3兼容大部分Vue2的特性,用Vue2代碼開發(fā)Vue3都可以,性能上面打包大小減少 41%,初次渲染快 55%,更新快 133%,內(nèi)存使用減少 54%,本篇文章主要介紹Vue3的7種種組件通信,需要的朋友可以參考下面文章的具體內(nèi)容
    2021-09-09
  • socket io與vue-cli的結合使用的示例代碼

    socket io與vue-cli的結合使用的示例代碼

    這篇文章主要介紹了socket io與vue-cli的結合使用的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-11-11
  • Vue組件通信深入分析

    Vue組件通信深入分析

    對于vue來說,組件之間的消息傳遞是非常重要的,用vue可以是要組件復用的,而組件實例的作用域是相互獨立,這意味著不同組件之間的數(shù)據(jù)無法互相引用,一般來說,組件之間可以有幾種關系,下面是我對組件之間消息傳遞的常用方式的總結
    2022-08-08

最新評論

卫辉市| 漳浦县| 化德县| 美姑县| 朔州市| 青州市| 五大连池市| 湘阴县| 湘潭市| 眉山市| 即墨市| 浦江县| 康平县| 观塘区| 遂宁市| 靖江市| 秀山| 贵德县| 鄂温| 博客| 平山县| 石屏县| 富民县| 绥芬河市| 新郑市| 百色市| 沙河市| 南宁市| 济宁市| 石嘴山市| 谢通门县| 金川县| 托克逊县| 得荣县| 湾仔区| 广昌县| 华亭县| 渑池县| 乌拉特后旗| 梅州市| 河曲县|