|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
<div v-show="isCutFill" class="cut_fill_box">
|
|
|
<div class="cut_fill_centent1">
|
|
|
- 设计高度:
|
|
|
- <el-input v-model="height" placeholder=""></el-input>
|
|
|
-
|
|
|
- 土石方里(立方米):
|
|
|
- <el-input v-model="result" placeholder=""></el-input>
|
|
|
+ 设计高度(米):
|
|
|
+ <el-input class="cut_fill_input" v-model="height" placeholder=""></el-input>
|
|
|
+ <br>
|
|
|
+ 土石方量(立方米):
|
|
|
+ <el-input class="cut_fill_input" v-model="result" placeholder=""></el-input>
|
|
|
|
|
|
</div>
|
|
|
<div class="cut_fill_Buttons">
|
|
@@ -153,5 +153,24 @@ export default {
|
|
|
<style lang="scss" scoped>
|
|
|
.cut_fill_centent1 {
|
|
|
width: 100%;
|
|
|
+ text-align: left;
|
|
|
+ margin-left: 10%;
|
|
|
+ margin-top: 5%;
|
|
|
+ margin-bottom: 6%;
|
|
|
+}
|
|
|
+
|
|
|
+.cut_fill_input {
|
|
|
+ display: inline-block;
|
|
|
+ width: 50%
|
|
|
+}
|
|
|
+
|
|
|
+.cut_fill_input:first-child {
|
|
|
+ margin-left: 7%;
|
|
|
+ margin-bottom: 5%;
|
|
|
+}
|
|
|
+
|
|
|
+.cut_fill_Buttons {
|
|
|
+ margin-bottom: 5%;
|
|
|
+
|
|
|
}
|
|
|
</style>
|