This commit is contained in:
@@ -47,7 +47,7 @@
|
||||
:key="index"
|
||||
class="item-row"
|
||||
>
|
||||
<text class="item-info"><text class="item-name-text">{{ item.productName }}</text><text class="item-spec-text">{{ item.productSpec ? ' ' + item.productSpec : '' }}</text>\n{{ item.length || '-' }}x{{ item.width || '-' }}</text>
|
||||
<text class="item-info"><text class="item-name-text">{{ item.productName }}</text><text class="item-spec-text">{{ item.productSpec ? ' ' + item.productSpec : '' }}</text><text class="item-dims-text">{{ item.length || '-' }}x{{ item.width || '-' }}</text></text>
|
||||
<text class="item-area">{{ calcArea(item) }}</text>
|
||||
<text class="item-qty">{{ item.quantity }}</text>
|
||||
<text class="item-price">¥{{ item.price }}</text>
|
||||
@@ -366,7 +366,6 @@ export default {
|
||||
|
||||
.item-info {
|
||||
flex: 3;
|
||||
white-space: pre-line;
|
||||
font-size: 24rpx;
|
||||
color: #333;
|
||||
line-height: 1.6;
|
||||
@@ -381,6 +380,11 @@ export default {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.item-dims-text {
|
||||
color: #666;
|
||||
margin-left: 8rpx;
|
||||
}
|
||||
|
||||
.item-area {
|
||||
flex: 1.2;
|
||||
text-align: center;
|
||||
|
||||
Reference in New Issue
Block a user