Browse Source

fix: b2 标题样式

wjc 1 week ago
parent
commit
2bcde29566

+ 1 - 2
src/views/hui-jia/components/hardware.vue

@@ -441,8 +441,7 @@
     display: flex;
     align-items: center;
     color: var(--title-primary);
-    font-size: halfW(18);
-    font-weight: 500;
+    font-size: halfW(16);
     border-radius: 4px;
     padding: halfH(4) halfW(10);
     background: var(--title-bg);

+ 1 - 2
src/views/hui-jia/components/implementary/ing.vue

@@ -93,8 +93,7 @@
 
   .implementing-title {
     background: var(--title-bg);
-    font-size: halfW(18);
-    font-weight: 500;
+    font-size: halfW(16);
     color: var(--title-primary);
     padding: halfH(4) halfW(10);
     border-radius: halfW(4);

+ 1 - 2
src/views/hui-jia/components/implementary/now-year.vue

@@ -210,8 +210,7 @@
   }
 
   .now-year-title {
-    font-size: halfW(18);
-    font-weight: 500;
+    font-size: halfW(16);
     border-radius: halfW(4);
     color: var(--title-primary);
     background: var(--title-bg);

+ 7 - 4
src/views/hui-jia/components/implementary/total.vue

@@ -31,11 +31,15 @@
       </div>
       <div class="total-item">
         <div class="total-label">签约户数</div>
-        <div class="total-value">{{ formatNumber(data.contracted_households) }}</div>
+        <div class="total-value">
+          {{ formatNumber(data.contracted_households) }}
+        </div>
       </div>
       <div class="total-item">
         <div class="total-label">实施户数</div>
-        <div class="total-value">{{ formatNumber(data.actual_households) }}</div>
+        <div class="total-value">
+          {{ formatNumber(data.actual_households) }}
+        </div>
       </div>
     </div>
   </div>
@@ -82,8 +86,7 @@
       padding: halfH(4) halfW(10);
       display: flex;
       align-items: center;
-      font-size: halfW(18);
-      font-weight: 500;
+      font-size: halfW(16);
       color: var(--title-primary);
       background: var(--title-bg);
       margin-bottom: halfH(20);

+ 1 - 2
src/views/hui-jia/components/market.vue

@@ -289,8 +289,7 @@
     border-radius: halfW(4);
     background: var(--title-bg);
     padding: halfH(4) halfW(10);
-    font-size: halfW(18);
-    font-weight: 500;
+    font-size: halfW(16);
     color: var(--title-primary);
     display: flex;
     align-items: center;

+ 1 - 1
src/views/hui-jia/components/smart.vue

@@ -203,7 +203,7 @@ export default {
   .module-title {
     display: flex;
     border-radius: halfW(4);
-    font-size: halfW(18);
+    font-size: halfW(16);
     align-items: center;
     color: var(--title-primary);
     background: var(--title-bg);

+ 3 - 3
src/views/hui-jia/components/work-card.vue

@@ -129,7 +129,7 @@ export default {
   flex-direction: column;
 
   .title {
-    font-size: halfW(18);
+    font-size: halfW(16);
     display: flex;
     border-radius: halfW(4);
     align-items: center;
@@ -189,8 +189,8 @@ export default {
 
   .card-value {
     margin-left: halfW(12);
-    font-size: halfW(18);
-    font-weight: 600;
+    font-size: halfW(16);
+    font-weight: 500;
     color: #fff;
     letter-spacing: 1px;
   }