Procházet zdrojové kódy

选择框背景色透明

cyy před 2 roky
rodič
revize
384ec2ccd7
1 změnil soubory, kde provedl 8 přidání a 0 odebrání
  1. 8 0
      src/views/statistics/index.vue

+ 8 - 0
src/views/statistics/index.vue

@@ -57,6 +57,7 @@
               type="monthrange"
               type="monthrange"
               align="right"
               align="right"
               unlink-panels
               unlink-panels
+              style="background-color: rgba(0,0,0,0);"
               format="yyyy 年 MM 月"
               format="yyyy 年 MM 月"
               value-format="yyyy-MM"
               value-format="yyyy-MM"
               @change="checkYear(endDate,'end')"
               @change="checkYear(endDate,'end')"
@@ -812,3 +813,10 @@
 }
 }
  
  
 </style>
 </style>
+<style lang="scss" scoped>
+
+::v-deep(.el-input__inner) {
+  background-color: rgba(0,0,0,0);
+  color: #fff;
+}
+</style>