123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <view class="d-content">
- <!-- 01. 轮播区 -->
- <view class="swiper-area w-full">
- <swiper class="h-full pos-r" indicator-dots circular="true" duration="400">
- <swiper-item v-for="(item, index) in swiperDatas" :key="index">
- <view class="wh-full"><image :src="item.url" class="wh-full loaded" lazy-load="true" mode="aspectFill"></image></view>
- </swiper-item>
- </swiper>
- </view>
- <view class="d-content">
- <!-- 02. 商品数据区 -->
- <view class="goods-area bg-main padding">
- <view class="price-box dflex-b">
- <view>
- <text class="price fwb fs-big">{{ goods.price / 100 || '100' }}</text>
- </view>
- <!-- <view class="dflex fs-sm ft-dark">
- <view class="margin-right-sm dflex" @click="">
- <uni-icons type="headphones" size="24" color="#999"></uni-icons>
- </view>
- <view class="margin-right-sm dflex">
- <uni-icons type="heart" size="24" color="#999"></uni-icons>
- </view>
- <view class="margin-right-sm dflex" @click="">
- <uni-icons type="redo" size="24" color="#999"></uni-icons>
- </view>
- </view> -->
- </view>
- <view class="container">
- <u-tag type="error" icon="coupon"></u-tag>
- <u-tag text="平台活动" type="error" plain plainFill></u-tag>
- </view>
- <!-- <view class="coupon">
- <view class="mj-tag">
- <view class="mj-icon padding-lr-xs">
- <u-icon name="rmb-circle" color="#FFF"></u-icon>
- </view>
- <text class="padding-lr-xs">优惠满减</text>
- </view>
- <text class="coupon-name">满30减20</text>
- </view> -->
- <view class="title fs">商品名称商品名称商品名称商品名称商品名称商品名称商品名称</view>
- <view class="sale">月销量:236</view>
- </view>
-
- <!-- 06. 详情区 -->
- <view class="gap"></view>
- <view class="spec-cell">
- <u-cell title="已选" isLink clickable @click="clickSpec" :border="false">
- <text slot="value" class="u-slot-value">{{specValue}}</text>
- </u-cell>
- </view>
- <view class="gap"></view>
- <view class="spec-cell">
- <u-cell title="发货" isLink clickable :border="false">
- <text slot="value" class="u-slot-value">预计5天内发货</text>
- </u-cell>
- </view>
- <view class="gap"></view>
-
- <view class="detail-area bg-main">
- <view class="d-header padding dflex-c"><text>图文详情</text></view>
- <rich-text class="pro-detail" :nodes="html_nodes"></rich-text>
- </view>
- </view>
- <my-gap :height="130" bg="#f5f5f5" />
- <!-- 07. 操作区 -->
- <view class="cart-bottom padding-sm dflex-b">
- <view style="width: 60px;">
- <u-icon :name="service" label="客服" labelPos="bottom" size="32"></u-icon>
- </view>
- <view style="width: 60px;">
- <u-icon :name="shoppingCart" label="购物车" labelPos="bottom" size="32"></u-icon>
- </view>
- <view class="go-cart dflex-c" >加入购物车</view>
- <view class="go-buy dflex-c background-gradient">立即购买</view>
- </view>
-
- <!-- 置顶 -->
- <use-totop ref="usetop" bottom="120"></use-totop>
- <specPopup ref="specPopup"></specPopup>
- </view>
- </template>
- <script>
- import specPopup from '@/components/specPopup.vue'
- import shoppingCart from '../../static/shoppingCart.png'
- import service from '../../static/service.png'
- export default {
- components:{specPopup},
- data() {
- return {
- shoppingCart: shoppingCart,
- service: service,
- specValue:'1包,番茄味',
- // 商品ID
- id: 0,
- // 商品数据
- goods: {},
- // 轮播图
- swiperDatas: [{
- url:'../../static/banner1.jpg'
- }],
- // SKU
- sku: {},
- // 商品详情
- html_nodes: '',
- // 收藏
- favorite: false,
-
- scrollTop: 0
- }
- },
- onLoad(e) {
- console.log('eeeeeeeeeeeee============', e)
- },
- methods: {
- clickSpec(){
- this.$refs.specPopup.open();
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .d-content{
- background: $page-color-base;
- width: 100%;
- }
- .fixed-top {
- bottom: 230rpx;
- }
- /* 01. 轮播区 */
- .swiper-area {
- height: 500rpx;
- z-index: -1;
- width: 100%;
- }
- /* 02. 商品数据区 */
- .goods-area {
- // margin-top: 720rpx;
- .price-box {
- display: flex;
- align-items: baseline;
- }
- .title {
- color: $font-color-dark;
- // height: 46rpx;
- // line-height: 46rpx;
- font-weight: 700;
- }
- }
- /* 06. 详情区 */
- .detail-area {
- .d-header {
- font-size: $font-base + 2upx;
- color: $font-color-dark;
- position: relative;
- text {
- padding: 0 20rpx;
- background: #fff;
- position: relative;
- z-index: 1;
- }
- &:after {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translateX(-50%);
- width: 300rpx;
- height: 0;
- content: '';
- border-bottom: 1px solid #ccc;
- }
- }
- /* 产品详情 */
- .pro-detail {
- width: 100%;
- overflow: hidden;
- -webkit-touch-callout: none;
- img {
- width: 100%;
- max-width: 100%;
- overflow: hidden;
- }
- }
- }
- /* 优惠券区 */
- .coupon-area {
- max-height: 60vh;
- min-height: 30vh;
- .coupon-item {
- margin-bottom: 20rpx;
- &:last-child {
- margin-bottom: 0;
- }
- .content {
- &:after {
- position: absolute;
- left: 0;
- bottom: 0;
- content: '';
- width: 100%;
- height: 0;
- border-bottom: 1px dashed #f3f3f3;
- transform: scaleY(50%);
- }
- }
- .circle {
- position: absolute;
- bottom: -10rpx;
- z-index: 10;
- width: 20rpx;
- height: 20rpx;
- background: #f5f5f5;
- border-radius: 50%;
- &.r {
- right: -6rpx;
- }
- &.l {
- left: -6rpx;
- }
- }
- }
- }
- .sale{
- color: #999;
- font-size: 12px;
- padding-top: 10upx;
- }
- .spec-cell{
- background: #FFF;
- }
- .u-slot-value{
- font-size: 12px;
- }
- .cart-bottom{
- width: 100%;
- position: fixed;
- left: 0;
- bottom: 0;
- height: 130rpx;
- box-sizing: border-box;
- background-color: #FFF;
- z-index: 10;
- box-shadow: 0px -4px 16px 0px rgba(0,0,0,0.15);
- .go-cart{
- height: 80%;
- box-sizing: border-box;
- border: solid 1px #FF0000;
- font-size: 14px;
- color: #FF0000;
- border-radius: 50upx;
- margin: 0 10px;
- width: 45%;
- }
- .go-buy{
- height: 80%;
- width: 45%;
- background-color: #FF0000;
- color: #FFF;
- border-radius: 50upx;
- font-size: 14px;
- }
- }
- .container {
- display: flex;
- // justify-content: space-between;
- margin: 10px 0; /* 添加一些外边距以便查看 */
- }
- </style>
|