shish 7 miesięcy temu
rodzic
commit
300926f9d9
1 zmienionych plików z 6 dodań i 5 usunięć
  1. 6 5
      hdApp/src/admin/billing/affirmGhs.vue

+ 6 - 5
hdApp/src/admin/billing/affirmGhs.vue

@@ -254,15 +254,15 @@
 						<view class="tui-title">距离</view>
 						<text v-if="showDistance > 100" style="color: #3385FF">{{ (showDistance/1000).toFixed(1) }}公里</text>
 						<text v-else style="color: #3385FF">{{ showDistance }} 米</text>
+						<text v-if="showDeliveryPolicy" class="delivery-policy-link" @click="showDeliveryPolicyModal">
+							免跑腿费条件
+						</text>
 					</tui-list-cell>
 					<tui-list-cell class="line-cell" :hover="false" v-if="displaySendCost == true">
 						<view class="tui-title">跑腿费</view>
 						<view>
 							<text :class="isFreeDelivery ? 'delivery-price-free' : 'delivery-price-normal'">¥ {{ form.sendCost }}</text>
 							<text v-if="isFreeDelivery" class="free-delivery-tag">【免跑腿费】</text>
-							<text v-if="showDeliveryPolicy" class="delivery-policy-link" @click="showDeliveryPolicyModal">
-								免费配送条件
-							</text>
 						</view>
 					</tui-list-cell>
 
@@ -1535,8 +1535,9 @@ export default {
 
 .delivery-policy-link {
 	color: rgb(201, 52, 52);
-	font-size: 28upx;
-	margin-left: 12upx;
+	font-size: 30upx;
+	margin-left: 30upx;
+	font-weight:bold;
 	text-decoration: underline;
 }