Browse Source

Merge branch 'master' of http://192.168.0.115:3000/bill/fuse-code

xzw 3 years ago
parent
commit
32e857a666
2 changed files with 10 additions and 3 deletions
  1. 2 2
      src/views/measure/index.vue
  2. 8 1
      src/views/tagging/index.vue

+ 2 - 2
src/views/measure/index.vue

@@ -13,13 +13,13 @@
           @click="custom.showMeasures = !custom.showMeasures" 
         />
       </template>
-      <ui-group-option>
+      <!-- <ui-group-option>
         <ui-input type="text" width="100%" placeholder="搜索" v-model="keyword">
           <template #preIcon>
             <ui-icon type="search" />
           </template>
         </ui-input>
-      </ui-group-option>
+      </ui-group-option> -->
       <MeasureSign 
         v-for="measure in filterMeasures" 
         :key="measure.id" 

+ 8 - 1
src/views/tagging/index.vue

@@ -12,6 +12,7 @@
       <template #icon>
         <ui-icon 
           ctrl
+          :class="{active: showSearch}"
           type="search" 
           @click="showSearch = !showSearch" 
           style="margin-right: 10px"
@@ -102,4 +103,10 @@ const fixedTagging = async (tagging: Tagging) => {
 
 const selectTagging = ref<Tagging | null>(null)
 useViewStack(autoSaveTaggings)
-</script>
+</script>
+
+<style scoped>
+  .active {
+    color: var(--color-main-normal) !important;
+  }
+</style>