Browse Source

fix-细调

LAPTOP-U5GOA5HA\zz 1 year ago
parent
commit
b06248916a

+ 1 - 0
app/src/views/Basic/components/ChronologicDistributionStatistics.vue

@@ -58,6 +58,7 @@ export default {
               value[0].data[1]
             }</span> 栋<span>`;
           },
+          confine: true,
           extraCssText: "z-index: 1000;",
           backgroundColor: "#02809a",
           borderColor: "rgba(0,213,255, .6)",

+ 1 - 0
app/src/views/Basic/components/HeightDistribution.vue

@@ -62,6 +62,7 @@ export default {
             // 坐标轴指示器,坐标轴触发有效
             type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
           },
+          confine: true,
           extraCssText: "z-index: 1000;",
           backgroundColor: "#02809a",
           borderColor: "rgba(0,213,255, .6)",

+ 1 - 1
app/src/views/Fire/components/Construction.vue

@@ -32,7 +32,7 @@
 			<div class="unit-num" v-for="(item,index) in wbxsList" :key="index">
 				<div>
 					<LinearText style="display: inline-block" :text="item.sl" fontSize="28px"></LinearText>
-					<span></span>
+					<span></span>
 				</div>
 				<div>{{ item.wbxs }}</div>
 			</div>

+ 2 - 2
app/src/views/Home/components/WisdomFire.vue

@@ -46,7 +46,7 @@
                 ><span style="margin-right: 1px">/</span></span
               >
               <span>{{ frieList.syds ? frieList.syds : 0 }}</span>
-              <div style="font-size: 12px; margin-top: 5px">个(栋)</div>
+              <div style="font-size: 12px; margin-top: 5px">(个/栋)</div>
             </div>
 
             <ul class="pressure-list" >
@@ -92,7 +92,7 @@
               {{ frieList.dqhzzs ? frieList.dqhzzs : 0
               }}<span style="margin-right: 1px">/</span>
               <span>{{ frieList.dqhzds ? frieList.dqhzds : 0 }}</span>
-              <div style="font-size: 12px; margin-top: 5px">个(栋)</div>
+              <div style="font-size: 12px; margin-top: 5px">(个/栋)</div>
             </div>
 
             <ul class="pressure-list">

+ 5 - 1
app/src/views/Risk/components/Riskdistribution.vue

@@ -75,7 +75,7 @@ export default {
     classOption() {
       return {
         singleHeight: 43,
-        autoPlay: this.qx === "重庆市",
+        autoPlay: this.qx === "重庆市" && this.list.length >= 10,
       };
     },
   },
@@ -93,11 +93,15 @@ export default {
   methods: {
     change(idx) {
       if (this.checked !== idx) {
+        this.reload = false
         this.checked = idx;
         let tempData = this.originData.filter(
           (item) => item.fxdj === this.type[idx]
         );
         this.list = toFirst(tempData, this.qx, "qy");
+        setTimeout(() => {
+          this.reload = true
+        }, 200)
         // this.$emit('selectData', tempData)
       }
     },