Browse Source

更换系统管理显示数据的颜色,修改分页选中的状态

sunyanqiang 3 years ago
parent
commit
f062d1e266

+ 1 - 1
src/assets/styles/global.css

@@ -198,7 +198,7 @@ color: #fff;
 }
 
 .el-pagination.is-background .el-pager li:not(.disabled).active {
-  background-color: #004D86 !important;
+  /* background-color: #004D86 !important; */
   color: #FFFFFF;
 }
 

+ 1 - 1
src/views/system/dept/index.vue

@@ -88,7 +88,7 @@
       ></el-table-column>
       <el-table-column prop="status" label="状态" width="250">
         <template slot-scope="scope">
-          <span v-if="scope.row.status == '0'" style="color: #1d96ff"
+          <span v-if="scope.row.status == '0'" style="color: #13ce66"
             >正常</span
           >
           <span v-if="scope.row.status == '1'" style="color=#FF4949">停用</span>

+ 1 - 1
src/views/system/dict/index.vue

@@ -162,7 +162,7 @@
       </el-table-column>
       <el-table-column label="状态" align="center" prop="status">
         <template slot-scope="scope">
-          <span v-if="scope.row.status == '0'" style="color: #1d96ff"
+          <span v-if="scope.row.status == '0'" style="color: #13ce66"
             >正常</span
           >
           <span v-if="scope.row.status == '1'" style="color=#FF4949">停用</span>

+ 1 - 1
src/views/system/menu/index.vue

@@ -102,7 +102,7 @@
       ></el-table-column>
       <el-table-column prop="status" label="状态" width="80">
         <template slot-scope="scope">
-          <span v-if="scope.row.status == '0'" style="color: #1d96ff"
+          <span v-if="scope.row.status == '0'" style="color: #13ce66"
             >正常</span
           >
           <span v-if="scope.row.status == '1'" style="color=#FF4949">停用</span>

+ 1 - 1
src/views/system/notice/index.vue

@@ -122,7 +122,7 @@
       </el-table-column>
       <el-table-column label="状态" align="center" prop="status" width="100">
         <template slot-scope="scope">
-          <span v-if="scope.row.status == '0'" style="color: #1d96ff"
+          <span v-if="scope.row.status == '0'" style="color: #13ce66"
             >正常</span
           >
           <span v-if="scope.row.status == '1'" style="color=#FF4949">停用</span>

+ 2 - 2
src/views/system/post/index.vue

@@ -118,8 +118,8 @@
             :options="dict.type.sys_normal_disable"
             :value="scope.row.status"
           /> -->
-           <template slot-scope="scope">
-          <span v-if="scope.row.status == '0'" style="color: #1d96ff"
+        <template slot-scope="scope">
+          <span v-if="scope.row.status == '0'" style="color: #13ce66"
             >正常</span
           >
           <span v-if="scope.row.status == '1'" style="color=#FF4949">停用</span>