浏览代码

更新打包

lex 1 年之前
父节点
当前提交
127d85c74b

+ 2 - 2
src/student/music-group/pre-apply/order-detail.module.less

@@ -56,7 +56,7 @@
   font-size: 14px;
   padding-left: 12px;
   padding-right: 12px;
-  padding-bottom: calc(12px + env(safe-area-inset-bottom));
+  padding-bottom: 22px; //calc(12px + env(safe-area-inset-bottom));
   box-shadow: none !important;
   background: #fff;
   padding-top: 12px;
@@ -334,4 +334,4 @@
       color: #ff4e19;
     }
   }
-}
+}

+ 45 - 8
src/student/music-group/pre-goods-apply/index.module.less

@@ -117,15 +117,16 @@
   }
 
   .titleTips {
-    width: 214px;
-    margin-left: -107px;
+    width: 292px;
+    margin-left: -146px;
     background: url('./images/title-3.png') no-repeat center;
     background-size: contain;
+
   }
 
   .titleTool {
-    width: 292px;
-    margin-left: -146px;
+    width: 214px;
+    margin-left: -107px;
     background: url('./images/title-4.png') no-repeat center;
     background-size: contain;
   }
@@ -142,6 +143,10 @@
       color: #1A1A1A;
       line-height: 22px;
     }
+
+    .van-field__control {
+      padding-right: 2px;
+    }
   }
 
   .toolRadioGroup {
@@ -165,7 +170,7 @@
     border: 1px solid #987D6E;
     border-radius: 6px;
     line-height: 1;
-    padding: 5px 10px 4px;
+    padding: 5px 10px 3.5px;
     font-weight: 600;
     font-size: 16px;
 
@@ -265,15 +270,35 @@
     justify-content: center;
   }
 
+
+
+
   .iconHead {
     position: absolute;
     right: 37px;
     bottom: 59px;
     width: 75px;
-    height: 83px
+    height: 83px;
+    // animation: loadFade 1s ease-in-out infinite;
+    animation: head-change 1s ease infinite;
   }
 }
 
+@keyframes head-change {
+  0% {
+    transform: scale(1);
+  }
+
+  50% {
+    transform: scale(0.9);
+  }
+
+  100% {
+    transform: scale(1);
+  }
+}
+
+
 .toolInput {
   :global {
     .van-field__body {
@@ -288,6 +313,8 @@
 
 
 .groupBuy {
+  overflow: hidden;
+
   :global {
     .van-cell__value {
       text-align: left;
@@ -298,6 +325,8 @@
     width: 90px;
     height: 90px;
     margin-right: 12px;
+    border-radius: 8px;
+    overflow: hidden;
   }
 
   .goodsTitle {
@@ -411,6 +440,14 @@
       height: 14px;
     }
   }
+
+  .inspectCell {
+    margin: 0 12px 24px;
+    padding: 8px 12px;
+    background: #FFF3EA;
+    border-radius: 6px;
+    width: auto;
+  }
 }
 
 .paymentContainer {
@@ -419,7 +456,7 @@
   align-items: center;
   justify-content: space-between;
   font-size: 14px;
-  padding: 15px 12px calc(15px + env(safe-area-inset-bottom)) 12px;
+  padding: 15px 12px 22px 12px;
 
   .needPrice {
     display: flex;
@@ -456,4 +493,4 @@
 .inspectPopup {
   width: calc(100% - 50px);
   border-radius: 16px;
-}
+}

+ 3 - 3
src/student/music-group/pre-goods-apply/index.tsx

@@ -719,9 +719,9 @@ export default defineComponent({
                               <span>¥</span> {moneyFormat(state.vipYearInfo.currentPrice)}
                             </p>
                           </div>
-                          <div class={styles.priceOrigin}>
+                          <del class={styles.priceOrigin}>
                             原价: ¥{moneyFormat(state.vipYearInfo.originalPrice)}
-                          </div>
+                          </del>
                         </div>
                       </div>
                     )
@@ -769,7 +769,7 @@ export default defineComponent({
                   }}
                 </Cell>
 
-                <Cell>
+                <Cell class={styles.inspectCell}>
                   {{
                     icon: () => (
                       <img

+ 2 - 1
src/student/payment-result/index.module.less

@@ -75,6 +75,7 @@
     i {
       display: inline-block;
       margin-right: 6px;
+      margin-top: -2px;
       width: 4px;
       height: 14px;
       background: #ff8057;
@@ -159,4 +160,4 @@
 .phoneName {
   background: #f2f2f2;
   border-radius: 6px;
-}
+}