lex 8 月之前
父节点
当前提交
39ce4ee18e

+ 3 - 3
src/components/col-share/index.module.less

@@ -86,10 +86,10 @@
 
 .shareTeacher {
   margin-top: 15px;
-  padding: 12px;
-  background: linear-gradient(270deg, #baffe7 0%, #c0dcff 100%);
+  padding: 12px !important;
+  background: linear-gradient(270deg, #baffe7 0%, #c0dcff 100%) !important;
   border-radius: 9px;
-  color: #333;
+  color: #333 !important;
 
   .teacherImg {
     margin-right: 12px;

+ 12 - 4
src/teacher/share-page/share-music-sheet/index.module.less

@@ -14,6 +14,7 @@
       color: #333333;
       line-height: 42px;
     }
+
     p {
       padding-top: 10px;
       font-size: 15px;
@@ -44,11 +45,13 @@
     padding: 22px;
     display: flex;
     align-items: center;
+
     img {
       width: 102px;
       height: 80px;
       margin-right: 22px;
     }
+
     h2 {
       font-size: 14px;
       font-weight: 600;
@@ -56,10 +59,12 @@
       line-height: 20px;
       padding-bottom: 6px;
     }
+
     p {
       color: #6a6a6a;
       line-height: 17px;
     }
+
     .discount {
       height: 18px;
       width: auto;
@@ -71,22 +76,25 @@
 .shareTeacher {
   margin: 10px 14px 18px;
   width: auto;
-  padding: 12px;
-  background: linear-gradient(270deg, #baffe7 0%, #c0dcff 100%);
+  padding: 12px !important;
+  background: linear-gradient(270deg, #baffe7 0%, #c0dcff 100%) !important;
   border-radius: 9px;
-  color: #333;
+  color: #333 !important;
+
   .teacherImg {
     margin-right: 12px;
     position: relative;
     width: 40px;
     text-align: center;
   }
+
   .recommend {
     position: absolute;
     height: 14px;
     left: 0;
     bottom: 3px;
   }
+
   .img {
     width: 33px;
     height: 33px;
@@ -103,4 +111,4 @@
     font-size: 12px;
     line-height: 18px;
   }
-}
+}

+ 22 - 20
src/views/order-detail/order-vip/index.tsx

@@ -130,27 +130,29 @@ export default defineComponent({
           </div>
         )}
 
-        <CellGroup
-          class={['mb12', styles.cellGroup, styles.cellGroupTimer]}
-          border={false}
-        >
-          <Cell
-            center
-            v-slots={{
-              title: () => (
-                <div class={styles.timerCell}>
-                  <div class={styles.timerTitle}>
-                    {/* <Icon name={iconTimer} size={18} /> */}
-                    <span style={{ paddingLeft: '5px' }}>生效时间</span>
-                  </div>
-                  <div class={styles.timer}>
-                    {item.startTime} 至 {item.endTime}
+        {item.period !== 'PERPETUAL' && (
+          <CellGroup
+            class={['mb12', styles.cellGroup, styles.cellGroupTimer]}
+            border={false}
+          >
+            <Cell
+              center
+              v-slots={{
+                title: () => (
+                  <div class={styles.timerCell}>
+                    <div class={styles.timerTitle}>
+                      {/* <Icon name={iconTimer} size={18} /> */}
+                      <span style={{ paddingLeft: '5px' }}>生效时间</span>
+                    </div>
+                    <div class={styles.timer}>
+                      {item.startTime} 至 {item.endTime}
+                    </div>
                   </div>
-                </div>
-              )
-            }}
-          />
-        </CellGroup>
+                )
+              }}
+            />
+          </CellGroup>
+        )}
       </div>
       // 视频课
     )