de5b21a2 by 焦泽平

多幢表单修改

1 parent 50a87cda
...@@ -71,9 +71,9 @@ ...@@ -71,9 +71,9 @@
71 </tr> 71 </tr>
72 72
73 <tr height="30"> 73 <tr height="30">
74 <td colspan="2" align="center" type="number" >多幢独用土地面积(㎡)</td> 74 <td colspan="2" align="center" >多幢独用土地面积(㎡)</td>
75 <td colspan="4" > 75 <td colspan="4" >
76 <input class="formInput" v-model="form.dlsytdmj"> 76 <input class="formInput" type="number" v-model="form.dlsytdmj">
77 </td> 77 </td>
78 <td colspan="2" align="center" >产权来源</td> 78 <td colspan="2" align="center" >产权来源</td>
79 <td colspan="4" > 79 <td colspan="4" >
...@@ -89,23 +89,24 @@ ...@@ -89,23 +89,24 @@
89 </tr> 89 </tr>
90 90
91 <tr height="30" v-for="(item1,index) in form.fwytList" :key="index"> 91 <tr height="30" v-for="(item1,index) in form.fwytList" :key="index">
92 <td v-if="index===0" colspan="2" :rowspan="ytTitleRowspan" align="center" id="ytTitle"> 92 <td colspan="2" v-if="index===0" :rowspan="ytTitleRowspan" class="tdright" id="ytTitle">
93 <el-button type="primary" size="mini" style="margin-right: 10px" @click="addYtInfo">添加</el-button> 93 <i class="iconfont iconicon-test1" style="margin-right: 8px;color:#66b1ff;font-size:30px" @click="addYtInfo"></i>
94 <span>用途</span> 94 <span><i class="requisite">*</i>房屋用途</span>
95 </td> 95 </td>
96 96
97 <td colspan="1" align="center" > 97 <td colspan="1" style="min-width:120px" class="tdright">
98 <el-button type="info" size="mini" style="" @click="deleteYtInfo(index)" circle>删除</el-button> 98 <i class="iconfont iconicon-test" style="color:#FA6400;font-size:30px" @click="deleteYtInfo(index)"></i>
99 规划用途 99 规划用途
100 </td> 100 </td>
101 <td colspan="3" align="center" > 101 <td colspan="3" >
102 <el-select-tree style="width:100%" 102 <el-select-tree style="width:100%"
103 ref="ghyt"
103 v-if="show" 104 v-if="show"
104 @change="updateSjfyyt(item1)" 105 @change="updateSjfyyt(item1)"
105 :default-expand-all="defaultExpandAll" 106 :default-expand-all="defaultExpandAll"
106 :multiple="multiple" 107 :multiple="multiple"
107 :placeholder="placeholder" 108 :placeholder="placeholder"
108 :disabled="disabled" 109 :disabled="form.qszt!='0'"
109 :data="$store.state.fwytList" 110 :data="$store.state.fwytList"
110 :props="treeProps" 111 :props="treeProps"
111 :check-strictly="checkStrictly" 112 :check-strictly="checkStrictly"
...@@ -113,14 +114,15 @@ ...@@ -113,14 +114,15 @@
113 v-model="item1.fwytzdbsm" 114 v-model="item1.fwytzdbsm"
114 ></el-select-tree> 115 ></el-select-tree>
115 </td> 116 </td>
116 <td colspan="2" align="center" >用途</td> 117 <td colspan="2" class="tdright">实际用途</td>
117 <td colspan="4"> 118 <td colspan="4" >
118 <el-select-tree style="width:100%" 119 <el-select-tree style="width:100%"
120 ref="yt"
119 v-if="show" 121 v-if="show"
120 :default-expand-all="defaultExpandAll" 122 :default-expand-all="defaultExpandAll"
121 :multiple="multiple" 123 :multiple="multiple"
122 :placeholder="placeholder" 124 :placeholder="placeholder"
123 :disabled="disabled" 125 :disabled="form.qszt!='0'"
124 :data="$store.state.fwytList" 126 :data="$store.state.fwytList"
125 :props="treeProps" 127 :props="treeProps"
126 :check-strictly="checkStrictly" 128 :check-strictly="checkStrictly"
...@@ -523,6 +525,9 @@ ...@@ -523,6 +525,9 @@
523 box-sizing: border-box; 525 box-sizing: border-box;
524 padding: 18px; 526 padding: 18px;
525 padding-bottom: 0; 527 padding-bottom: 0;
528 .iconfont{
529 cursor: pointer;
530 }
526 531
527 /deep/textarea{ 532 /deep/textarea{
528 width: 100%; 533 width: 100%;
......