|
@@ -24,6 +24,10 @@
|
|
|
<view class="name">
|
|
|
<text>{{item.goods.name}}</text>
|
|
|
</view>
|
|
|
+ <view class="money">
|
|
|
+ <text>¥</text>
|
|
|
+ <text>{{item.sell_money}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="is_bottom" v-if="is_bottom">
|
|
@@ -237,7 +241,7 @@
|
|
|
.list {
|
|
|
break-inside: avoid;
|
|
|
padding: 2vw;
|
|
|
- background-color: #f1f1f1;
|
|
|
+ background-color: var(--f1Color);
|
|
|
margin: 0 0 2vw 0;
|
|
|
border-radius: 5px;
|
|
|
|
|
@@ -250,8 +254,20 @@
|
|
|
}
|
|
|
|
|
|
.name {
|
|
|
+ margin: 0 0 1vw 0;
|
|
|
+
|
|
|
text {
|
|
|
- font-size: 14px;
|
|
|
+ font-size: var(--font14Size);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .money {
|
|
|
+ font-size: var(--font12Size);
|
|
|
+ color: var(--ff0Color);
|
|
|
+
|
|
|
+ text:nth-child(2) {
|
|
|
+ font-size: var(--font16Size);
|
|
|
+ padding: 0 0 0 1vw;
|
|
|
}
|
|
|
}
|
|
|
}
|