Browse Source

APP工分调整

ouyj 4 months ago
parent
commit
97a0b326b6
1 changed files with 16 additions and 2 deletions
  1. 16 2
      pages/score/index.uvue

+ 16 - 2
pages/score/index.uvue

@@ -40,7 +40,14 @@
         >
           待复评
         </text>
-        <text
+		<text
+		  class="status-txt"
+		  :class="{ 'stauts-sel': statusFilter === 'appealing' }"
+		  @click="filterByStatus('appealing')"
+		>
+		  申诉中
+		</text>
+        <!-- <text
           class="status-txt"
           :class="{ 'stauts-sel': statusFilter === 'to_confirm' }"
           @click="filterByStatus('to_confirm')"
@@ -53,7 +60,7 @@
           @click="filterByStatus('to_final')"
         >
           待终评
-        </text>
+        </text> -->
       </view>
     </view>
 
@@ -1181,4 +1188,11 @@
   color: #5cb87a;
   border-color: #c2e7b0;
 }
+
+/* 申诉中 */
+.status-appealing {
+  background-color: #ffcfc2;
+  color: #ff0000;
+  border-color: #ff7446;
+}
 </style>