Bladeren bron

填完放分析

zpf 1 jaar geleden
bovenliggende
commit
ba36d0d0ab

+ 1 - 0
src/components/Combinations/toolBar/toolBar.vue

@@ -1,4 +1,5 @@
 <template>
+  <!-- 暂时隐藏工具栏 -->
   <!-- <div v-if="ToolBarShow"> -->
   <div v-if="false">
 

+ 5 - 3
src/components/TerrainAnalysis/TerrainCutFillAnalysis/TerrainCutFillAnalysis.vue

@@ -1,7 +1,7 @@
 <template>
   <div v-show="isCutFill" class="cut_fill_box">
     <div class="cut_fill_centent1">
-      设计度(米):
+      设计度(米):
       <el-input class="cut_fill_input" v-model="height" placeholder=""></el-input>
       <br>
       土石方量(立方米):
@@ -134,7 +134,7 @@ export default {
         // that.handler_Cut_fill.activate();
 
         let cutVolume = cutFillAnalysis.VolumeAnalysis(that.array, -that.height);
-        that.result = cutVolume;
+        that.result = cutVolume.toFixed(2);
 
 
       });
@@ -233,7 +233,9 @@ export default {
 }
 
 .cut_fill_Buttons {
-  margin-bottom: 5%;
+
+  margin-bottom: 2%;
+  float: right;
 
 }
 </style>