自然幢表单样式调整,
Showing
4 changed files
with
40 additions
and
13 deletions
| ... | @@ -132,6 +132,7 @@ | ... | @@ -132,6 +132,7 @@ |
| 132 | <li> | 132 | <li> |
| 133 | <input | 133 | <input |
| 134 | type="text" | 134 | type="text" |
| 135 | style="top: -1px;" | ||
| 135 | :disabled="formData.qszt!='0'" | 136 | :disabled="formData.qszt!='0'" |
| 136 | placeholder="请输入" | 137 | placeholder="请输入" |
| 137 | v-model="childItem.pzytdm" | 138 | v-model="childItem.pzytdm" |
| ... | @@ -422,6 +423,8 @@ export default { | ... | @@ -422,6 +423,8 @@ export default { |
| 422 | input { | 423 | input { |
| 423 | position: relative; | 424 | position: relative; |
| 424 | top: -2px; | 425 | top: -2px; |
| 426 | height: 35px; | ||
| 427 | width: calc(100% - 1px) !important; | ||
| 425 | } | 428 | } |
| 426 | .el-input__inner { | 429 | .el-input__inner { |
| 427 | height: 34px; | 430 | height: 34px; | ... | ... |
This diff is collapsed.
Click to expand it.
| ... | @@ -215,12 +215,23 @@ | ... | @@ -215,12 +215,23 @@ |
| 215 | 215 | ||
| 216 | <tr height="30" v-for="(item1,index) in form.fwytList" :key="index"> | 216 | <tr height="30" v-for="(item1,index) in form.fwytList" :key="index"> |
| 217 | <td v-if="index===0" colspan="2" :rowspan="ytTitleRowspan" align="center" id="ytTitle"> | 217 | <td v-if="index===0" colspan="2" :rowspan="ytTitleRowspan" align="center" id="ytTitle"> |
| 218 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addYtInfo">添加</el-button> | 218 | <el-button |
| 219 | type="primary" | ||
| 220 | style="margin-right: 10px" | ||
| 221 | class="changeBtn addMinus inAdd" | ||
| 222 | @click="addYtInfo" | ||
| 223 | >+</el-button | ||
| 224 | > | ||
| 219 | <span>用途<i class="requisite">*</i></span> | 225 | <span>用途<i class="requisite">*</i></span> |
| 220 | </td> | 226 | </td> |
| 221 | 227 | ||
| 222 | <td width="30" colspan="1" align="center" > | 228 | <td width="30" colspan="1" align="center" > |
| 223 | <el-button type="info" size="mini" style="" @click="deleteYtInfo(index)" circle>删除</el-button> | 229 | <el-button |
| 230 | type="primary" | ||
| 231 | class="changeBtn addMinus inMinus" | ||
| 232 | @click="deleteYtInfo(index)" | ||
| 233 | >-</el-button | ||
| 234 | > | ||
| 224 | 规划用途 | 235 | 规划用途 |
| 225 | </td> | 236 | </td> |
| 226 | <td width="30" colspan="4" align="center" > | 237 | <td width="30" colspan="4" align="center" > |
| ... | @@ -256,7 +267,14 @@ | ... | @@ -256,7 +267,14 @@ |
| 256 | 267 | ||
| 257 | <tr height="30" v-for="(item1,index) in form.fwjgList" :key="'jg'+index"> | 268 | <tr height="30" v-for="(item1,index) in form.fwjgList" :key="'jg'+index"> |
| 258 | <td colspan="2" v-if="index===0" :rowspan="fwjgTitleRowspan" align="center" > | 269 | <td colspan="2" v-if="index===0" :rowspan="fwjgTitleRowspan" align="center" > |
| 259 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addFwjgInfo">添加</el-button> | 270 | <!-- <el-button type="primary" size="mini" style="margin-right: 10px" @click="addFwjgInfo">添加</el-button> --> |
| 271 | <el-button | ||
| 272 | type="primary" | ||
| 273 | style="margin-right: 10px" | ||
| 274 | class="changeBtn addMinus inAdd" | ||
| 275 | @click="addFwjgInfo" | ||
| 276 | >+</el-button | ||
| 277 | > | ||
| 260 | <span>房屋结构<i class="requisite">*</i></span> | 278 | <span>房屋结构<i class="requisite">*</i></span> |
| 261 | </td> | 279 | </td> |
| 262 | <td colspan="1" align="center" > | 280 | <td colspan="1" align="center" > |
| ... | @@ -808,7 +826,6 @@ | ... | @@ -808,7 +826,6 @@ |
| 808 | 826 | ||
| 809 | td{ | 827 | td{ |
| 810 | //bgcolor:#F1F4FC; | 828 | //bgcolor:#F1F4FC; |
| 811 | bgcolor:#fff; | ||
| 812 | width:8.33% | 829 | width:8.33% |
| 813 | } | 830 | } |
| 814 | 831 | ||
| ... | @@ -824,4 +841,11 @@ | ... | @@ -824,4 +841,11 @@ |
| 824 | .hTable{ | 841 | .hTable{ |
| 825 | margin-top: 10px; | 842 | margin-top: 10px; |
| 826 | } | 843 | } |
| 844 | |||
| 845 | /deep/.el-select-tree{ | ||
| 846 | width: 100%; | ||
| 847 | .el-input__inner{ | ||
| 848 | height: 30px !important; | ||
| 849 | } | ||
| 850 | } | ||
| 827 | </style> | 851 | </style> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -13,19 +13,19 @@ | ... | @@ -13,19 +13,19 @@ |
| 13 | <input v-show="false" :disabled="form.qszt!='0'" class="formInput" v-model="form.zdbsm"> | 13 | <input v-show="false" :disabled="form.qszt!='0'" class="formInput" v-model="form.zdbsm"> |
| 14 | </td> | 14 | </td> |
| 15 | <td colspan="2" >自然幢号<i class="requisite">*</i></td> | 15 | <td colspan="2" >自然幢号<i class="requisite">*</i></td> |
| 16 | <td colspan="4" > | 16 | <td colspan="4" class="psr"> |
| 17 | <input class="formInput" :disabled="form.qszt!='0'" v-model="form.zrzh"> | 17 | <input class="formInput percent80" :disabled="form.qszt!='0'" v-model="form.zrzh"> |
| 18 | <el-button @click.prevent="generatorCode" type="warning" class="createBtn" size="mini">生成</el-button> | ||
| 18 | </td> | 19 | </td> |
| 19 | </tr> | 20 | </tr> |
| 20 | <tr> | 21 | <tr> |
| 21 | <td colspan="2" >项目名称<i class="requisite">*</i></td> | 22 | <td colspan="2" >项目名称<i class="requisite">*</i></td> |
| 22 | <td colspan="4" > | 23 | <td colspan="4" > |
| 23 | <input class="formInput" :disabled="form.qszt!='0'" v-model="form.xmmc"> | 24 | <input class="formInput " :disabled="form.qszt!='0'" v-model="form.xmmc"> |
| 24 | </td> | 25 | </td> |
| 25 | <td colspan="2" >不动产单元号<i class="requisite">*</i></td> | 26 | <td colspan="2" >不动产单元号<i class="requisite">*</i></td> |
| 26 | <td colspan="4" class="psr"> | 27 | <td colspan="4"> |
| 27 | <input class="formInput percent80" :disabled="form.qszt!='0'" v-model="form.bdcdyh"> | 28 | <input class="formInput " :disabled="form.qszt!='0'" v-model="form.bdcdyh"> |
| 28 | <el-button @click.prevent="generatorCode" type="warning" class="createBtn" size="mini">生成</el-button> | ||
| 29 | </td> | 29 | </td> |
| 30 | </tr> | 30 | </tr> |
| 31 | 31 | ||
| ... | @@ -150,7 +150,7 @@ | ... | @@ -150,7 +150,7 @@ |
| 150 | </td> | 150 | </td> |
| 151 | 151 | ||
| 152 | <td colspan="1" style="min-width:120px"> | 152 | <td colspan="1" style="min-width:120px"> |
| 153 | <el-button type="info" class="outMinus addMinus" size="mini" style="" @click="deleteYtInfo(index)" circle>-</el-button> | 153 | <el-button type="info" class="inMinus addMinus" size="mini" style="" @click="deleteYtInfo(index)" circle>-</el-button> |
| 154 | 规划用途 | 154 | 规划用途 |
| 155 | </td> | 155 | </td> |
| 156 | <td colspan="3" > | 156 | <td colspan="3" > |
| ... | @@ -190,7 +190,7 @@ | ... | @@ -190,7 +190,7 @@ |
| 190 | <span>房屋结构<i class="requisite">*</i></span> | 190 | <span>房屋结构<i class="requisite">*</i></span> |
| 191 | </td> | 191 | </td> |
| 192 | <td colspan="1" > | 192 | <td colspan="1" > |
| 193 | <el-button type="primary" class="outMinus addMinus" size="mini" style="margin-right: 10px" @click="deleteFwjgInfo(index)">-</el-button> | 193 | <el-button type="primary" class="inMinus addMinus" size="mini" style="margin-right: 10px" @click="deleteFwjgInfo(index)">-</el-button> |
| 194 | <span> 删除</span> | 194 | <span> 删除</span> |
| 195 | </td> | 195 | </td> |
| 196 | <td colspan="9" > | 196 | <td colspan="9" > |
| ... | @@ -272,7 +272,7 @@ | ... | @@ -272,7 +272,7 @@ |
| 272 | 272 | ||
| 273 | <script> | 273 | <script> |
| 274 | import Qlr from "../../../components/formMenu/qlr"; | 274 | import Qlr from "../../../components/formMenu/qlr"; |
| 275 | import Qlxz from "../../../components/formMenu/qlxz"; | 275 | import Qlxz from "../../../components/formMenu/qlxz_simple"; |
| 276 | import {getBdcdyh,saveZrzInfo,getZrzDetailByBsm} from "../../../api/zrz" | 276 | import {getBdcdyh,saveZrzInfo,getZrzDetailByBsm} from "../../../api/zrz" |
| 277 | import {getQjZdjbxxDetailById} from "../../../api/zd" | 277 | import {getQjZdjbxxDetailById} from "../../../api/zd" |
| 278 | import {submit} from "../../../api/common" | 278 | import {submit} from "../../../api/common" | ... | ... |
-
Please register or sign in to post a comment