Explorar el Código

登录支付勾选及商品显示修改

hwb0 hace 3 años
padre
commit
e1c68e6182

+ 1 - 1
components/pay-popup/pay-popup.vue

@@ -64,7 +64,7 @@
 		},
 		data() {
 			return {
-				checked: false,
+				checked: true,
 			};
 		},
 		

+ 8 - 6
packageGoods/goods/detail.vue

@@ -13,9 +13,9 @@
 					<view class="detail-info-left__coin">
 						<view class="content flex">
 							<image src="../../static/public/goods_coin.png" mode=""></image>
-							<view>× {{ info.exchangePrice }}</view>
+							<view><text>×</text>{{ info.exchangePrice }}</view>
 						</view>
-						<view class="txt" v-if="info.originPrice">原:<text>{{ info.originPrice }}</text></view>
+						<view class="txt" v-if="info.originPrice">原盲豆:<text>{{ info.originPrice }}</text></view>
 					</view>
 					<view class="detail-info-left__price">¥{{ $numberFormat(info.value) }}</view>
 				</view>
@@ -281,19 +281,21 @@
 					.content {
 						color: #FF2929;
 						margin-right: 34rpx;
+						font-weight: bold;
 						
 						image {
 							width: 34rpx;
 							height: 30rpx;
 						}
+						
+						text {
+							font-weight: normal;
+						}
 					}
 					
 					.txt {
 						color: #666666;
-						
-						text {
-							text-decoration: line-through;
-						}
+						text-decoration: line-through;
 					}
 				}
 				

+ 1 - 1
packagePrize/choice/index.vue

@@ -65,7 +65,7 @@
 			</view>
 			<!-- 标题 -->
 			<view class="choice-title flex">
-				<image src="../../packagePrize/static/choice_title.png" mode="scaleToFill"></image>
+				<image src="../../packagePrize/static/rolling_title.png" mode="scaleToFill"></image>
 			</view>
 			<!-- 提示 -->
 			<view class="choice-tip flex" v-if="!comfirmShow">

+ 8 - 6
packagePrize/goods/detail.vue

@@ -12,9 +12,9 @@
 					<view class="detail-info-left__coin">
 						<view class="content flex">
 							<image src="../../static/public/goods_coin.png" mode=""></image>
-							<view>× {{ info.exchangePrice }}</view>
+							<view><text>×</text>{{ info.exchangePrice }}</view>
 						</view>
-						<view class="txt" v-if="info.originPrice">原:<text>{{ info.originPrice }}</text></view>
+						<view class="txt" v-if="info.originPrice">原盲豆:<text>{{ info.originPrice }}</text></view>
 					</view>
 					<view class="detail-info-left__price">¥{{ $numberFormat(info.value) }}</view>
 				</view>
@@ -156,19 +156,21 @@
 					.content {
 						color: #FF2929;
 						margin-right: 34rpx;
+						font-weight: bold;
 						
 						image {
 							width: 34rpx;
 							height: 30rpx;
 						}
+						
+						text {
+							font-weight: normal;
+						}
 					}
 					
 					.txt {
 						color: #666666;
-						
-						text {
-							text-decoration: line-through;
-						}
+						text-decoration: line-through;
 					}
 				}
 				

+ 1 - 1
pages/login/index.vue

@@ -43,7 +43,7 @@
 			return {
 				authShow: false,
 				token: '',
-				checked: false
+				checked: true
 			};
 		},