修改页面

This commit is contained in:
2025-05-13 10:12:15 +08:00
parent 00ab75efbc
commit a079f9d9fe
183 changed files with 2701 additions and 2212 deletions

View File

@ -2,11 +2,11 @@
<view>
<u-popup v-model="showPop" mode="center" :border-radius="16" @close="close">
<view class="bg-white spec">
<view class="shop-title bold-600 u-padding-left-40 w-full">商品标题</view>
<view class="shop-title bold-600 u-p-l-40 u-p-r-40 w-full u-line-1">{{ name }}</view>
<scroll-view scroll-y="true" scroll-with-animation="true" style="height: 480rpx;">
<view class="u-m-l-40">
<view v-for="(item, index1) in specBck" :key="index1">
<view class="attr nr u-m-t-20 u-m-b-20">{{ item.name }}</view>
<view class="attr nr u-m-t-20 u-m-b-20 ">{{ item.name }}</view>
<view class="row wrap">
<view
v-for="(attr, index2) in item.spec_value" :key="index2"
@ -48,9 +48,15 @@
type: Boolean,
required: true
},
spec: {
type: [Array, Object],
default: () => [{}]
},
name: {
type: String,
default: ''
}
},
data() {