123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- <template>
- <view class="goodsDetail">
- <zs-skeleton type="goodsDetail" :loading="pageLoading"></zs-skeleton>
- <image class="good-img" :src="info.goodsPath" mode="aspectFit"></image>
- <view class="price-box">
- <view class="left">
- <view class="num-box">
- <view class="unit">
- ¥
- </view>
- <view class="price">
- {{info.realPrice}}
- </view>
- </view>
- <view class="old-price">
- 市场价 ¥{{info.marketPrice}}
- </view>
- </view>
-
- <view class="right">
- 销量{{info.saleNum}}
- </view>
- </view>
- <view class="goods-info">
- <view class="goods-name">
- {{info.goodsName}}
- </view>
- <view class="desc">
- {{info.goodsDescribe}}
- </view>
- </view>
-
- <!-- 商品规格 -->
- <template v-if="info.specs[0].specValues.length">
- <view class="type-box" v-for="item in info.specs" :key="item.specId">
- <view class="type-title">
- {{item.specName}}
- </view>
- <view class="type-list">
- <view class="type-item" :class="[active == d?'active':'' ]" v-for="(i,d) in item.specValues" :key="i.specId" @click="choose(d)">
- {{i.specValue}}
- </view>
- </view>
- </view>
- </template>
-
- <view class="tab-group">
- <view class="tab" :class="[tab == 1 ? 'active':'']" @click="handleTab(1)">
- 商品详情
- </view>
- <view class="tab" :class="[tab == 2 ? 'active':'']" @click="handleTab(2)">
- 购买须知
- </view>
- </view>
- <view class="desc-box" v-show="tab == 1">
- <rich-text class="goods-desc" :nodes="info.goodsDetail"></rich-text>
- </view>
- <view class="list" v-show="tab == 2">
- <view class="item" v-for="(item,index) in info.attrs" :key="index">
- <view class="label">
- {{item.attrName == 'validDay'?'有效期':item.attrName}}
- </view>
- <view class="value" v-html="filterMsg(item.attrValue,item.attrName)">
-
- </view>
- </view>
- <!-- <view class="item">
- <view class="label">
- 使用时间
- </view>
- <view class="value">
- 营业时间内可用
- </view>
- </view> -->
- </view>
-
-
- <view class="buy-box">
- <image class="head" :src="info.shopInfo.logoPath" @click="goShopDetail(shopInfo)" mode=""></image>
- <view class="btn-box">
-
- <!-- <view class="group-btn" @click="handleBuy">
- <view class="label">
- 团购
- </view>
- <view class="price">
- ¥{{info.realPrice}}
- </view>
- </view> -->
- <view class="buy-btn" :class="[info.realStockNum?'':'none']" @click="handleBuy">
- <view class="label">
- {{info.realStockNum?'会员专享价':'售罄'}}
- </view>
- <view class="price">
- ¥{{info.realPrice}}
- </view>
- </view>
- </view>
- </view>
-
- </view>
- </template>
- <script>
- import {detail} from '@/api/goods.js'
- export default {
- data() {
- return {
- pageLoading:false,
- active:0,
- tab:1,
- shopList:[],
- info: {
- specs:[{specValues:[]}]
- },
- shopInfo:{}
- }
- },
- methods: {
- choose(index){
- this.active = index
- },
- filterMsg(val,name){
- let msg = val.replace(/\n/g, "<br>")
- if(name == 'validDay'){
- msg = val + '天'
- }
- return msg
- },
- jump(url){
- uni.navigateTo({
- url
- })
- },
- handleTab(val){
- this.tab = val
- },
- handleBuy() {
- if(!this.info.realStockNum) return
- let that = this
- if (uni.getStorageSync('token')) {
- uni.navigateTo({
- url:`/pay/pay`,
- success: function(res) {
- // 通过eventChannel向被打开页面传送数据
- res.eventChannel.emit('pay', that.info)
- }
- })
- } else {
- uni.showModal({
- title:'请登录',
- confirmText:'去登录',
- success(res){
- console.log(res);
- if(res.confirm){
- uni.navigateTo({
- url:`/login/login/login?redirect=/detail/goodsDetail/index&id=${that.info.goodsId}`
- })
- }
- }
- })
- }
-
- },
- detail(goodsId){
- this.pageLoading = true
- detail({goodsId,resource:2}).then(res=>{
- this.pageLoading = false
- if(res.state == 'Success'){
- this.info = res.content
- this.info.goodsDetail = res.content.goodsDetail.replace(/<img/gi, '<img class="img_class" ')
- uni.setNavigationBarTitle({
- title:this.info.goodsName
- })
- }
- })
- },
- goShopDetail(shopInfo) {
- uni.setStorageSync('shopInfo', JSON.stringify(this.info.shopInfo))
- uni.navigateTo({
- url: `/detail/shopDetail/shopDetail`
- })
- },
-
- },
- onLoad(option) {
- // this.shopInfo = JSON.parse(uni.getStorageSync('shopInfo'))
- this.detail(option.id)
- }
-
- }
- </script>
- <style lang="scss" >
- .goodsDetail{
- background: #F9F9F9;
- padding-bottom: 200rpx;
- min-height: 100vh;
- .good-img{
- width: 100%;
- height: 750rpx;
- vertical-align: bottom;
- }
- .price-box{
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 116rpx;
- box-sizing: border-box;
- background: #fff;
- // background-image: url('@/static/price-bg.png');
- // background-repeat: no-repeat;
- // background-size: 100% 116rpx;
- padding: 24rpx 24rpx 0;
- .left{
- display: flex;
- align-items: center;
- .num-box{
- display: flex;
- align-items: center;
- .unit{
- color: #FF4D3A;
- font-size: 20rpx;
- font-weight: bold;
- align-self: flex-end;
- margin-bottom: 10rpx;
- }
- .price{
- font-weight: 600;
- font-size: 56rpx;
- color: #FF4D3A;
- }
- }
- .old-price{
- text-decoration: line-through;
- margin-left: 12rpx;
- font-weight: 300;
- font-size: 20rpx;
- }
- }
- .right{
- font-size: 24rpx;
- font-weight: 300;
- font-size: 24rpx;
- }
- }
- .goods-info{
- padding: 0 24rpx 24rpx;
- margin-bottom: 20rpx;
- background: #fff;
-
- .goods-name{
- font-size: 32rpx;
- color: #222222;
- font-weight: bold;
- }
- .desc{
- font-size: 24rpx;
- color: #AAAAAA;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-top: 12rpx;
- }
- }
- .type-box{
- padding: 24rpx;
- background: #fff;
- margin-bottom: 20rpx;
- .type-title{
- font-size: 28rpx;
- color: #222222;
- }
- .type-list{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- .type-item{
- width: 316rpx;
- height: 52rpx;
- text-align: center;
- line-height: 52rpx;
- background: #F0F0F0;
- border-radius: 26rpx 26rpx 26rpx 26rpx;
- font-weight: 300;
- font-size: 24rpx;
- color: #AAAAAA;
- margin-top: 28rpx;
- }
- .type-item.active{
- background: #EE4320;
- color: #FFFFFF;
- }
- }
- }
-
- .tab-group{
- display: flex;
- background: #fff;
- .tab{
- flex:1;
- padding: 24rpx 0;
- text-align: center;
- font-size: 28rpx;
- color: #222222;
- }
- .tab.active{
- font-weight: 600;
- }
- }
-
- .desc-box{
- .goods-desc{
- color: #222222;
- font-size: 24rpx;
- .img_class{
- max-width: 100%!important;
- vertical-align: bottom;
- }
- }
- }
-
- .list{
- background: #fff;
- .item{
- padding: 24rpx;
- border-top:1rpx solid #F0F0F0;
- .label{
- font-weight: 600;
- font-size: 28rpx;
- color: #222222;
- }
- .value{
- font-size: 24rpx;
- color: #AAAAAA;
- margin-top: 16rpx;
- line-height: 40rpx;
- }
- }
- }
-
- .buy-box{
- position: fixed;
- bottom: 0%;
- left: 0%;
- width: 100%;
- background: #fff;
- padding: 10rpx 24rpx 76rpx;
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- .head{
- width: 80rpx;
- height: 80rpx;
- background: #aaa;
- border-radius: 50%;
- }
- .btn-box{
- display: flex;
- text-align: center;
- .group-btn{
- width: 280rpx;
- height: 80rpx;
- background: #6499FF;
- border-radius: 40rpx 0rpx 0rpx 40rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .label{
- font-weight: 600;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- .price{
- font-size: 24rpx;
- color: #FFFFFF;
- }
- }
- .buy-btn.none{
- filter: grayscale(1);
- }
- .buy-btn{
- // width: 280rpx;
- width: 560rpx;
- height: 80rpx;
- background: #3B83FF;
- border-radius: 40rpx;
- // border-radius: 0rpx 40rpx 40rpx 0rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- .label{
- font-weight: 600;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- .price{
- font-size: 24rpx;
- color: #FFFFFF;
- }
- }
- }
- }
-
- }
- </style>
|