|
@@ -19,21 +19,17 @@
|
|
|
<el-form-item label="分析范围:" prop="xzmj">
|
|
|
<range type="cutfill" :keys="['hx', 'sc']" class="range" ref="range" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="开挖高程:" v-if="radio == 'cut'">
|
|
|
+ <el-form-item label="填挖基准:" v-if="radio == 'cut'">
|
|
|
<!-- readonly="readonly" -->
|
|
|
- <el-input
|
|
|
- v-model="smooth_height"
|
|
|
- placeholder="深度为空时为平整土地"
|
|
|
- size="mini"
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="smooth_height" placeholder="" size="mini"></el-input>
|
|
|
</el-form-item>
|
|
|
- <div v-if="cutData.fillVolume" class="sdatadiv">
|
|
|
+ <div class="sdatadiv">
|
|
|
分析结果:
|
|
|
<p v-for="(sitem, index) in sdata" :key="index">
|
|
|
<!-- <img src="/static/images/ghzc/iconSun.png" .toFixed(2) /> -->
|
|
|
<span class="ptitle">{{ sitem.name }}</span>
|
|
|
<span class="pvalue">
|
|
|
- {{ cutData[sitem.prop] }}{{ sitem.unit }}
|
|
|
+ {{ cutData[sitem.prop] || 0 }}{{ sitem.unit }}
|
|
|
</span>
|
|
|
</p>
|
|
|
</div>
|
|
@@ -245,13 +241,14 @@ export default {
|
|
|
<style lang="scss" scoped>
|
|
|
.cut_fill_box {
|
|
|
width: 100%;
|
|
|
- height: 500px;
|
|
|
+ height: 550px;
|
|
|
padding: 20px;
|
|
|
box-sizing: border-box;
|
|
|
position: relative;
|
|
|
.ruleForm {
|
|
|
width: 100%;
|
|
|
height: calc(100% - 120px);
|
|
|
+ overflow-y: auto;
|
|
|
}
|
|
|
.el-form-item {
|
|
|
margin-bottom: 0px !important;
|