feat: 再次预定跳转商品详情问题修复
This commit is contained in:
@@ -1,26 +1,33 @@
|
||||
<template>
|
||||
<view class="mt-16">
|
||||
<view class="mt-16 border-box border-top-8">
|
||||
<view
|
||||
class="border-box pt-12 pl-12 pr-12"
|
||||
v-for="(moduleItem, index) in goodsData.commodityEquipment"
|
||||
:key="index"
|
||||
>
|
||||
<view
|
||||
class="flex flex-items-start flex-col pt-12 pb-12"
|
||||
class="flex flex-items-start flex-col"
|
||||
:class="{
|
||||
'border-bottom': index < goodsData.commodityEquipment.length - 1,
|
||||
}"
|
||||
>
|
||||
<view class="flex flex-items-center flex-row flex-shrink-0 mr-8">
|
||||
<uni-icons fontFamily="znicons" size="20" color="#171717">{{
|
||||
zniconsMap[moduleItem.icon]
|
||||
}}</uni-icons>
|
||||
<text class="font-size-12 color-171717 line-height-20">{{
|
||||
moduleItem.title
|
||||
}}</text>
|
||||
<view class="flex flex-items-center flex-row flex-shrink-0">
|
||||
<uni-icons fontFamily="znicons" size="20" color="#171717">
|
||||
{{ zniconsMap[moduleItem.icon] }}
|
||||
</uni-icons>
|
||||
<text class="font-size-12 color-171717 line-height-20">
|
||||
{{ moduleItem.title }}
|
||||
</text>
|
||||
</view>
|
||||
<view class="border-box flex flex-items-center flex-row mt-4 pb-12">
|
||||
<text
|
||||
class="font-size-12 color-525866 line-height-20 mr-4"
|
||||
v-for="(text, index) in moduleItem.desc"
|
||||
:key="index"
|
||||
>
|
||||
{{ text }}
|
||||
</text>
|
||||
</view>
|
||||
<text class="flex-full font-size-12 color-525866 line-height-20 mt-4">{{
|
||||
moduleItem.desc
|
||||
}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<view class="good-info">
|
||||
<view class="good-info border-box pl-12 pr-12">
|
||||
<!-- 标题区域 -->
|
||||
<view class="title-section">
|
||||
<text class="title">
|
||||
|
||||
@@ -68,7 +68,7 @@ $button-color: #00a6ff;
|
||||
.goods-content {
|
||||
border-radius: 28px 28px 0 0;
|
||||
background-color: #fff;
|
||||
padding: 20px 12px;
|
||||
padding: 20px 0;
|
||||
position: relative;
|
||||
margin-top: -30px;
|
||||
z-index: 1;
|
||||
|
||||
Reference in New Issue
Block a user