Merge remote-tracking branch 'origin/master'
Showing
25 changed files
with
281 additions
and
156 deletions
... | @@ -44,13 +44,13 @@ export function insertChInfo (data) { | ... | @@ -44,13 +44,13 @@ export function insertChInfo (data) { |
44 | /** | 44 | /** |
45 | * 查询楼盘表数据 | 45 | * 查询楼盘表数据 |
46 | */ | 46 | */ |
47 | export function getLpb (data) { | 47 | export function getLpb (data,lx) { |
48 | return request({ | 48 | return request({ |
49 | url: 'fw/lpb/getLpb', | 49 | url: 'fw/lpb/getLpb', |
50 | method: 'get', | 50 | method: 'get', |
51 | params: { | 51 | params: { |
52 | zrzbsm:data, | 52 | zrzbsm:data, |
53 | syclx:0, | 53 | syclx:lx, |
54 | }, | 54 | }, |
55 | }) | 55 | }) |
56 | } | 56 | } | ... | ... |
... | @@ -156,4 +156,53 @@ ol, ul { list-style:none; } | ... | @@ -156,4 +156,53 @@ ol, ul { list-style:none; } |
156 | .contextmenu li:hover { | 156 | .contextmenu li:hover { |
157 | background: #eee; | 157 | background: #eee; |
158 | } | 158 | } |
159 | // end | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
159 | // end | ||
160 | //生成按钮样式 | ||
161 | .el-button--warning{ | ||
162 | color: #FFF; | ||
163 | background-color: #F79700; | ||
164 | border-color: #F79700; | ||
165 | } | ||
166 | .el-button--warning:focus, .el-button--warning:hover{ | ||
167 | background-color: rgba(247, 151, 0,.7); | ||
168 | border-color: rgba(247, 151, 0,.7); | ||
169 | } | ||
170 | .percent80{ | ||
171 | width: 78%; | ||
172 | float: left; | ||
173 | } | ||
174 | .createBtn{ | ||
175 | position: absolute; | ||
176 | width: 50px; | ||
177 | padding: 6px 0px; | ||
178 | right: 6px; | ||
179 | top: 4px; | ||
180 | } | ||
181 | // 增删操作按钮样式 | ||
182 | .addMinus{ | ||
183 | border-radius:50%; | ||
184 | width: 30px !important; | ||
185 | height: 30px !important; | ||
186 | font-size: 22px!important; | ||
187 | padding: 4px 6px; | ||
188 | } | ||
189 | .outAdd,.outAdd:hover:focus{ | ||
190 | background-color: #2FA5FF!important; | ||
191 | border: 1px solid #2FA5FF!important; | ||
192 | color: #fff!important; | ||
193 | } | ||
194 | .inAdd,.inAdd:hover:focus{ | ||
195 | border: 1px solid #2FA5FF!important; | ||
196 | background-color: #fff!important; | ||
197 | color: #2FA5FF!important; | ||
198 | } | ||
199 | .outMinus,.outMinus:hover:focus{ | ||
200 | background-color: #FA6400!important; | ||
201 | border: 1px solid #FA6400!important; | ||
202 | color: #fff!important; | ||
203 | } | ||
204 | .inMinus,.inMinus:hover:focus{ | ||
205 | border: 1px solid #FA6400!important; | ||
206 | background-color: #fff!important; | ||
207 | color: #FA6400!important; | ||
208 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -210,13 +210,13 @@ | ... | @@ -210,13 +210,13 @@ |
210 | <td rowspan="2" class="btnCol"> | 210 | <td rowspan="2" class="btnCol"> |
211 | <el-button | 211 | <el-button |
212 | type="primary" | 212 | type="primary" |
213 | class="changeBtn" | 213 | class="changeBtn outAdd addMinus" |
214 | @click="handleClick(item, index, 'add')" | 214 | @click="handleClick(item, index, 'add')" |
215 | >+</el-button | 215 | >+</el-button |
216 | > | 216 | > |
217 | <el-button | 217 | <el-button |
218 | type="primary" | 218 | type="primary" |
219 | class="changeBtn" | 219 | class="changeBtn outMinus addMinus" |
220 | @click="handleClick(item, index, 'minus')" | 220 | @click="handleClick(item, index, 'minus')" |
221 | >-</el-button | 221 | >-</el-button |
222 | > | 222 | > |
... | @@ -671,10 +671,6 @@ | ... | @@ -671,10 +671,6 @@ |
671 | text-align: center; | 671 | text-align: center; |
672 | cursor: text; | 672 | cursor: text; |
673 | } | 673 | } |
674 | .percent78 { | ||
675 | width: 78%; | ||
676 | float: left; | ||
677 | } | ||
678 | .percent68 { | 674 | .percent68 { |
679 | width: 68% !important; | 675 | width: 68% !important; |
680 | float: left; | 676 | float: left; |
... | @@ -685,13 +681,6 @@ | ... | @@ -685,13 +681,6 @@ |
685 | width: 30% !important; | 681 | width: 30% !important; |
686 | float: left; | 682 | float: left; |
687 | } | 683 | } |
688 | .createBtn { | ||
689 | position: absolute; | ||
690 | width: 50px; | ||
691 | padding: 6px 4px; | ||
692 | right: 4px; | ||
693 | top: 4px; | ||
694 | } | ||
695 | .el-input__icon { | 684 | .el-input__icon { |
696 | line-height: 37px; | 685 | line-height: 37px; |
697 | } | 686 | } | ... | ... |
... | @@ -15,14 +15,14 @@ | ... | @@ -15,14 +15,14 @@ |
15 | <el-button | 15 | <el-button |
16 | v-show="childIndex < 1" | 16 | v-show="childIndex < 1" |
17 | type="primary" | 17 | type="primary" |
18 | class="changeBtn" | 18 | class="changeBtn addMinus outAdd" |
19 | @click="handleClick(index, 'add')" | 19 | @click="handleClick(index, 'add')" |
20 | >+</el-button | 20 | >+</el-button |
21 | > | 21 | > |
22 | <el-button | 22 | <el-button |
23 | v-show="childIndex < 1" | 23 | v-show="childIndex < 1" |
24 | type="primary" | 24 | type="primary" |
25 | class="changeBtn" | 25 | class="changeBtn addMinus outMinus" |
26 | @click="handleClick(index, 'minus')" | 26 | @click="handleClick(index, 'minus')" |
27 | >-</el-button | 27 | >-</el-button |
28 | > | 28 | > |
... | @@ -41,13 +41,13 @@ | ... | @@ -41,13 +41,13 @@ |
41 | <span class="qlxz" v-show="childIndex < 1">权利性质</span><br /> | 41 | <span class="qlxz" v-show="childIndex < 1">权利性质</span><br /> |
42 | <el-button | 42 | <el-button |
43 | type="primary" | 43 | type="primary" |
44 | class="changeBtn" | 44 | class="changeBtn addMinus inAdd" |
45 | @click="handleInClick(index, childIndex, 'add')" | 45 | @click="handleInClick(index, childIndex, 'add')" |
46 | >+</el-button | 46 | >+</el-button |
47 | > | 47 | > |
48 | <el-button | 48 | <el-button |
49 | type="primary" | 49 | type="primary" |
50 | class="changeBtn" | 50 | class="changeBtn addMinus inMinus" |
51 | @click="handleInClick(index, childIndex, 'minus')" | 51 | @click="handleInClick(index, childIndex, 'minus')" |
52 | >-</el-button | 52 | >-</el-button |
53 | > | 53 | > |
... | @@ -398,7 +398,7 @@ export default { | ... | @@ -398,7 +398,7 @@ export default { |
398 | .qlxzModule { | 398 | .qlxzModule { |
399 | height: auto; | 399 | height: auto; |
400 | position: relative; | 400 | position: relative; |
401 | border-bottom: 1px solid grey; | 401 | border-bottom: 1px solid #E6E6E6; |
402 | .el-col { | 402 | .el-col { |
403 | // height: 100%; | 403 | // height: 100%; |
404 | border-right: 1px solid grey; | 404 | border-right: 1px solid grey; | ... | ... |
... | @@ -289,7 +289,7 @@ export default { | ... | @@ -289,7 +289,7 @@ export default { |
289 | .qlxzModule { | 289 | .qlxzModule { |
290 | height: auto; | 290 | height: auto; |
291 | position: relative; | 291 | position: relative; |
292 | border-bottom: 1px solid grey; | 292 | border-bottom: 1px solid #E6E6E6; |
293 | .el-col { | 293 | .el-col { |
294 | // height: 100%; | 294 | // height: 100%; |
295 | border-right: 1px solid grey; | 295 | border-right: 1px solid grey; | ... | ... |
... | @@ -101,12 +101,16 @@ | ... | @@ -101,12 +101,16 @@ |
101 | } | 101 | } |
102 | }, | 102 | }, |
103 | methods: { | 103 | methods: { |
104 | lodding:function(){ | ||
105 | this.$emit('lodding') | ||
106 | }, | ||
104 | save: function () { | 107 | save: function () { |
105 | this.qlcData['bsms'] = this.bsms | 108 | this.qlcData['bsms'] = this.bsms |
106 | updatePlc(this.qlcData).then(res => { | 109 | updatePlc(this.qlcData).then(res => { |
107 | console.log(res) | 110 | console.log(res) |
108 | if (res.success) { | 111 | if (res.success) { |
109 | Message.success("保存成功") | 112 | Message.success("保存成功") |
113 | this.lodding() | ||
110 | this.close() | 114 | this.close() |
111 | } else { | 115 | } else { |
112 | Message.error(res.message) | 116 | Message.error(res.message) | ... | ... |
... | @@ -313,6 +313,9 @@ | ... | @@ -313,6 +313,9 @@ |
313 | } | 313 | } |
314 | }, | 314 | }, |
315 | methods: { | 315 | methods: { |
316 | lodding:function(){ | ||
317 | this.$emit('lodding') | ||
318 | }, | ||
316 | addYtInfo(){ | 319 | addYtInfo(){ |
317 | this.form.fwytList.push({ | 320 | this.form.fwytList.push({ |
318 | glbsm:'', | 321 | glbsm:'', |
... | @@ -367,6 +370,7 @@ | ... | @@ -367,6 +370,7 @@ |
367 | console.log(this.form) | 370 | console.log(this.form) |
368 | batchUpdateQjH(this.form).then((res)=>{ | 371 | batchUpdateQjH(this.form).then((res)=>{ |
369 | if(res.code===200){ | 372 | if(res.code===200){ |
373 | this.lodding() | ||
370 | this.$message.success("保存成功!") | 374 | this.$message.success("保存成功!") |
371 | } | 375 | } |
372 | }) | 376 | }) | ... | ... |
... | @@ -25,13 +25,13 @@ | ... | @@ -25,13 +25,13 @@ |
25 | <input type="text" class="inputtitle" v-model="plshData.shqz"/> | 25 | <input type="text" class="inputtitle" v-model="plshData.shqz"/> |
26 | </td> | 26 | </td> |
27 | <td> | 27 | <td> |
28 | <el-checkbox v-model="plshData.isSelectDyh"></el-checkbox> | 28 | <el-checkbox v-model="plshData.selectDyh"></el-checkbox> |
29 | </td> | 29 | </td> |
30 | <td> | 30 | <td> |
31 | <input type="text" class="inputtitle" v-model="plshData.fgfA"/> | 31 | <input type="text" class="inputtitle" v-model="plshData.fgfA"/> |
32 | </td> | 32 | </td> |
33 | <td> | 33 | <td> |
34 | <el-checkbox v-model="plshData.isChqbl"></el-checkbox> | 34 | <el-checkbox v-model="plshData.chqbl"></el-checkbox> |
35 | </td> | 35 | </td> |
36 | <td> | 36 | <td> |
37 | <el-select v-model="plshData.c"> | 37 | <el-select v-model="plshData.c"> |
... | @@ -112,9 +112,9 @@ | ... | @@ -112,9 +112,9 @@ |
112 | xlVisible: false, | 112 | xlVisible: false, |
113 | plshData: { | 113 | plshData: { |
114 | shqz: '', | 114 | shqz: '', |
115 | isSelectDyh: false, | 115 | selectDyh: false, |
116 | fgfA: '', | 116 | fgfA: '', |
117 | isChqbl: false, | 117 | chqbl: false, |
118 | c: '', | 118 | c: '', |
119 | fgfB: '', | 119 | fgfB: '', |
120 | shhz: '' | 120 | shhz: '' |
... | @@ -133,6 +133,9 @@ | ... | @@ -133,6 +133,9 @@ |
133 | } | 133 | } |
134 | }, | 134 | }, |
135 | methods: { | 135 | methods: { |
136 | lodding:function(){ | ||
137 | this.$emit('lodding') | ||
138 | }, | ||
136 | xl: function () { | 139 | xl: function () { |
137 | this.xlVisible = true; | 140 | this.xlVisible = true; |
138 | }, | 141 | }, |
... | @@ -144,9 +147,9 @@ | ... | @@ -144,9 +147,9 @@ |
144 | result: function () { | 147 | result: function () { |
145 | this.plshData = { | 148 | this.plshData = { |
146 | shqz: '', | 149 | shqz: '', |
147 | isSelectDyh: false, | 150 | selectDyh: false, |
148 | fgfA: '', | 151 | fgfA: '', |
149 | isChqbl: false, | 152 | chqbl: false, |
150 | c: '', | 153 | c: '', |
151 | fgfB: '', | 154 | fgfB: '', |
152 | shhz: '' | 155 | shhz: '' |
... | @@ -154,10 +157,11 @@ | ... | @@ -154,10 +157,11 @@ |
154 | }, | 157 | }, |
155 | save: function () { | 158 | save: function () { |
156 | this.plshData['bsms'] = this.bsms | 159 | this.plshData['bsms'] = this.bsms |
157 | console.log(this.plshData) | ||
158 | updateSh(this.plshData).then(res => { | 160 | updateSh(this.plshData).then(res => { |
159 | if (res.success) { | 161 | if (res.success) { |
162 | this.lodding(); | ||
160 | this.close(); | 163 | this.close(); |
164 | |||
161 | } else { | 165 | } else { |
162 | Message.error(res.message) | 166 | Message.error(res.message) |
163 | } | 167 | } |
... | @@ -173,7 +177,7 @@ | ... | @@ -173,7 +177,7 @@ |
173 | if (this.plshData.shqz != "") { | 177 | if (this.plshData.shqz != "") { |
174 | gz += this.plshData.shqz | 178 | gz += this.plshData.shqz |
175 | } | 179 | } |
176 | if (this.plshData.isSelectDyh) { | 180 | if (this.plshData.selectDyh) { |
177 | gz += "[单元号]" | 181 | gz += "[单元号]" |
178 | } | 182 | } |
179 | if (this.plshData.fgfA != "") { | 183 | if (this.plshData.fgfA != "") { | ... | ... |
... | @@ -196,10 +196,14 @@ | ... | @@ -196,10 +196,14 @@ |
196 | } | 196 | } |
197 | }, | 197 | }, |
198 | methods: { | 198 | methods: { |
199 | lodding:function(){ | ||
200 | this.$emit('lodding') | ||
201 | }, | ||
199 | save: function () { | 202 | save: function () { |
200 | this.plzlData['bsms'] = this.bsms; | 203 | this.plzlData['bsms'] = this.bsms; |
201 | updateZl(this.plzlData).then(res => { | 204 | updateZl(this.plzlData).then(res => { |
202 | if (res.success) { | 205 | if (res.success) { |
206 | this.lodding() | ||
203 | this.close(); | 207 | this.close(); |
204 | } else { | 208 | } else { |
205 | Message.error(res.message) | 209 | Message.error(res.message) | ... | ... |
... | @@ -398,7 +398,7 @@ export default { | ... | @@ -398,7 +398,7 @@ export default { |
398 | color: #006cff; | 398 | color: #006cff; |
399 | border-left: 1px solid #EAEAEA; | 399 | border-left: 1px solid #EAEAEA; |
400 | border-right: 1px solid #EAEAEA; | 400 | border-right: 1px solid #EAEAEA; |
401 | height: 59px; | 401 | height: 58px; |
402 | border-bottom: 1px solid #FFF; | 402 | border-bottom: 1px solid #FFF; |
403 | } | 403 | } |
404 | } | 404 | } | ... | ... |
... | @@ -10,22 +10,22 @@ | ... | @@ -10,22 +10,22 @@ |
10 | <tr height="30"> | 10 | <tr height="30"> |
11 | <td colspan="2" align="center" >宗地代码</td> | 11 | <td colspan="2" align="center" >宗地代码</td> |
12 | <td colspan="4" > | 12 | <td colspan="4" > |
13 | <el-input v-model="form.zddm"></el-input> | 13 | <input class="formInput" v-model="form.zddm"> |
14 | </td> | 14 | </td> |
15 | <td colspan="2" align="center" >不动产单元号</td> | 15 | <td colspan="2" align="center" >不动产单元号</td> |
16 | <td colspan="4" > | 16 | <td colspan="4" class="psr"> |
17 | <el-input v-model="form.bdcdyh" style="width: 70%"></el-input> | 17 | <input class="formInput percent80" v-model="form.bdcdyh"> |
18 | <el-button @click.prevent="generatorCode" size="mini" type="primary" style="width:25%;margin-left:3%">生成</el-button> | 18 | <el-button @click.prevent="generatorCode" size="mini" class="createBtn" type="warning">生成</el-button> |
19 | </td> | 19 | </td> |
20 | </tr> | 20 | </tr> |
21 | <tr height="30"> | 21 | <tr height="30"> |
22 | <td colspan="2" align="center" >项目名称</td> | 22 | <td colspan="2" align="center" >项目名称</td> |
23 | <td colspan="4" > | 23 | <td colspan="4" > |
24 | <el-input v-model="form.xmmc"></el-input> | 24 | <input class="formInput" v-model="form.xmmc"> |
25 | </td> | 25 | </td> |
26 | <td colspan="2" align="center" >房屋性质</td> | 26 | <td colspan="2" align="center" >房屋性质</td> |
27 | <td colspan="4" > | 27 | <td colspan="4" > |
28 | <el-select v-model="form.fwxzbsm" placeholder="请选择" > | 28 | <el-select class="formSelect" v-model="form.fwxzbsm" placeholder="请选择" > |
29 | <el-option | 29 | <el-option |
30 | v-for="item in $store.state.fwxzOptions" | 30 | v-for="item in $store.state.fwxzOptions" |
31 | :key="item.bsm" | 31 | :key="item.bsm" |
... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
39 | <tr height="30"> | 39 | <tr height="30"> |
40 | <td colspan="2" align="center" >房屋类型</td> | 40 | <td colspan="2" align="center" >房屋类型</td> |
41 | <td colspan="4" > | 41 | <td colspan="4" > |
42 | <el-select v-model="form.fwlxbsm" placeholder="请选择" > | 42 | <el-select class="formSelect" v-model="form.fwlxbsm" placeholder="请选择" > |
43 | <el-option | 43 | <el-option |
44 | v-for="item in $store.state.fwlxList" | 44 | v-for="item in $store.state.fwlxList" |
45 | :key="item.bsm" | 45 | :key="item.bsm" |
... | @@ -61,7 +61,7 @@ | ... | @@ -61,7 +61,7 @@ |
61 | <tr height="30"> | 61 | <tr height="30"> |
62 | <td colspan="2" align="center" >产别</td> | 62 | <td colspan="2" align="center" >产别</td> |
63 | <td colspan="4" > | 63 | <td colspan="4" > |
64 | <el-select v-model="form.fwcbbsm" placeholder="请选择" > | 64 | <el-select class="formSelect" v-model="form.fwcbbsm" placeholder="请选择" > |
65 | <el-option | 65 | <el-option |
66 | v-for="item in $store.state.cbOptions" | 66 | v-for="item in $store.state.cbOptions" |
67 | :key="item.bsm" | 67 | :key="item.bsm" |
... | @@ -72,7 +72,7 @@ | ... | @@ -72,7 +72,7 @@ |
72 | </td> | 72 | </td> |
73 | <td colspan="2" align="center" >产权来源</td> | 73 | <td colspan="2" align="center" >产权来源</td> |
74 | <td colspan="4" > | 74 | <td colspan="4" > |
75 | <el-select v-model="form.fwcqlybsm" placeholder="请选择" > | 75 | <el-select class="formSelect" v-model="form.fwcqlybsm" placeholder="请选择" > |
76 | <el-option | 76 | <el-option |
77 | v-for="item in $store.state.cqlyOptions" | 77 | v-for="item in $store.state.cqlyOptions" |
78 | :key="item.bsm" | 78 | :key="item.bsm" |
... | @@ -127,26 +127,23 @@ | ... | @@ -127,26 +127,23 @@ |
127 | <tr height="30"> | 127 | <tr height="30"> |
128 | <td colspan="2" align="center" >共有土地面积(㎡)</td> | 128 | <td colspan="2" align="center" >共有土地面积(㎡)</td> |
129 | <td colspan="2" > | 129 | <td colspan="2" > |
130 | <el-input v-model="form.zdmj"></el-input> | 130 | <input class="formInput" v-model="form.zdmj"> |
131 | </td> | 131 | </td> |
132 | <td colspan="2" align="center" >分摊土地面积(㎡)</td> | 132 | <td colspan="2" align="center" >分摊土地面积(㎡)</td> |
133 | <td colspan="2" > | 133 | <td colspan="2" > |
134 | <el-input v-model="form.fttdsymj"></el-input> | 134 | <input class="formInput" v-model="form.fttdsymj"> |
135 | </td> | 135 | </td> |
136 | <td colspan="2" align="center" >多幢独用土地面积(㎡)</td> | 136 | <td colspan="2" align="center" >多幢独用土地面积(㎡)</td> |
137 | <td colspan="2" > | 137 | <td colspan="2" > |
138 | <el-input v-model="form.dlsytdmj"></el-input> | 138 | <input class="formInput" v-model="form.dlsytdmj"> |
139 | </td> | 139 | </td> |
140 | </tr> | 140 | </tr> |
141 | 141 | ||
142 | <tr> | 142 | <tr> |
143 | <td colspan="12" rowspan="4" align="center"> | 143 | <td colspan="12" align="center"> |
144 | <Qlxz ref="qlxzModule"></Qlxz> | 144 | <Qlxz ref="qlxzModule" :formData="form"></Qlxz> |
145 | </td> | 145 | </td> |
146 | </tr> | 146 | </tr> |
147 | <tr></tr> | ||
148 | <tr></tr> | ||
149 | <tr></tr> | ||
150 | 147 | ||
151 | 148 | ||
152 | <tr height="30"> | 149 | <tr height="30"> |
... | @@ -154,7 +151,7 @@ | ... | @@ -154,7 +151,7 @@ |
154 | <span>坐落</span> | 151 | <span>坐落</span> |
155 | </td> | 152 | </td> |
156 | <td colspan="10" > | 153 | <td colspan="10" > |
157 | <el-input v-model="form.zl"></el-input> | 154 | <input class="formInput" v-model="form.zl"> |
158 | </td> | 155 | </td> |
159 | </tr> | 156 | </tr> |
160 | 157 | ||
... | @@ -163,7 +160,7 @@ | ... | @@ -163,7 +160,7 @@ |
163 | <span>附加说明</span> | 160 | <span>附加说明</span> |
164 | </td> | 161 | </td> |
165 | <td colspan="10" rowspan="2" > | 162 | <td colspan="10" rowspan="2" > |
166 | <el-input v-model="form.bz" type="textarea"></el-input> | 163 | <input class="formInput" v-model="form.bz" type="textarea"> |
167 | </td> | 164 | </td> |
168 | </tr> | 165 | </tr> |
169 | <tr height="30"> | 166 | <tr height="30"> |
... | @@ -174,7 +171,7 @@ | ... | @@ -174,7 +171,7 @@ |
174 | <span>调查意见</span> | 171 | <span>调查意见</span> |
175 | </td> | 172 | </td> |
176 | <td colspan="10" > | 173 | <td colspan="10" > |
177 | <el-input v-model="form.name"></el-input> | 174 | <input class="formInput" v-model="form.name"> |
178 | </td> | 175 | </td> |
179 | </tr> | 176 | </tr> |
180 | 177 | ||
... | @@ -183,7 +180,7 @@ | ... | @@ -183,7 +180,7 @@ |
183 | <span>审查员</span> | 180 | <span>审查员</span> |
184 | </td> | 181 | </td> |
185 | <td colspan="2" > | 182 | <td colspan="2" > |
186 | <el-input v-model="form.name"></el-input> | 183 | <input class="formInput" v-model="form.name"> |
187 | </td> | 184 | </td> |
188 | <td colspan="2" rowspan="2" align="right" style="width:8.33%;padding-right:10px"> | 185 | <td colspan="2" rowspan="2" align="right" style="width:8.33%;padding-right:10px"> |
189 | <span>审查日期</span> | 186 | <span>审查日期</span> |
... | @@ -481,10 +478,6 @@ | ... | @@ -481,10 +478,6 @@ |
481 | box-sizing: border-box; | 478 | box-sizing: border-box; |
482 | padding: 18px; | 479 | padding: 18px; |
483 | padding-bottom: 0; | 480 | padding-bottom: 0; |
484 | /deep/.el-input__inner{ | ||
485 | width: 100%; | ||
486 | border: 0; | ||
487 | } | ||
488 | 481 | ||
489 | /deep/textarea{ | 482 | /deep/textarea{ |
490 | width: 100%; | 483 | width: 100%; |
... | @@ -503,13 +496,12 @@ | ... | @@ -503,13 +496,12 @@ |
503 | } | 496 | } |
504 | 497 | ||
505 | td{ | 498 | td{ |
506 | //bgcolor:#F1F4FC; | 499 | height: 36px; |
507 | bgcolor:#fff; | 500 | width:8.33%; |
508 | width:8.33% | ||
509 | } | 501 | } |
510 | 502 | ||
511 | .el-select{ | 503 | .el-select{ |
512 | display:block; | 504 | width: 100%; |
513 | } | 505 | } |
514 | 506 | ||
515 | table{ | 507 | table{ |
... | @@ -518,6 +510,15 @@ | ... | @@ -518,6 +510,15 @@ |
518 | 510 | ||
519 | .dzTable{ | 511 | .dzTable{ |
520 | margin-top: 10px; | 512 | margin-top: 10px; |
513 | /deep/.el-input__inner { | ||
514 | margin: 0; | ||
515 | height: 36px; | ||
516 | outline: none; | ||
517 | border: none; | ||
518 | color: #606764; | ||
519 | overflow: visible; | ||
520 | text-align: center; | ||
521 | } | ||
521 | } | 522 | } |
522 | } | 523 | } |
523 | </style> | 524 | </style> |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
... | @@ -4,7 +4,7 @@ | ... | @@ -4,7 +4,7 @@ |
4 | <el-tab-pane label="分割" name="fg"><fg></fg></el-tab-pane> | 4 | <el-tab-pane label="分割" name="fg"><fg></fg></el-tab-pane> |
5 | <el-tab-pane label="合并" name="hb"><hb v-if="hbLoad"></hb></el-tab-pane> | 5 | <el-tab-pane label="合并" name="hb"><hb v-if="hbLoad"></hb></el-tab-pane> |
6 | <el-tab-pane label="范围属性变更" name="fwsxbg"><fwsxbg v-if="fwsxbgLoad"></fwsxbg></el-tab-pane> | 6 | <el-tab-pane label="范围属性变更" name="fwsxbg"><fwsxbg v-if="fwsxbgLoad"></fwsxbg></el-tab-pane> |
7 | <el-tab-pane label="重新落宗" name="cxlz"><cxlz></cxlz></el-tab-pane> | 7 | <el-tab-pane label="重新落宗" name="cxlz"><cxlz v-if="cxlzLoad"></cxlz></el-tab-pane> |
8 | </el-tabs> | 8 | </el-tabs> |
9 | </div> | 9 | </div> |
10 | </template> | 10 | </template> |
... | @@ -25,6 +25,7 @@ export default { | ... | @@ -25,6 +25,7 @@ export default { |
25 | activeName: "fg", | 25 | activeName: "fg", |
26 | hbLoad:false, //默认不加载合并tab | 26 | hbLoad:false, //默认不加载合并tab |
27 | fwsxbgLoad:false, //默认不加载范围属性变更tab | 27 | fwsxbgLoad:false, //默认不加载范围属性变更tab |
28 | cxlzLoad:false, //默认不加载重新落宗tab | ||
28 | }; | 29 | }; |
29 | }, | 30 | }, |
30 | methods: { | 31 | methods: { |
... | @@ -36,6 +37,9 @@ export default { | ... | @@ -36,6 +37,9 @@ export default { |
36 | if(!this.fwsxbgLoad){ | 37 | if(!this.fwsxbgLoad){ |
37 | this.fwsxbgLoad = tab.name == 'fwsxbg' ? true : false | 38 | this.fwsxbgLoad = tab.name == 'fwsxbg' ? true : false |
38 | } | 39 | } |
40 | if(!this.cxlzLoad){ | ||
41 | this.cxlzLoad = tab.name == 'cxlz' ? true : false | ||
42 | } | ||
39 | }, | 43 | }, |
40 | }, | 44 | }, |
41 | created() {}, | 45 | created() {}, | ... | ... |
... | @@ -106,7 +106,7 @@ export default { | ... | @@ -106,7 +106,7 @@ export default { |
106 | }, | 106 | }, |
107 | mounted() { | 107 | mounted() { |
108 | this.$nextTick(() => { | 108 | this.$nextTick(() => { |
109 | this.tableHeight = this.$refs.notice.offsetHeight - 53; | 109 | this.tableHeight = this.$refs.notice.offsetHeight - 54; |
110 | }); | 110 | }); |
111 | }, | 111 | }, |
112 | methods: { | 112 | methods: { |
... | @@ -228,13 +228,13 @@ export default { | ... | @@ -228,13 +228,13 @@ export default { |
228 | } | 228 | } |
229 | } | 229 | } |
230 | } | 230 | } |
231 | .el-card__body { | 231 | /deep/ .el-card__body { |
232 | padding: 40px; | 232 | padding: 50px 20px; |
233 | } | 233 | } |
234 | } | 234 | } |
235 | .notice { | 235 | .notice { |
236 | padding: 0; | 236 | padding: 0; |
237 | height: calc(100% - 225px); | 237 | height: calc(100% - 285px); |
238 | @flex(); | 238 | @flex(); |
239 | .news { | 239 | .news { |
240 | float: left; | 240 | float: left; | ... | ... |
... | @@ -22,20 +22,41 @@ | ... | @@ -22,20 +22,41 @@ |
22 | </table> | 22 | </table> |
23 | <table border="1"> | 23 | <table border="1"> |
24 | <tr> | 24 | <tr> |
25 | <td @click="addRow" class="cz">+</td> | 25 | <td class="cz"><el-button |
26 | type="primary" | ||
27 | class="changeBtn outAdd addMinus" | ||
28 | @click="addRow" | ||
29 | >+</el-button | ||
30 | ></td> | ||
26 | <td class="dzwdm">定着物代码</td> | 31 | <td class="dzwdm">定着物代码</td> |
27 | <td class="syqmj">土地所有权/使用权面积(㎡)</td> | 32 | <td class="syqmj">土地所有权/使用权面积(㎡)</td> |
28 | <td class="dytdmj">独有独用土地面积(㎡)</td> | 33 | <td class="dytdmj">独有独用土地面积(㎡)</td> |
29 | <td class="fttjmj">分摊土地面积(㎡)</td> | 34 | <td class="fttjmj">分摊土地面积(㎡)</td> |
30 | </tr> | 35 | </tr> |
31 | <tr v-for="(item,i) in mjftData.list" :key="i"> | 36 | <tr v-for="(item,i) in mjftData.list" :key="i"> |
32 | <td @click="delRow(i)" class="cz">-</td> | 37 | <td class="cz"> |
33 | <td class="dzwdm"><input type="text" class="formInput" v-model="item.dzwdm"/></td> | 38 | <el-button |
34 | <td class="syqmj"><input type="number" class="formInput" v-model="item.tdsyqsyqmj" @keydown="oninput"/> | 39 | type="primary" |
40 | class="changeBtn outMinus addMinus" | ||
41 | @click="delRow(i)" | ||
42 | >-</el-button | ||
43 | > | ||
35 | </td> | 44 | </td> |
36 | <td class="dytdmj"><input type="number" class="formInput" v-model="item.dydytdmj" @keydown="oninput"/> | 45 | <td class="dzwdm"> |
46 | <el-input v-model="item.dzwdm" placeholder="请输入定着物代码"> | ||
47 | </el-input> | ||
37 | </td> | 48 | </td> |
38 | <td class="fttjmj"><input type="number" class="formInput" v-model="item.fttdmj" @keydown="oninput"/> | 49 | <td class="syqmj"> |
50 | <el-input placeholder="请输入使用所有权面积" style="ime-mode:inactive" | ||
51 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" | ||
52 | v-model="item.tdsyqsyqmj" | ||
53 | ></el-input> | ||
54 | </td> | ||
55 | <td class="dytdmj"> | ||
56 | <el-input v-model="item.dydytdmj" style="ime-mode:inactive" placeholder="请输入独有独用土地面积" oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | ||
57 | </td> | ||
58 | <td class="fttjmj"> | ||
59 | <el-input v-model="item.fttdmj" style="ime-mode:inactive" placeholder="请输入分摊土地面积" oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | ||
39 | </td> | 60 | </td> |
40 | </tr> | 61 | </tr> |
41 | <tr> | 62 | <tr> |
... | @@ -110,9 +131,6 @@ | ... | @@ -110,9 +131,6 @@ |
110 | console.log(error) | 131 | console.log(error) |
111 | }) | 132 | }) |
112 | }, | 133 | }, |
113 | oninput(e) { | ||
114 | e.target.value = (e.target.value.match(/^\d*(\.?\d{0,2})/g)[0]) || null | ||
115 | }, | ||
116 | addRow() { | 134 | addRow() { |
117 | this.mjftData.list.push({ | 135 | this.mjftData.list.push({ |
118 | dydytdmj: '', | 136 | dydytdmj: '', | ... | ... |
... | @@ -113,10 +113,10 @@ | ... | @@ -113,10 +113,10 @@ |
113 | <td colspan="4" class="psr"> | 113 | <td colspan="4" class="psr"> |
114 | <input :disabled="formData.qszt!='0'" | 114 | <input :disabled="formData.qszt!='0'" |
115 | type="text" placeholder="请输入" | 115 | type="text" placeholder="请输入" |
116 | class="formInput percent78" | 116 | class="formInput percent80" |
117 | v-model="formData.zddm" | 117 | v-model="formData.zddm" |
118 | /> | 118 | /> |
119 | <el-button type="primary" class="createBtn" @click="generatorCode" | 119 | <el-button type="warning" class="createBtn" @click="generatorCode" |
120 | >生成 | 120 | >生成 |
121 | </el-button> | 121 | </el-button> |
122 | </td> | 122 | </td> |
... | @@ -131,10 +131,10 @@ | ... | @@ -131,10 +131,10 @@ |
131 | <td colspan="4" class="psr"> | 131 | <td colspan="4" class="psr"> |
132 | <input | 132 | <input |
133 | type="text" :disabled="formData.qszt!='0'" | 133 | type="text" :disabled="formData.qszt!='0'" |
134 | class="formInput percent78" | 134 | class="formInput percent80" |
135 | v-model="formData.bdcdyh" | 135 | v-model="formData.bdcdyh" |
136 | /> | 136 | /> |
137 | <el-button type="primary" class="createBtn">生成</el-button> | 137 | <el-button type="warning" class="createBtn">生成</el-button> |
138 | </td> | 138 | </td> |
139 | </tr> | 139 | </tr> |
140 | <tr> | 140 | <tr> |
... | @@ -708,10 +708,6 @@ export default { | ... | @@ -708,10 +708,6 @@ export default { |
708 | overflow: visible; | 708 | overflow: visible; |
709 | text-align: center; | 709 | text-align: center; |
710 | } | 710 | } |
711 | .percent78 { | ||
712 | width: 78%; | ||
713 | float: left; | ||
714 | } | ||
715 | .percent68 { | 711 | .percent68 { |
716 | width: 68% !important; | 712 | width: 68% !important; |
717 | float: left; | 713 | float: left; |
... | @@ -732,13 +728,6 @@ export default { | ... | @@ -732,13 +728,6 @@ export default { |
732 | width: 30% !important; | 728 | width: 30% !important; |
733 | float: left; | 729 | float: left; |
734 | } | 730 | } |
735 | .createBtn { | ||
736 | position: absolute; | ||
737 | width: 50px; | ||
738 | padding: 6px 4px; | ||
739 | right: 4px; | ||
740 | top: 4px; | ||
741 | } | ||
742 | .el-input__icon { | 731 | .el-input__icon { |
743 | line-height: 37px; | 732 | line-height: 37px; |
744 | } | 733 | } | ... | ... |
... | @@ -20,9 +20,9 @@ | ... | @@ -20,9 +20,9 @@ |
20 | <tr height="30"> | 20 | <tr height="30"> |
21 | <td colspan="2" align="center" >不动产单元号<i class="requisite">*</i></td> | 21 | <td colspan="2" align="center" >不动产单元号<i class="requisite">*</i></td> |
22 | <!-- todo 此处暂时存放的是不动产单元号标识码,而不是不动产单元号--> | 22 | <!-- todo 此处暂时存放的是不动产单元号标识码,而不是不动产单元号--> |
23 | <td colspan="4" > | 23 | <td colspan="4" class="psr"> |
24 | <el-input v-model="form.bdcdyh" style="width: 82%" disabled></el-input> | 24 | <el-input v-model="form.bdcdyh" class="percent80" disabled></el-input> |
25 | <el-button @click.prevent="generatorCode" size="mini" type="primary" style="width:17%;margin-left:1%">生成</el-button> | 25 | <el-button @click.prevent="generatorCode" size="mini" class="createBtn" type="warning">生成</el-button> |
26 | </td> | 26 | </td> |
27 | <td colspan="2" align="center" >原不动产单元</td> | 27 | <td colspan="2" align="center" >原不动产单元</td> |
28 | <td colspan="4" > | 28 | <td colspan="4" > | ... | ... |
... | @@ -3,7 +3,7 @@ | ... | @@ -3,7 +3,7 @@ |
3 | <div class="tab-header"> | 3 | <div class="tab-header"> |
4 | <el-row class="searchContent"> | 4 | <el-row class="searchContent"> |
5 | <el-col :span="8"> | 5 | <el-col :span="8"> |
6 | <el-radio-group v-model="tabPosition"> | 6 | <el-radio-group v-model="syclx"> |
7 | <el-radio-button label="1">实测</el-radio-button> | 7 | <el-radio-button label="1">实测</el-radio-button> |
8 | <el-radio-button label="0">预测</el-radio-button> | 8 | <el-radio-button label="0">预测</el-radio-button> |
9 | </el-radio-group> | 9 | </el-radio-group> |
... | @@ -34,28 +34,28 @@ | ... | @@ -34,28 +34,28 @@ |
34 | class="radioBtn" | 34 | class="radioBtn" |
35 | label="3" | 35 | label="3" |
36 | border | 36 | border |
37 | @click="plhVisible = true" | 37 | @click="openPl('h')" |
38 | >批量户</el-button | 38 | >批量户</el-button |
39 | > | 39 | > |
40 | <el-button | 40 | <el-button |
41 | class="radioBtn" | 41 | class="radioBtn" |
42 | label="4" | 42 | label="4" |
43 | border | 43 | border |
44 | @click="plcVisible = true" | 44 | @click="openPlC" |
45 | >批量层</el-button | 45 | >批量层</el-button |
46 | > | 46 | > |
47 | <el-button | 47 | <el-button |
48 | class="radioBtn" | 48 | class="radioBtn" |
49 | label="5" | 49 | label="5" |
50 | border | 50 | border |
51 | @click="plShVisible = true" | 51 | @click="openPl('sh')" |
52 | >批量室号</el-button | 52 | >批量室号</el-button |
53 | > | 53 | > |
54 | <el-button | 54 | <el-button |
55 | class="radioBtn" | 55 | class="radioBtn" |
56 | label="6" | 56 | label="6" |
57 | border | 57 | border |
58 | @click="plzlVisible = true" | 58 | @click="openPl('zl')" |
59 | >批量坐落</el-button | 59 | >批量坐落</el-button |
60 | > | 60 | > |
61 | <el-button class="radioBtn" label="7" border @click="addBdcdyh" | 61 | <el-button class="radioBtn" label="7" border @click="addBdcdyh" |
... | @@ -236,10 +236,10 @@ | ... | @@ -236,10 +236,10 @@ |
236 | </div> | 236 | </div> |
237 | </el-dialog> | 237 | </el-dialog> |
238 | <!-- 批量操作弹出框 --> | 238 | <!-- 批量操作弹出框 --> |
239 | <pl-h :plh-visible="plhVisible" :bsms="bsms" @close="plhClose"></pl-h> | 239 | <pl-h :plh-visible="plhVisible" :bsms="bsms" @close="plhClose" @lodding="lodding"></pl-h> |
240 | <pl-zl :pl-zl-visible="plzlVisible" :bsms="bsms" @close="plZlClose"></pl-zl> | 240 | <pl-zl :pl-zl-visible="plzlVisible" :bsms="bsms" @close="plZlClose" @lodding="lodding"></pl-zl> |
241 | <pl-c :plc-visible="plcVisible" :bsms="bsms" @close="plcClose"></pl-c> | 241 | <pl-c :plc-visible="plcVisible" :bsms="cbsmList" @close="plcClose" @lodding="lodding"></pl-c> |
242 | <pl-sh :plShVisible="plShVisible" :bsms="bsms" @close="plshClose"></pl-sh> | 242 | <pl-sh :plShVisible="plShVisible" :bsms="bsms" @close="plshClose" @lodding="lodding"></pl-sh> |
243 | <h-cxlz | 243 | <h-cxlz |
244 | :h-cxlz-visble="hcxlzVisible" | 244 | :h-cxlz-visble="hcxlzVisible" |
245 | :bsms="bsms" | 245 | :bsms="bsms" |
... | @@ -258,6 +258,7 @@ | ... | @@ -258,6 +258,7 @@ |
258 | </template> | 258 | </template> |
259 | 259 | ||
260 | <script> | 260 | <script> |
261 | import {Message} from "element-ui" | ||
261 | import HCxlz from "./../../../../components/hCxlz/hCxlz"; | 262 | import HCxlz from "./../../../../components/hCxlz/hCxlz"; |
262 | import PlC from "./../../../../components/plc/plC"; | 263 | import PlC from "./../../../../components/plc/plC"; |
263 | import PlSh from "./../../../../components/plsh/plSh"; | 264 | import PlSh from "./../../../../components/plsh/plSh"; |
... | @@ -289,7 +290,7 @@ export default { | ... | @@ -289,7 +290,7 @@ export default { |
289 | props: {}, | 290 | props: {}, |
290 | data() { | 291 | data() { |
291 | return { | 292 | return { |
292 | bsms: ["123", "321", "231"], | 293 | bsms: [], |
293 | hbsm: "", | 294 | hbsm: "", |
294 | dialogVisible: false, | 295 | dialogVisible: false, |
295 | plcVisible: false, | 296 | plcVisible: false, |
... | @@ -298,7 +299,7 @@ export default { | ... | @@ -298,7 +299,7 @@ export default { |
298 | plzlVisible: false, | 299 | plzlVisible: false, |
299 | hbjVisible: false, | 300 | hbjVisible: false, |
300 | hcxlzVisible:false, | 301 | hcxlzVisible:false, |
301 | tabPosition: "1", //1是实测 0是预测 | 302 | syclx: "1", //1是实测 0是预测 |
302 | radio1: "", | 303 | radio1: "", |
303 | radio2: "", | 304 | radio2: "", |
304 | createFlag: false, | 305 | createFlag: false, |
... | @@ -372,6 +373,7 @@ export default { | ... | @@ -372,6 +373,7 @@ export default { |
372 | lpbContentwidth: "", | 373 | lpbContentwidth: "", |
373 | time: "", | 374 | time: "", |
374 | dyztBsmList: {}, //单元状态bsmList | 375 | dyztBsmList: {}, //单元状态bsmList |
376 | cbsmList:[], // 层bsmlist | ||
375 | }; | 377 | }; |
376 | }, | 378 | }, |
377 | created() { | 379 | created() { |
... | @@ -391,6 +393,35 @@ export default { | ... | @@ -391,6 +393,35 @@ export default { |
391 | }, 100); | 393 | }, 100); |
392 | }, | 394 | }, |
393 | methods: { | 395 | methods: { |
396 | openPlC(){ | ||
397 | if (this.cbsmList.length <= 0) { | ||
398 | Message.warning("请选择层") | ||
399 | return | ||
400 | } | ||
401 | this.plcVisible=true | ||
402 | }, | ||
403 | openPl(val){ | ||
404 | if (this.bsms.length <= 0) { | ||
405 | Message.warning("请选择操作户") | ||
406 | return | ||
407 | } | ||
408 | switch (val) { | ||
409 | case 'h': | ||
410 | this.plhVisible=true; | ||
411 | break; | ||
412 | case 'zl': | ||
413 | this.plzlVisible=true; | ||
414 | break; | ||
415 | case 'sh': | ||
416 | this.plShVisible=true; | ||
417 | break; | ||
418 | default: | ||
419 | break; | ||
420 | } | ||
421 | }, | ||
422 | lodding(){ | ||
423 | this.getlpbData(); | ||
424 | }, | ||
394 | hcxlzClose() { | 425 | hcxlzClose() { |
395 | this.hcxlzVisible = false; | 426 | this.hcxlzVisible = false; |
396 | }, | 427 | }, |
... | @@ -484,6 +515,11 @@ export default { | ... | @@ -484,6 +515,11 @@ export default { |
484 | } | 515 | } |
485 | console.log(this.bsms); | 516 | console.log(this.bsms); |
486 | }, | 517 | }, |
518 | //获取选中层bsmlist | ||
519 | getCbsm(data){ | ||
520 | this.cbsmList = data; | ||
521 | console.log(this.cbsmList); | ||
522 | }, | ||
487 | //不动产单元号输入框事件 | 523 | //不动产单元号输入框事件 |
488 | inputFocus() { | 524 | inputFocus() { |
489 | this.inputWidth = 200; | 525 | this.inputWidth = 200; | ... | ... |
... | @@ -30,13 +30,13 @@ | ... | @@ -30,13 +30,13 @@ |
30 | <el-input v-model="form.ljzmc"></el-input> | 30 | <el-input v-model="form.ljzmc"></el-input> |
31 | </td> | 31 | </td> |
32 | <td colspan="2" align="center">不动产单元号</td> | 32 | <td colspan="2" align="center">不动产单元号</td> |
33 | <td colspan="4"> | 33 | <td colspan="4" class="psr"> |
34 | <el-input v-model="form.bdcdyh" style="width: 70%"></el-input> | 34 | <el-input v-model="form.bdcdyh" class="percent80"></el-input> |
35 | <el-button | 35 | <el-button |
36 | @click.prevent="" | 36 | @click.prevent="" |
37 | size="mini" | 37 | size="mini" |
38 | type="primary" | 38 | type="warning" |
39 | style="width:25%;margin-left:3%" | 39 | class="createBtn" |
40 | >生成</el-button | 40 | >生成</el-button |
41 | > | 41 | > |
42 | </td> | 42 | </td> | ... | ... |
... | @@ -9,10 +9,10 @@ | ... | @@ -9,10 +9,10 @@ |
9 | <div class="ljz-zdy" :style="{'min-height':ljzzdyHeight+40+'px'}" ref="ljzzdy" v-show="ljzs.zdys.length>0" v-for="(zdys,zdyIndex) in ljzs.zdys" :key="zdyIndex" > | 9 | <div class="ljz-zdy" :style="{'min-height':ljzzdyHeight+40+'px'}" ref="ljzzdy" v-show="ljzs.zdys.length>0" v-for="(zdys,zdyIndex) in ljzs.zdys" :key="zdyIndex" > |
10 | <!-- 循环幢单元下的层户 --> | 10 | <!-- 循环幢单元下的层户 --> |
11 | <!-- <div class="chTable-wrap"> --> | 11 | <!-- <div class="chTable-wrap"> --> |
12 | <table class="chTable" :style="{'top':(ljzzdyHeight-1-zdys.cs.length*65)+'px'}" border="1" cellspacing="0" cellpadding="0" v-show="zdys.cs.length>0"> | 12 | <table class="chTable" border="1" cellspacing="0" cellpadding="0" v-show="zdys.cs.length>0"> |
13 | <tr v-for="(cs,csIndex) in zdys.cs" :key="csIndex"> | 13 | <tr v-for="(cs,csIndex) in zdys.cs" :key="csIndex"> |
14 | <!-- 显示层数 --> | 14 | <!-- 显示层数 --> |
15 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')">{{cs.sjc}}层</td> | 15 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')" @click="handleClickC($event,cs)">{{cs.sjc}}层</td> |
16 | <!-- 显示户 --> | 16 | <!-- 显示户 --> |
17 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> | 17 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> |
18 | </tr> | 18 | </tr> |
... | @@ -25,10 +25,10 @@ | ... | @@ -25,10 +25,10 @@ |
25 | </div> | 25 | </div> |
26 | <!-- 循环逻辑幢下的层户 --> | 26 | <!-- 循环逻辑幢下的层户 --> |
27 | <div class="ljz-ch" :style="{'min-height':ljzzdyHeight+40+'px'}" v-if="ljzs.cs.length>0"> | 27 | <div class="ljz-ch" :style="{'min-height':ljzzdyHeight+40+'px'}" v-if="ljzs.cs.length>0"> |
28 | <table class="chTable" :style="{'top':(ljzzdyHeight+40-1-ljzs.cs.length*65)+'px'}" border="1" cellspacing="0" cellpadding="0"> | 28 | <table class="chTable" border="1" cellspacing="0" cellpadding="0"> |
29 | <tr v-for="(cs) in ljzs.cs" :key="cs.bsm"> | 29 | <tr v-for="(cs) in ljzs.cs" :key="cs.bsm"> |
30 | <!-- 显示层数 --> | 30 | <!-- 显示层数 --> |
31 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')">{{cs.sjc}}层</td> | 31 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')" @click="handleClickC($event,cs)">{{cs.sjc}}层</td> |
32 | <!-- 显示户 --> | 32 | <!-- 显示户 --> |
33 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> | 33 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> |
34 | </tr> | 34 | </tr> |
... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
53 | <table class="chTable" border="1" cellspacing="0" cellpadding="0" v-show="zdys.cs.length>0"> | 53 | <table class="chTable" border="1" cellspacing="0" cellpadding="0" v-show="zdys.cs.length>0"> |
54 | <tr v-for="(cs,csIndex) in zdys.cs" :key="csIndex"> | 54 | <tr v-for="(cs,csIndex) in zdys.cs" :key="csIndex"> |
55 | <!-- 显示层数 --> | 55 | <!-- 显示层数 --> |
56 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')">{{cs.sjc}}层</td> | 56 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')" @click="handleClickC($event,cs)">{{cs.sjc}}层</td> |
57 | <!-- 显示户 --> | 57 | <!-- 显示户 --> |
58 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> | 58 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> |
59 | </tr> | 59 | </tr> |
... | @@ -65,7 +65,7 @@ | ... | @@ -65,7 +65,7 @@ |
65 | <table class="chTable" ref="ch" border="1" cellspacing="0" cellpadding="0" v-show="lpbData.cs != null && lpbData.cs.length>0" > | 65 | <table class="chTable" ref="ch" border="1" cellspacing="0" cellpadding="0" v-show="lpbData.cs != null && lpbData.cs.length>0" > |
66 | <tr v-for="(cs,csIndex) in lpbData.cs" :key="csIndex"> | 66 | <tr v-for="(cs,csIndex) in lpbData.cs" :key="csIndex"> |
67 | <!-- 显示层数 --> | 67 | <!-- 显示层数 --> |
68 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')">{{cs.sjc}}层</td> | 68 | <td class="floor" @contextmenu.prevent="openMenu($event, cs,'c')" @click="handleClickC($event,cs)">{{cs.sjc}}层</td> |
69 | <!-- 显示户 --> | 69 | <!-- 显示户 --> |
70 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> | 70 | <td v-for="(hs,hsIndex) in cs.hs" :data-bsm="hs.bsm" ref="hBsm" :key="hsIndex" :class="(searchNum == hs.shbw || searchNum == hs.bdcdyh) ? 'tdSelect':''" @click="handleTdClick($event,hs.bsm)" @dblclick="dbclick(hs.bsm)" @contextmenu.prevent="openMenu($event, hs,'h')">{{hs.shbw}}</td> |
71 | </tr> | 71 | </tr> |
... | @@ -117,6 +117,7 @@ export default { | ... | @@ -117,6 +117,7 @@ export default { |
117 | ljzzdyHeight: 0, //逻辑幢下幢单元的div高度 | 117 | ljzzdyHeight: 0, //逻辑幢下幢单元的div高度 |
118 | loading: true, | 118 | loading: true, |
119 | hbsmList: [], | 119 | hbsmList: [], |
120 | cbsmList:[], | ||
120 | time: null, //区分单双击事件的定时器 | 121 | time: null, //区分单双击事件的定时器 |
121 | searchNum: Math.random(), | 122 | searchNum: Math.random(), |
122 | //接收父组件传入的根据单元状态/房屋性质/房屋用途筛选的户bsmList | 123 | //接收父组件传入的根据单元状态/房屋性质/房屋用途筛选的户bsmList |
... | @@ -131,7 +132,7 @@ export default { | ... | @@ -131,7 +132,7 @@ export default { |
131 | }, | 132 | }, |
132 | created() {}, | 133 | created() {}, |
133 | mounted() { | 134 | mounted() { |
134 | this.getLpb(this.$store.state.zrzbsm); | 135 | this.getLpb(this.$store.state.zrzbsm,this.$parent.syclx); |
135 | setTimeout(() => { | 136 | setTimeout(() => { |
136 | //tab-content宽度 - 右侧图例宽度 - lp-overview滚动条宽度 - lpbContent的pandingRight | 137 | //tab-content宽度 - 右侧图例宽度 - lp-overview滚动条宽度 - lpbContent的pandingRight |
137 | this.lpbContentWidth = this.$store.state.contentWidth - 34 - 20; | 138 | this.lpbContentWidth = this.$store.state.contentWidth - 34 - 20; |
... | @@ -144,15 +145,15 @@ export default { | ... | @@ -144,15 +145,15 @@ export default { |
144 | }, | 145 | }, |
145 | methods: { | 146 | methods: { |
146 | //获取楼盘表数据 | 147 | //获取楼盘表数据 |
147 | getLpb(zrzbsm) { | 148 | getLpb(zrzbsm,syclx) { |
148 | getLpb(zrzbsm).then((res) => { | 149 | getLpb(zrzbsm,syclx).then((res) => { |
149 | if (res.code == 200) { | 150 | if (res.code == 200) { |
150 | this.loading = false; | 151 | this.loading = false; |
151 | this.lpbData = res.result == null ? this.lpbData : res.result; | 152 | this.lpbData = res.result == null ? this.lpbData : res.result; |
152 | setTimeout(() => { | 153 | this.$nextTick(()=>{ |
153 | //渲染楼盘表 | 154 | //渲染楼盘表 |
154 | this.dataChange(); | 155 | this.dataChange(); |
155 | }, 200); | 156 | }) |
156 | } else { | 157 | } else { |
157 | this.$message({ | 158 | this.$message({ |
158 | message: res.message, | 159 | message: res.message, |
... | @@ -171,12 +172,13 @@ export default { | ... | @@ -171,12 +172,13 @@ export default { |
171 | //自然幢下元素高度宽度计算 | 172 | //自然幢下元素高度宽度计算 |
172 | dataChange() { | 173 | dataChange() { |
173 | //计算逻辑幢宽度 20为marginRight值 | 174 | //计算逻辑幢宽度 20为marginRight值 |
174 | this.ljzWidth -= 9980; | 175 | this.ljzWidth = 20; |
175 | if (this.$refs.ljz != undefined) { | 176 | if (this.$refs.ljz != undefined) { |
176 | this.$refs.ljz.forEach((item) => { | 177 | this.$refs.ljz.forEach((item) => { |
177 | this.ljzWidth += item.offsetWidth + 20; | 178 | this.ljzWidth += item.offsetWidth + 20; |
178 | }); | 179 | }); |
179 | } else { | 180 | } else { |
181 | |||
180 | } | 182 | } |
181 | //计算独立幢单元和独立层户宽度 | 183 | //计算独立幢单元和独立层户宽度 |
182 | //考虑this.$refs.zdy的length为0的情况,即自然幢下没有独立幢单元 | 184 | //考虑this.$refs.zdy的length为0的情况,即自然幢下没有独立幢单元 |
... | @@ -185,7 +187,7 @@ export default { | ... | @@ -185,7 +187,7 @@ export default { |
185 | let higher = true; | 187 | let higher = true; |
186 | //记录最高的幢单元高度 默认为第一个幢单元高度 | 188 | //记录最高的幢单元高度 默认为第一个幢单元高度 |
187 | let highest = this.$refs.zdy[0].offsetHeight; | 189 | let highest = this.$refs.zdy[0].offsetHeight; |
188 | this.zdyWidth -= 980; | 190 | this.zdyWidth = 20; |
189 | this.$refs.zdy.forEach((item) => { | 191 | this.$refs.zdy.forEach((item) => { |
190 | this.zdyWidth += item.offsetWidth + 21; | 192 | this.zdyWidth += item.offsetWidth + 21; |
191 | this.cHeight = | 193 | this.cHeight = |
... | @@ -278,6 +280,7 @@ export default { | ... | @@ -278,6 +280,7 @@ export default { |
278 | }, | 280 | }, |
279 | //户右键点击事件 | 281 | //户右键点击事件 |
280 | openMenu(e,item,type){ | 282 | openMenu(e,item,type){ |
283 | debugger | ||
281 | console.log(e,'e'); | 284 | console.log(e,'e'); |
282 | this.lpbChLeft = e.pageX; | 285 | this.lpbChLeft = e.pageX; |
283 | this.lpbChTop = e.pageY; | 286 | this.lpbChTop = e.pageY; |
... | @@ -285,6 +288,20 @@ export default { | ... | @@ -285,6 +288,20 @@ export default { |
285 | this.rightClickFlag = type; | 288 | this.rightClickFlag = type; |
286 | this.lpbChVisible = true; | 289 | this.lpbChVisible = true; |
287 | }, | 290 | }, |
291 | // 层选中事件 | ||
292 | handleClickC(e,item){ | ||
293 | //判断点击的层是否选中 | ||
294 | if (e.target.className.indexOf("tdSelect") == -1) { | ||
295 | //未选中→选中 | ||
296 | e.target.className += " tdSelect"; //加边框 | ||
297 | this.cbsmList.push(item.bsm); // 将户bsm放进hbsmList | ||
298 | } else { | ||
299 | //选中→未选中 | ||
300 | e.target.className = "floor"; | ||
301 | this.deleteArrOption(this.cbsmList,item.bsm); | ||
302 | } | ||
303 | this.$parent.getCbsm(this.cbsmList); | ||
304 | }, | ||
288 | //关闭右键菜单 | 305 | //关闭右键菜单 |
289 | closeMenu(){ | 306 | closeMenu(){ |
290 | this.lpbChVisible = false | 307 | this.lpbChVisible = false |
... | @@ -319,8 +336,14 @@ export default { | ... | @@ -319,8 +336,14 @@ export default { |
319 | legendToggleFlagChange() { | 336 | legendToggleFlagChange() { |
320 | return this.$parent.legendToggleFlag; | 337 | return this.$parent.legendToggleFlag; |
321 | }, | 338 | }, |
339 | syclx(){ | ||
340 | return this.$parent.syclx | ||
341 | } | ||
322 | }, | 342 | }, |
323 | watch: { | 343 | watch: { |
344 | syclx(n){ | ||
345 | this.getLpb(this.$store.state.zrzbsm,n) | ||
346 | }, | ||
324 | createFlagChange: function(val) { | 347 | createFlagChange: function(val) { |
325 | setTimeout(() => { | 348 | setTimeout(() => { |
326 | this.lpbContentWidth = this.$refs.lpbContent.offsetWidth - 6; | 349 | this.lpbContentWidth = this.$refs.lpbContent.offsetWidth - 6; |
... | @@ -485,12 +508,14 @@ export default { | ... | @@ -485,12 +508,14 @@ export default { |
485 | background-image: url("../../../../../assets/tdSelect.png"); | 508 | background-image: url("../../../../../assets/tdSelect.png"); |
486 | background-repeat: no-repeat; | 509 | background-repeat: no-repeat; |
487 | background-position: right top; | 510 | background-position: right top; |
511 | background-size: 30px; | ||
488 | } | 512 | } |
489 | } | 513 | } |
490 | } | 514 | } |
491 | .name { | 515 | .name { |
492 | line-height: 40px; | 516 | line-height: 40px; |
493 | text-align: center; | 517 | text-align: center; |
518 | display: inline-block; | ||
494 | } | 519 | } |
495 | // end | 520 | // end |
496 | } | 521 | } | ... | ... |
... | @@ -13,7 +13,14 @@ | ... | @@ -13,7 +13,14 @@ |
13 | </table> | 13 | </table> |
14 | <table border="1"> | 14 | <table border="1"> |
15 | <tr> | 15 | <tr> |
16 | <td @click="addRow">+</td> | 16 | <td> |
17 | <el-button | ||
18 | type="primary" | ||
19 | class="changeBtn outAdd addMinus" | ||
20 | @click="addRow" | ||
21 | >+</el-button | ||
22 | > | ||
23 | </td> | ||
17 | <td>建(构)筑物编号</td> | 24 | <td>建(构)筑物编号</td> |
18 | <td>建(构)筑物数量</td> | 25 | <td>建(构)筑物数量</td> |
19 | <td>建(构)筑物面积(㎡)</td> | 26 | <td>建(构)筑物面积(㎡)</td> |
... | @@ -22,13 +29,20 @@ | ... | @@ -22,13 +29,20 @@ |
22 | <td>附记</td> | 29 | <td>附记</td> |
23 | </tr> | 30 | </tr> |
24 | <tr v-for="(item,i) in Data.list" :key="i"> | 31 | <tr v-for="(item,i) in Data.list" :key="i"> |
25 | <td @click="delRow(i)">-</td> | 32 | <td> |
26 | <td><input type="text" class="formInput" v-model="item.jgzwbh"/></td> | 33 | <el-button |
27 | <td><input type="number" class="formInput" v-model="item.jgzsl" @keydown="oninput"/></td> | 34 | type="primary" |
28 | <td><input type="number" class="formInput" v-model.number="item.jgzmj" @keydown="oninput"/></td> | 35 | class="changeBtn outMinus addMinus" |
29 | <td><input type="number" class="formInput" v-model.number="item.zdmj" @keydown="oninput"/></td> | 36 | @click="delRow(i)" |
30 | <td><input type="number" class="formInput" v-model.number="item.fttdmj" @keydown="oninput"/></td> | 37 | >-</el-button |
31 | <td><input type="text" class="formInput" v-model="item.fj"/></td> | 38 | > |
39 | </td> | ||
40 | <td><el-input v-model="item.jgzwbh" placeholder="请输入建(构)筑物编号"></el-input></td> | ||
41 | <td><el-input v-model="item.jgzsl" oninput="value = (value.match(/^\d*/g)) || null" placeholder="请输入建(构)筑物数量"></el-input></td> | ||
42 | <td><el-input v-model="item.jgzmj" oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" placeholder="请输入建(构)筑物面积(㎡)"></el-input></td> | ||
43 | <td><el-input v-model="item.zdmj" oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" placeholder="请输入占地面积(㎡)"></el-input></td> | ||
44 | <td><el-input v-model="item.fttdmj" oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null" placeholder="请输入分摊土地面积(㎡)"></el-input></td> | ||
45 | <td><el-input v-model="item.fj" placeholder="请输入附记"></el-input></td> | ||
32 | </tr> | 46 | </tr> |
33 | <!-- <tr> | 47 | <!-- <tr> |
34 | <td>统计</td> | 48 | <td>统计</td> |
... | @@ -94,9 +108,6 @@ | ... | @@ -94,9 +108,6 @@ |
94 | } | 108 | } |
95 | }) | 109 | }) |
96 | }, | 110 | }, |
97 | oninput(e) { | ||
98 | e.target.value = (e.target.value.match(/^\d*(\.?\d{0,2})/g)[0]) || null | ||
99 | }, | ||
100 | addRow() { | 111 | addRow() { |
101 | this.Data.list.push({ | 112 | this.Data.list.push({ |
102 | jgzwbh: '', // 建(构)筑物编号 | 113 | jgzwbh: '', // 建(构)筑物编号 | ... | ... |
... | @@ -23,9 +23,9 @@ | ... | @@ -23,9 +23,9 @@ |
23 | <input class="formInput" :disabled="form.qszt!='0'" v-model="form.xmmc"> | 23 | <input class="formInput" :disabled="form.qszt!='0'" v-model="form.xmmc"> |
24 | </td> | 24 | </td> |
25 | <td colspan="2" >不动产单元号<i class="requisite">*</i></td> | 25 | <td colspan="2" >不动产单元号<i class="requisite">*</i></td> |
26 | <td colspan="4" > | 26 | <td colspan="4" class="psr"> |
27 | <input class="formInput percent78" :disabled="form.qszt!='0'" v-model="form.bdcdyh" style="width: 70%"> | 27 | <input class="formInput percent80" :disabled="form.qszt!='0'" v-model="form.bdcdyh"> |
28 | <el-button @click.prevent="generatorCode" type="primary" size="mini" style="width:25%;margin-left:3%">生成</el-button> | 28 | <el-button @click.prevent="generatorCode" type="warning" class="createBtn" size="mini">生成</el-button> |
29 | </td> | 29 | </td> |
30 | </tr> | 30 | </tr> |
31 | 31 | ||
... | @@ -145,12 +145,12 @@ | ... | @@ -145,12 +145,12 @@ |
145 | 145 | ||
146 | <tr v-for="(item1,index) in form.fwytList" :key="index"> | 146 | <tr v-for="(item1,index) in form.fwytList" :key="index"> |
147 | <td colspan="2" v-if="index===0" :rowspan="ytTitleRowspan" id="ytTitle"> | 147 | <td colspan="2" v-if="index===0" :rowspan="ytTitleRowspan" id="ytTitle"> |
148 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addYtInfo">添加</el-button> | 148 | <el-button type="primary" class="outAdd addMinus" size="mini" style="margin-right: 10px" @click="addYtInfo">+</el-button> |
149 | <span>用途<i class="requisite">*</i></span> | 149 | <span> 用途<i class="requisite">*</i></span> |
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" size="mini" style="" @click="deleteYtInfo(index)" circle>删除</el-button> | 153 | <el-button type="info" class="outMinus addMinus" size="mini" style="" @click="deleteYtInfo(index)" circle>-</el-button> |
154 | 规划用途 | 154 | 规划用途 |
155 | </td> | 155 | </td> |
156 | <td colspan="3" > | 156 | <td colspan="3" > |
... | @@ -186,11 +186,12 @@ | ... | @@ -186,11 +186,12 @@ |
186 | 186 | ||
187 | <tr v-for="(item1,index) in form.fwjgList" :key="'jg'+index"> | 187 | <tr v-for="(item1,index) in form.fwjgList" :key="'jg'+index"> |
188 | <td colspan="2" v-if="index===0" :rowspan="fwjgTitleRowspan" > | 188 | <td colspan="2" v-if="index===0" :rowspan="fwjgTitleRowspan" > |
189 | <el-button type="primary" size="mini" style="margin-right: 10px" @click="addFwjgInfo">添加</el-button> | 189 | <el-button type="primary" class="outAdd addMinus" size="mini" style="margin-right: 10px" @click="addFwjgInfo">+</el-button> |
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 | <span @click="deleteFwjgInfo(index)">删除</span> | 193 | <el-button type="primary" class="outMinus addMinus" size="mini" style="margin-right: 10px" @click="deleteFwjgInfo(index)">-</el-button> |
194 | <span> 删除</span> | ||
194 | </td> | 195 | </td> |
195 | <td colspan="9" > | 196 | <td colspan="9" > |
196 | <el-select class="persent78" :disabled="form.qszt!='0'" v-model="item1.fwjgzdbsm" placeholder="请选择" > | 197 | <el-select class="persent78" :disabled="form.qszt!='0'" v-model="item1.fwjgzdbsm" placeholder="请选择" > |
... | @@ -205,13 +206,10 @@ | ... | @@ -205,13 +206,10 @@ |
205 | </tr> | 206 | </tr> |
206 | 207 | ||
207 | <tr> | 208 | <tr> |
208 | <td colspan="12" rowspan="4" align="center"> | 209 | <td colspan="12" align="center"> |
209 | <Qlxz ref="qlxzModule" :formData="form"></Qlxz> | 210 | <Qlxz ref="qlxzModule" :formData="form"></Qlxz> |
210 | </td> | 211 | </td> |
211 | </tr> | 212 | </tr> |
212 | <tr></tr> | ||
213 | <tr></tr> | ||
214 | <tr></tr> | ||
215 | 213 | ||
216 | <tr> | 214 | <tr> |
217 | <td colspan="2" > | 215 | <td colspan="2" > |
... | @@ -262,7 +260,7 @@ | ... | @@ -262,7 +260,7 @@ |
262 | </el-date-picker> | 260 | </el-date-picker> |
263 | </td> | 261 | </td> |
264 | </tr> | 262 | </tr> |
265 | 263 | ||
266 | </table> | 264 | </table> |
267 | <div style="min-height: 40px;text-align: center;margin-top: 10px"> | 265 | <div style="min-height: 40px;text-align: center;margin-top: 10px"> |
268 | <el-button type="success" @click="onSave">保存</el-button> | 266 | <el-button type="success" @click="onSave">保存</el-button> |
... | @@ -605,10 +603,6 @@ | ... | @@ -605,10 +603,6 @@ |
605 | text-align: center; | 603 | text-align: center; |
606 | cursor: text; | 604 | cursor: text; |
607 | } | 605 | } |
608 | .percent78 { | ||
609 | width: 78%; | ||
610 | float: left; | ||
611 | } | ||
612 | .percent68 { | 606 | .percent68 { |
613 | width: 68% !important; | 607 | width: 68% !important; |
614 | float: left; | 608 | float: left; |
... | @@ -629,13 +623,6 @@ | ... | @@ -629,13 +623,6 @@ |
629 | width: 30% !important; | 623 | width: 30% !important; |
630 | float: left; | 624 | float: left; |
631 | } | 625 | } |
632 | .createBtn { | ||
633 | position: absolute; | ||
634 | width: 50px; | ||
635 | padding: 6px 4px; | ||
636 | right: 4px; | ||
637 | top: 4px; | ||
638 | } | ||
639 | .el-input__icon { | 626 | .el-input__icon { |
640 | line-height: 37px; | 627 | line-height: 37px; |
641 | } | 628 | } |
... | @@ -644,4 +631,4 @@ | ... | @@ -644,4 +631,4 @@ |
644 | } | 631 | } |
645 | } | 632 | } |
646 | } | 633 | } |
647 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
634 | </style> | ... | ... |
-
Please register or sign in to post a comment