123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <template>
- <view v-if="goods_info.goods_name" class="goods-detail-container">
-
- <swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true">
- <swiper-item v-for="(item, i) in goods_info.pics" :key="i">
-
- <image :src="item.pics_big" @click="preview(i)"></image>
- </swiper-item>
- </swiper>
-
-
- <view class="goods-info-box">
-
- <view class="price">¥{{goods_info.goods_price}}</view>
-
- <view class="goods-info-body">
-
- <view class="goods-name">{{goods_info.goods_name}}</view>
-
- <view class="favi">
- <uni-icons type="star" size="18" color="gray"></uni-icons>
- <text>收藏</text>
- </view>
- </view>
-
- <view class="yf">快递:免运费</view>
- </view>
-
-
- <rich-text :nodes="goods_info.goods_introduce"></rich-text>
-
-
- <view class="goods_nav">
-
-
-
-
-
- <uni-goods-nav :fill="true" :options="options"
- :buttonGroup="buttonGroup" @click="onClick" @buttonClick="buttonClick" />
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- goods_info: {},
-
- options: [{
- icon: 'shop',
- text: '店铺'
- }, {
- icon: 'cart',
- text: '购物车',
- info: 2
- }],
-
- buttonGroup: [{
- text: '加入购物车',
- backgroundColor: '#ff0000',
- color: '#fff'
- },
- {
- text: '立即购买',
- backgroundColor: '#ffa200',
- color: '#fff'
- }]
- };
- },
- onLoad(options) {
-
- const goods_id = options.goods_id
-
- this.getGoodsDetail(goods_id)
- },
- methods: {
-
- async getGoodsDetail(goods_id) {
- const { data: res } = await
- uni.$http.get('/api/public/v1/goods/detail', { goods_id })
- if (res.meta.status !== 200) return uni.$showMsg()
-
- 空白间隙的问题
- res.message.goods_introduce = res.message.goods_introduce.replace(/<img/g, '<img style="display:block;" ').replace(/webp/g, 'jpg')
-
- this.goods_info = res.message
- },
-
- preview(i) {
-
- uni.previewImage({
-
- current: i,
-
- urls: this.goods_info.pics.map(x => x.pics_big)
- })
- },
-
- onClick(e) {
- if (e.content.text === '购物车') {
-
- uni.switchTab({
- url: '/pages/cart/cart'
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
- swiper {
- height: 750rpx;
-
- image {
- width: 100%;
- height: 100%;
- }
- }
- // 商品信息区域的样式
- .goods-info-box {
- padding: 10px;
- padding-right: 0;
-
- .price {
- color: #c00000;
- font-size: 18px;
- margin: 10px 0;
- }
-
- .goods-info-body {
- display: flex;
- justify-content: space-between;
-
- .goods-name {
- font-size: 13px;
- padding-right: 10px;
- }
- // 收藏区域
- .favi {
- width: 120px;
- font-size: 12px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-left: 1px solid #efefef;
- color: gray;
- }
- }
- // 运费
- .yf {
- margin: 10px 0;
- font-size: 12px;
- color: gray;
- }
- }
- .goods-detail-container {
- // 给页面外层的容器,添加 50px 的内padding,
- // 防止页面内容被底部的商品导航组件遮盖
- padding-bottom: 50px;
- }
- .goods_nav {
- // 为商品导航组件添加固定定位
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- }
- </style>
|