shish hace 11 meses
padre
commit
7adcdbd035
Se han modificado 2 ficheros con 9 adiciones y 9 borrados
  1. 7 7
      mallApp/src/pages/home/recent.vue
  2. 2 2
      mallh5/pages/pay/index.vue

+ 7 - 7
mallApp/src/pages/home/recent.vue

@@ -46,7 +46,7 @@
                   </view>
                                      <view class="text-group_7 flex-col justify-start">
                     <text class="text_8">{{item.name}}</text>
-                    <text class="text_9">{{item.address}}{{item.floor}}</text>
+                    <text class="text_9">{{item.dist}}{{item.address}}{{item.floor}}</text>
                   </view>
                 </view>
                 <view class="box_4 flex-col"></view>
@@ -402,7 +402,7 @@ page {
            background-color: #FF2842;
            width: 130upx;
            position: absolute;
-           right: 40upx;
+           right: 45upx;
            top: 165upx;
            border-radius: 20upx;
            z-index: 10;
@@ -421,7 +421,7 @@ page {
            background-color: #FF2842;
            width: 130upx;
            position: absolute;
-           right: 215upx;
+           right: 225upx;
            top: 165upx;
            border-radius: 20upx;
            z-index: 10;
@@ -440,7 +440,7 @@ page {
            background-color: #FF2842;
            width: 130upx;
            position: absolute;
-           right: 390upx;
+           right: 405upx;
            top: 165upx;
            border-radius: 20upx;
            z-index: 10;
@@ -538,12 +538,12 @@ page {
             background-color: white;
             border-radius: 20upx;
             padding: 0;
-            min-width: 400upx;
+            min-width: 600upx;
             box-shadow: 0 10upx 30upx rgba(0, 0, 0, 0.3);
             overflow: hidden;
             
             .popup-item {
-              padding: 35upx 40upx;
+              padding: 55upx 60upx;
               border-bottom: 1upx solid #f0f0f0;
               text-align: center;
               cursor: pointer;
@@ -565,7 +565,7 @@ page {
               
               text {
                 color: #333;
-                font-size: 32upx;
+                font-size: 44upx;
                 font-weight: 500;
                 position: relative;
                 z-index: 1;

+ 2 - 2
mallh5/pages/pay/index.vue

@@ -59,7 +59,7 @@
 				class="pay-button" 
 				:class="{ disabled: !canPay }"
 				:disabled="!canPay"
-				@click="showConfirmDialog"
+				@click="handlePay"
 			>
 				<text class="button-text">支付宝支付</text>
 			</button>
@@ -337,7 +337,7 @@ export default {
 			if (!this.canPay) return;
 			const amount = parseFloat(this.currentAmount);
 			// 隐藏弹框
-			this.hideConfirmDialog();
+			//this.hideConfirmDialog();
 			// 简化验证:只要大于0就能支付
 			if (amount <= 0) {
 				uni.showToast({