| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <template>
- <view class="content">
- <!-- 轮播图 -->
- <top-swiper :imgList="imgList"></top-swiper>
- <!-- 价格 -->
- <view class="good-price flex">
- <view class="new-price">
- ¥2690
- </view>
- <view class="old-price">
- ¥3600
- </view>
- </view>
- <!-- 标题 -->
- <view class="good-tit">
- GUCCI古驰马衔扣1955系列单肩包女包春秋新款送礼佳品
- </view>
- <content-text :description="description"></content-text>
- <view class="btn-ts" style="height: 130rpx; background-color: #fff;">
-
- </view>
- <view class="btm-btn">
- 立即预约
- </view>
- </view>
- </template>
- <script>
- // 头部轮播图
- import topSwiper from './common/topSwiper.vue';
- // 图文详情
- import contentText from './common/contentText.vue';
- export default {
- components: {
- topSwiper,
- contentText
- },
- data() {
- return {
- imgList: [1,2]
- }
- },
- onLoad(opt) {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .good-price {
- padding-left: 20rpx;
- padding-top: 20rpx;
- justify-content: flex-start;
- background-color: #fff;
- // align-items: f;
- .new-price {
- font-size: 50rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FF4C4C;
- }
- .old-price {
- padding-left: 8rpx;
- font-size: 33rpx;
- font-family: PingFang SC;
- font-weight: bold;
- text-decoration: line-through;
- color: #999999;
-
- }
-
- }
- .good-tit {
- padding: 20rpx;
- background-color: #fff;
- }
- .btm-btn {
- position: fixed;
- bottom: 35rpx;
- left: 0;
- right: 0;
- margin: auto;
- width: 699rpx;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- background: linear-gradient(90deg, #FE6F61 0%, #FF4343 100%);
- border-radius: 45rpx;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- </style>
|