07_06.商品列表与详情

2017-11-22  本文已影响0人  Robyn_Luo
1. 效果图



2. 项目分析

https://mint-ui.github.io/docs/#/zh-cn2/swipe

3. 项目结构:
4. 代码:
<template>
    <footer>
        <nav class="mui-bar mui-bar-tab">
            <router-link class="mui-tab-item mui-active" to="/">
                <span class="mui-icon mui-icon-home"></span>
                <span class="mui-tab-label">首页</span>
            </router-link>
            <router-link class="mui-tab-item" v-bind:to="{ name: 'gl' }">
                <span class="mui-icon mui-icon-extra mui-icon-extra-gift"></span>
                <span class="mui-tab-label">商品购买</span>
            </router-link>
            <router-link class="mui-tab-item" to="/">
                <span class="mui-icon mui-icon-extra mui-icon-extra-cart"><span class="mui-badge">0</span></span>
                <span class="mui-tab-label">购物车</span>
            </router-link>
            <router-link class="mui-tab-item" to="/">
                <span class="mui-icon mui-icon-gear"></span>
                <span class="mui-tab-label">设置</span>
            </router-link>
        </nav>
        <i></i>
    </footer>
</template>

<script>
    export default {
        
    }
</script>

<style scoped>
i {
    display: block;
    height: 50px;
}
</style>
<template>
    <header>
        <mt-header fixed title="小买卖">
            <!-- 返回按钮只在非首页出现 -->
            <!-- 通过$route.path那到当前路径比较 -->
            <!-- 通过$router.go(-1)方法实现页面返回功能 -->
            <mt-button v-if="$route.path != '/index'" v-on:click="$router.go(-1)"
                icon="back" slot="left"></mt-button>
        </mt-header>
        <i></i>
    </header>
</template>

<script>
    export default {
        
    }
</script>

<style scoped>
header i{
    display: block;
    height: 40px;
}
</style>
// 编写属于自己的公共Vue组件库
import HeaderComponent from './header.vue';
import FooterComponent from './footer.vue';

// Vue插件要求提供一个install方法, 这个方法会被注入Vue
// 需要我们调用Vue的filter component directive去扩展功能
export default {
    install(Vue) {
        Vue.component('app-header', HeaderComponent);
        Vue.component('app-footer', FooterComponent);
    }
};

<template>
  <article class="goods-detail">
    <!-- 轮播图 -->
    <mt-swipe :auto="10000">
      <!-- 我们这个商品缩略图是没有跳转连接的, 不需要router-link -->
      <mt-swipe-item v-for="item in lunbos" v-bind:key="item.src">
        <img v-bind:src="item.src">
      </mt-swipe-item>
    </mt-swipe>

    <!-- 商品购买 -->
    <div class="mui-card">
      <!-- 名称 -->
      <div class="mui-card-header">{{ goodsPrice.title }}</div>
      <!-- 价格 -->
      <div class="mui-card-content mui-card-content-inner">
        <div class="price"> <s>市场价:¥{{ goodsPrice.market_price }}</s> <span>销售价: </span> <em>¥{{ goodsPrice.sell_price }}</em> </div>
        <div> <span>购买数量:</span>
          <!--数字输入框 -->
          <div class="mui-numbox">
            <button class="mui-btn mui-btn-numbox-minus">-</button>
            <input class="mui-input-numbox" type="number">
            <button class="mui-btn mui-btn-numbox-plus">+</button>
          </div>
        </div>
      </div>
      <!-- 按钮 -->
      <div class="mui-card-footer">
        <button type="button" class="mui-btn mui-btn-success mui-btn-block mui-btn-outlined">结算</button>
        <div></div>
        <button type="button" class="mui-btn mui-btn-success mui-btn-block mui-btn-outlined">加入购物车</button>
      </div>
    </div>

        <!-- 评论与介绍 -->
        <div class="mui-card">
            <!-- 选项卡, 利用value的值控制选取那个子元素 -->
      <mt-navbar v-model="navbarSelector">
              <mt-tab-item id="commont">商品评论</mt-tab-item>
              <mt-tab-item id="intro">图文介绍</mt-tab-item>
            </mt-navbar>
            <!-- 内容, 利用value的值控制选取那个子元素 -->
      <mt-tab-container v-model="navbarSelector">
              <mt-tab-container-item id="commont">
                <p>内容1</p>
              </mt-tab-container-item>
              <mt-tab-container-item id="intro">
                <p>内容2</p>
              </mt-tab-container-item>
            </mt-tab-container>
        </div>

  </article>
</template>

<script>
export default {
  data() {
    return {
      id: this.$route.params.id,
      lunbos: [],
      goodsPrice: {},
      navbarSelector: 'commont'
    };
  },

  methods: {
    // 获取商品缩略图
    getGoodsThumList() {
      this.axios.get(this.api.goodsT + this.id)
      .then( rsp => this.lunbos = rsp.data.message );
    },

    // 获取商品价格信息
    getGoodsPrice() {
      this.axios.get(this.api.goodsP + this.id)
      .then( rsp => this.goodsPrice = rsp.data.message[0] );
    }
  },

  created() {
    this.getGoodsThumList();
    this.getGoodsPrice();
  }
}
</script>

<style lang="less">
  .goods-detail {
    .mui-card-content {
      .price {
        color: rgb(51, 51, 51);
        margin-bottom: 4px;
        span {
          margin-left: 6px;
        }
        em {
          font-size: 18px;
          color: red;
        }
      }
    }
    .mui-card-footer {
      div {
        width: 100%;
      }
      .mui-btn {
        padding: 8px 0;
        font-size: 16px;
      }
    }
    .mint-tab-item {
        &.is-selected {
            margin-bottom: 0;
            border-bottom: 3px solid #2ce094;
            color: #2ce094;
        }
    }
    .mint-tab-item-label {
        font-size: 18px;
        color: #2ce094;
    }
  }
  // 给轮播图加个高度
  .mint-swipe {
    height: 260px;
    background-color: white;
    img {
      display: block;
      margin: 0 auto;
      max-width: 100%;
      height: 260px;
    }
  }
</style>
<template>
  <article>
    <ul class="mui-table-view mui-grid-view">
      <!-- 商品详情 -->
      <li v-for="item in goodsList" v-bind:key="item.id"
       class="mui-table-view-cell mui-media mui-col-xs-6">
        <router-link v-bind:to="{ name: 'gd', params: { id: item.id } }">
            <div class="mui-card">
              <!-- 商品图片 -->
              <div class="mui-card-header">
                <img v-bind:src="item.img_url" alt="" />
              </div>
              <!-- 商品描述 -->
              <div class="mui-card-footer ">
                <p class="mui-ellipsis-2">{{ item.title }}</p>
              </div>
              <!-- 商品价格 -->
              <div class="mui-card-content">
                <p class="price">
                    <span>¥{{ item.sell_price }}</span>
                    <s>¥{{ item.market_price }}</s>
                </p>
                <p class="tip">
                    <span>热卖中</span>
                    <span>剩余{{ item.stock_quantity }}件</span>
                </p>
              </div>
            </div>
        </router-link>
      </li>
    </ul>
    <!-- 加载更多 -->
    <button v-on:click="loadMore()" v-bind:disabled="lastPage"
      class="mui-btn mui-btn-success mui-btn-block mui-btn-outlined">
      {{ lastPage? '已经是最后一页了': '加载更多' }}  
    </button>
  </article>
</template>

<script>
export default {
  data() {
    return {
      goodsList: [],
      pageIndex: 1,
      lastPage: false  // 是否最后一页
    };
  },

  methods: {
    // 获取商品列表, 需要一个pageindex查询字符串, 用来指定页码
    getGoodsList() {
      this.axios.get(`${this.api.goodsL}?pageindex=${this.pageIndex}`)
      .then(
        rsp => {
          this.goodsList.push(...rsp.data.message);
          this.isLastPath(rsp.data.message);
        }
      )
    },

    // 加载下一页数据
    loadMore() {
      this.pageIndex++;
      this.getGoodsList();
    },

    // 判断是不是最后一页数据, 是的话把lastPage设为true
    isLastPath(goodsList) {
      if(goodsList.length == 0) {
        this.lastPage = true;
      }
    }
  },

  created() {
    this.getGoodsList();
  }

};
</script>

<style lang="less" scoped>
.mui-card {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, .3);
}
.mui-card-header {
  padding: 8px;
  /*height: 100px;*/
  img {
    width: 100%;
    height: 100%;
  }
}
.mui-card-content {
  text-align: center;
  .price {
    margin-bottom: 4px;
    color: #000;
    span {
      color: red;
    }
  }
  .tip {
    overflow: hidden;
    padding: 0 8px;
    font-size: 12px;
    span:first-child {
      float: left;
    }
    span:last-child {
      float: right;
    }
  }
}
</style>
<template>
    <article>
        <!-- 轮播图 -->
        <mt-swipe :auto="10000">
            <mt-swipe-item v-for="item in lunbos" v-bind:key="item.url">
                <router-link v-bind:to="item.url">
                    <img v-bind:src="item.img">
                </router-link>
            </mt-swipe-item>
        </mt-swipe>
        <!-- 六宫格 -->
        <ul class="mui-table-view mui-grid-view mui-grid-9">
            <li class="mui-table-view-cell mui-media mui-col-xs-4 mui-col-sm-3">
                <router-link to="/">
                    <span class="mui-icon mui-icon-home"></span>
                    <div class="mui-media-body">首页</div>
                </router-link>
            </li>
            <li class="mui-table-view-cell mui-media mui-col-xs-4 mui-col-sm-3">
                <router-link to="/news/list">
                    <span class="mui-icon mui-icon-chat"></span>
                    <div class="mui-media-body">热点新闻</div>
                </router-link>
            </li>
            <li class="mui-table-view-cell mui-media mui-col-xs-4 mui-col-sm-3">
                <router-link to="/photo/list/0">
                    <span class="mui-icon mui-icon-image"></span>
                    <div class="mui-media-body">图片分享</div>
                </router-link>
            </li>
            <li class="mui-table-view-cell mui-media mui-col-xs-4 mui-col-sm-3">
                <router-link to="/">
                    <span class="mui-icon mui-icon-search"></span>
                    <div class="mui-media-body">搜索</div>
                </router-link>
            </li>
            <li class="mui-table-view-cell mui-media mui-col-xs-4 mui-col-sm-3">
                <router-link to="/">
                    <span class="mui-icon mui-icon-phone"></span>
                    <div class="mui-media-body">联系我们</div>
                </router-link>
            </li>
            <li class="mui-table-view-cell mui-media mui-col-xs-4 mui-col-sm-3">
                <router-link to="/">
                    <span class="mui-icon mui-icon-info"></span>
                    <div class="mui-media-body">关于我们</div>
                </router-link>
            </li>
        </ul>
    </article>
</template>

<script>
export default {
    data() {
        return {
            lunbos: []
        }
    },

    methods: {
        // 请求数据, 成功后把数据存储到lunbos中
        getLunbo() {
            this.axios.get(this.api.getLunbo)
            .then( rep => this.lunbos = rep.data.message );
        }
    },

    // 组件初始化完毕后, 自动调用接口获取数据渲染轮播图
    created() {
        this.getLunbo();
    }
}
</script>

<style lang="less" scoped>
@height: 260px;
article {
    height: @height;
    img {
        height: @height;
    }
}
</style>

<template>
    <article>
        <!-- 使用mui的卡片视图布局, 注意: 卡片视图都是flex, 这里把他改成block -->
        <div class="mui-card">
            <div class="mui-card-header">
                <h4>{{ newsDetail.title }}</h4>
                <p class="mui-ellipsis">
                    <span>创建时间: {{ newsDetail.add_time | date }}</span>
                    <span>点击数: {{ newsDetail.click }}</span>
                </p>
            </div>
            <!-- content内容中含有html标签, 要让它正常展示, 必须使用v-html -->
            <div class="mui-card-footer" v-html="newsDetail.content"></div>
        </div>
    </article>
</template>

<script>
export default {
    data() {
        return {
            newsDetail: {}
        };
    },

    methods: {
        // 获取新闻详情, 注意这里接口返回的是一个数组, 我们需要通过下标那新闻详情对象
        getNewsDetail() {
            this.axios.get(this.api.getND + this.$route.params.id)
            .then( rsp => this.newsDetail = rsp.data.message[0] )
        }
    },

    created() {
        this.getNewsDetail();
    }
}
</script>

<style scoped>
article {
    overflow: hidden;
}
.mui-card-header, .mui-card-footer {
    display: block;
}
</style>
<template>
    <article>
        <ul class="mui-table-view">
            <li class="mui-table-view-cell mui-media" 
                v-for="item in newsList" v-bind:key="item.id">
                <router-link v-bind="{ to: `/news/detail/${item.id}` }">
                    <img class="mui-media-object mui-pull-left" v-bind:src="item.img_url">
                    <div class="mui-media-body">
                        <h4 class="mui-ellipsis">{{ item.title }}</h4>
                        <p class="mui-ellipsis">
                            <span>创建时间: {{ item.add_time | date }}</span>
                            <span>点击数: {{ item.click }}</span>
                        </p>
                    </div>
                </router-link>
            </li>
        </ul>
    </article>
</template>

<script>
export default {

    data() {
        return {
            newsList: []
        };
    },

    methods: {
        // 获取新闻列表数据
        getNewsList() {
            this.axios.get(this.api.getNL)
            .then( rsp => this.newsList = rsp.data.message )
        }
    },

    // 上来就调用接口初始化数据
    created() {
        this.getNewsList();
    }
}
</script>

<style scoped>

</style>
<template>
    <article>
        <!-- 使用mui的卡片视图布局, 注意: 卡片视图都是flex, 这里把他改成block -->
        <div class="mui-card">
            <div class="mui-card-header">
                <h4>{{ photoDetail.title }}</h4>
                <p class="mui-ellipsis">
                    <span>创建时间: {{ photoDetail.add_time | date }}</span>
                    <span>点击数: {{ photoDetail.click }}</span>
                </p>
            </div>
            <!-- 使用mui的图文表格布局 -->
            <ul class="mui-table-view mui-grid-view">
                <li class="mui-table-view-cell mui-media mui-col-xs-4"
                    v-for="item in photoThumList" v-bind:key="item.src">
                    <img class="mui-media-object" v-bind:src="item.src" v-preview="item.src">
                </li>
            </ul>
            <!-- content内容中含有html标签, 要让它正常展示, 必须使用v-html -->
            <div class="mui-card-footer">{{ photoDetail.content }}</div>
        </div>
    </article>
</template>

<script>
export default {
    data() {
        return {
            id: this.$route.params.id,
            photoDetail: {},
            photoThumList: []
        };
    },

    methods: {
        // 获取图片详情
        getPhotoDetail() {
            this.axios.get(this.api.photoD + this.id)
            .then( rsp => this.photoDetail = rsp.data.message[0] )
        },

        // 获取图片缩略图
        getphotoThumList() {
            this.axios.get(this.api.photoT + this.id)
            .then( rsp => this.photoThumList = rsp.data.message )
        }
    },

    created() {
        this.getPhotoDetail();
        this.getphotoThumList();
    }
}
</script>

<style scoped>
.mui-card-header, .mui-card-footer {
    display: block;
}
.mui-card h4 {
    font-size: 14px;
}
</style>
<template>
    <article>
        <!-- 使用mui的列表布局 -->
        <ul class="mui-table-view">
            <li class="mui-table-view-cell">
                <router-link v-bind:to="{ name: 'pl', params: { id: 0 } }">全部</router-link>
            </li>
            <li v-for="item in photoCategoryList" v-bind:key="item.id"
                class="mui-table-view-cell">
                <router-link v-bind:to="{ name: 'pl', params: { id: item.id } }">{{ item.title }}</router-link>    
            </li>
        </ul>

        <!-- 使用mui的卡片视图布局 -->
        <div class="mui-card" v-for="item in photoList" v-bind:key="item.id">
            <router-link v-bind:to="{ name: 'pd', params: { id: item.id } }">
                <div class="mui-card-header mui-card-media" v-bind="{ style: `height:40vw;background-image:url(${item.img_url})` }"></div>
                <div class="mui-card-content">
                    <div class="mui-card-content-inner">
                        <p>{{ item.title }}</p>
                        <p style="color: #333;">{{ item.zhaiyao }}</p>
                    </div>
                </div>
            </router-link>
        </div>
    </article>
</template>

<script>
export default {
    data() {
        return {
            photoCategoryList: [],
            photoList: []
        };
    },

    methods: {
        // 获取图片分类列表
        getPhotoCategoryList() {
            this.axios.get(this.api.photoC)
            .then( rsp => this.photoCategoryList = rsp.data.message );
        },

        // 获取图片列表, 需要使用分类ID来获取指定的图片列表
        getPhotoList() {
            this.axios.get(this.api.photoL + this.$route.params.id)
            .then( rsp => this.photoList = rsp.data.message );
        }
    },

    // 在组件初始化完毕后执行一次
    created() {
        this.getPhotoCategoryList();
        this.getPhotoList();
    },

    watch: {

        // 监听url的变化, 变化后拿到新的id, 
        // 调用接口发送请求修改photoList数据
        $route() {
            this.getPhotoList();
        }
    }
}
</script>

<style lang="less" scoped>
.mui-table-view {
    overflow: hidden;
    li {
        float: left;
        color: deepskyblue;
    }
}

.mui-card-header, .mui-card-header {
    display: block;
}
</style>
<template>
    <main>
        <lg-preview></lg-preview>
        <app-header></app-header>
        <router-view></router-view>
        <app-footer></app-footer>
    </main>
</template>

<script>
export default {
    
}
</script>

<style scoped>

</style>
export default function(time) {
    let date = new Date(time);
    return `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}`;
};

import DateFilter from './date.js';

export default {
    install(Vue) {
        Vue.filter('date', DateFilter);
    }
};

const domain = 'http://vue.studyit.io/api';

export default {

    // 获取轮播图的接口
    getLunbo: `${domain}/getlunbo`,

    // 新闻相关接口
    getNL: `${domain}/getnewslist`,
    getND: `${domain}/getnew/`,             // 该接口后面需要一个id

    // 图片相关接口
    photoC: `${domain}/getimgcategory/`,
    photoL: `${domain}/getimages/`,      // 该接口后面需要一个分类id: /getimages/:id
    photoD: `${domain}/getimageinfo/`,   // 该接口后面需要一个图片id: /getimageinfo/:id
    photoT: `${domain}/getthumimages/`,  // 该接口后面需要一个图片id: /getthumimages/:id

    // 商品相关接口
    goodsL: `${domain}/getgoods/`,          // 该接口后面需要一个页码: /getgoods/?pageindex=number
    goodsD: `${domain}/goods/getdesc/`,     // 该接口后面需要一个商品id: /getdesc/:id
    goodsT: `${domain}/getthumimages/`,     // 该接口后面需要一个商品id: /getthumimages/:id
    goodsP: `${domain}/goods/getinfo/`,           // 该接口后面需要一个商品id: /getinfo/:id

    // 购物车相关接口
    shopcL: `${domain}/goods/getshopcarlist/`,  // 该接口后面需要一串id: /getshopcarlist/:ids

    // 评论相关接口
    commentL: `${domain}/getcomments/`,     // 该接口后面需要一个id: /getcomments/:id
    commentS: `${domain}/postcomment/`,     // 该接口后面需要一个id: /postcomment/:id, 该需要content内容
};

// from后面的路径, 如果含有./ ../那么就相对于当前文件找文件
// 如果没有, 那么就会去node_modules里面找对应的包
// 1.1 导入第三方包
import Vue from 'vue';
import MintUi from 'mint-ui';
import 'mint-ui/lib/style.css';
import Common from '../component/common';  // 自动找到index.js引入
import 'mui/dist/css/mui.css';
import 'mui/examples/hello-mui/css/icons-extra.css';
import axios from 'axios';  
import VueRouter from 'vue-router';
import Filter from '../filter';             // 自动找到index.js引入
import '../less/index.less'; 
import VuePP from 'vue-picture-preview';

// 1.2 启用vue插件
Vue.use(MintUi);
Vue.use(Common);
Vue.use(VueRouter);
Vue.use(Filter);
Vue.use(VuePP);

// 2.1 导入配置
import routerConfig from '../router';    // 自动找到index.js引入
import apiConfig from './api_config.js';

// 2.2 扩展实例成员
Vue.prototype.axios = axios;   // 把axios库放置到原型, 将来其他组件直接可以拿到axios对象
Vue.prototype.api = apiConfig;

// 2.3 导入根组件
import AppComponent from '../component/App.vue';

// 2.4 渲染根组件, 启动项目
new Vue({
    el: '#app',
    render(createNode) {
        return createNode(AppComponent);
    },
    router: new VueRouter(routerConfig)
});

.mui-card-footer img {
    width: 100%;
}
// 这里对外导出一个路由配置对象
import HomeComponent from '../component/home/home.vue';
import NewsListComponent from '../component/news/news_list.vue';
import NewsDetailComponent from '../component/news/news_detail.vue';
import PhotoListComponent from '../component/photo/photo_list.vue';
import PhotoDetailComponent from '../component/photo/photo_detail.vue';
import GoodsListComponent from '../component/goods/goods_list.vue';
import GoodsDetailComponent from '../component/goods/goods_detail.vue';

export default {
    routes: [
        // 首页路由配置
        { path: "/", redirect: "/index" },
        { name: "i", path: "/index", component: HomeComponent },

        // 新闻路由配置
        { name: "nl", path: "/news/list", component: NewsListComponent },
        { name: "nd", path: "/news/detail/:id", component: NewsDetailComponent },

        // 图片分享相关路由
        { name: "pl", path: '/photo/list/:id', component: PhotoListComponent },
        { name: "pd", path: '/photo/details/:id', component: PhotoDetailComponent },

        // 商品相关路由
        { name: "gl", path: '/goods/list/', component: GoodsListComponent },
        { name: "gd", path: '/goods/detail/:id', component: GoodsDetailComponent },
    ]
};

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div id="app"></div>
</body>
</html>
{
    "presets": [ "env" ],
    "plugins":["transform-runtime"]
}
# 忽略第三方包, 他们已经记录在package.json文件中了
/node_modules

# 忽略打包后的文件, 因为我们的项目核心是源代码
/dist

# 忽略隐藏文件
.* 

# 不忽略git配置文件和babel配置文件
!.gitignore
!.babelrc


const path = require('path');
const HtmlWP = require('html-webpack-plugin');
const CleanWP = require('clean-webpack-plugin');

module.exports = {
    // 打包的入口文件
    entry: path.resolve(__dirname, './src/js/main.js'),
    // 输出
    output: {
        path: path.resolve(__dirname, './dist'),
        filename: 'bundle.js'
    },
    // 插件配置
    plugins: [
        new HtmlWP({
            template: './src/index.html',
            filename: 'index.html',
            inject: 'body'
        }),
        new CleanWP(['dist'])
    ],
    // 模块配置
    module: {

        // 配置loader规则
        rules: [

            // css
            {
                test: /\.css$/,
                use: [ 'style-loader', 'css-loader' ]
            },

            // less
            {
                test: /\.less$/,
                use: [ 'style-loader', 'css-loader', 'less-loader' ]
            },

            // html
            {
                test: /\.(html|tpl)$/,
                use: [ 'html-loader' ]
            },

            // 静态资源引用
            {
                test: /\.(png|jpeg|gif|jpg|svg|mp3|ttf)$/,
                use: [ 
                    { loader: 'url-loader', options: { limit: 10240 } } // 小于10KB的打包
                ]
            },

            // js
            {
                test: /\.js$/,
                use: [ 'babel-loader' ],
                exclude: path.resolve(__dirname, '../node_modules')
            },

            // vue
            {
                test: /\.vue$/,
                use: [ 'vue-loader' ]
            }

        ]
    }
};

5. 执行webpack-dev-server:

webpack-dev-server

上一篇下一篇

猜你喜欢

热点阅读