Browse Source

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

xushiting 1 year ago
parent
commit
c7752aeb7e
2 changed files with 10 additions and 5 deletions
  1. 0 1
      src/view/case/draw/edit-shape/compass.vue
  2. 10 4
      src/view/statistics/index.vue

+ 0 - 1
src/view/case/draw/edit-shape/compass.vue

@@ -13,7 +13,6 @@
       :model-value="value || 0"
       placeholder="0"
       @update:model-value="val => setRotate(val as number, false)"
-      @blur="setRotate(value as number, true)"
       :min="0"
       :max="360"
     />

+ 10 - 4
src/view/statistics/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <com-head :options="[{ name: '数据统计', value: '1' }]" class="frame-head">
+  <com-head :options="[{ name: '数据统计', value: '1' }]" class="static-head frame-head">
     <el-form label-width="84px">
       <el-form-item label="统计区间:" style="grid-area: 1/1/2/2">
         <p style="margin-top: -6px">{{ range }}</p>
@@ -158,8 +158,14 @@ onUnmounted(() => window.removeEventListener("resize", resize));
 </style>
 
 <style lang="scss">
-.el-range-separator {
-  display: initial !important;
-  line-height: 38px;
+.static-head {
+  .el-range-separator {
+    display: initial !important;
+    line-height: 38px;
+    font-size: 16px;
+  }
+  .el-date-editor--daterange::after {
+    display: none;
+  }
 }
 </style>