|
|
@@ -27,14 +27,14 @@
|
|
|
</block>
|
|
|
<block v-else-if="customItems.length > 1">
|
|
|
<text class="col-index">{{ index + 1 }}</text>
|
|
|
- <text class="col-name" style="color: #07c160;">{{ customItems[0].name }}</text>
|
|
|
- <text class="col-phone" style="color: #07c160;">{{ customItems[0].phone }}</text>
|
|
|
- <text class="col-address" style="color: #07c160;">{{ customItems[0].address }}</text>
|
|
|
+ <text class="col-name" style="color: #3385FF;">{{ customItems[0].name }}</text>
|
|
|
+ <text class="col-phone" style="color: #3385FF;">{{ customItems[0].phone }}</text>
|
|
|
+ <text class="col-address" style="color: #3385FF;">{{ customItems[0].address }}</text>
|
|
|
</block>
|
|
|
</view>
|
|
|
<block v-if="getRemarks(customItems).length > 0">
|
|
|
- <view class="row-remark" v-for="(remarkItem, rIndex) in getRemarks(customItems)" :key="'remark-' + rIndex">
|
|
|
- <text style="font-size: 28upx;">{{ remarkItem.label }}:</text>{{ remarkItem.text }}
|
|
|
+ <view class="row-remark" v-for="(remarkItem, rIndex) in getRemarks(customItems)" :key="'remark-' + rIndex" style="font-weight:bold;">
|
|
|
+ <text style="font-size:28upx;">{{ remarkItem.label }}:</text>{{ remarkItem.text }}
|
|
|
</view>
|
|
|
</block>
|
|
|
</view>
|
|
|
@@ -262,7 +262,7 @@ export default {
|
|
|
text-align: center;
|
|
|
padding:18upx 0 18upx 0;
|
|
|
font-size: 35upx;
|
|
|
- color: #333;
|
|
|
+ color: #3385FF;
|
|
|
font-weight:bold;
|
|
|
}
|
|
|
|