style:样式
Showing
4 changed files
with
33 additions
and
41 deletions
| 1 | import filter from '@/utils/filter.js' | 1 | import filter from '@/utils/filter.js' |
| 2 | |||
| 3 | class data extends filter { | 2 | class data extends filter { |
| 4 | constructor() { | 3 | constructor() { |
| 5 | super() | 4 | super() |
| 6 | } | 5 | } |
| 7 | columns() { | 6 | columns () { |
| 8 | return { | 7 | return { |
| 9 | title: "建设用地使用权、宅基地使用权登记信息", | 8 | title: "建设用地使用权、宅基地使用权登记信息", |
| 10 | columns: [ | 9 | columns: [ |
| ... | @@ -64,14 +63,6 @@ class data extends filter { | ... | @@ -64,14 +63,6 @@ class data extends filter { |
| 64 | prop: "syqqzsj", | 63 | prop: "syqqzsj", |
| 65 | label: "使用权起止时间", | 64 | label: "使用权起止时间", |
| 66 | }, | 65 | }, |
| 67 | // { | ||
| 68 | // prop: "syqjssj", | ||
| 69 | // label: "使用权结束时间", | ||
| 70 | // }, | ||
| 71 | // { | ||
| 72 | // prop: "tdsyqx", | ||
| 73 | // label: "土地使用期限", | ||
| 74 | // }, | ||
| 75 | { | 66 | { |
| 76 | prop: "tdsyqx", | 67 | prop: "tdsyqx", |
| 77 | label: "土地使用期限", | 68 | label: "土地使用期限", | ... | ... |
| ... | @@ -50,7 +50,7 @@ | ... | @@ -50,7 +50,7 @@ |
| 50 | 50 | ||
| 51 | <script> | 51 | <script> |
| 52 | import { mapGetters } from "vuex"; | 52 | import { mapGetters } from "vuex"; |
| 53 | import { datas } from "./jsydsyqQlxx"; | 53 | import { datas } from "./jsydsyq"; |
| 54 | import { getJsydsyqList } from "@/api/zhcx.js"; | 54 | import { getJsydsyqList } from "@/api/zhcx.js"; |
| 55 | export default { | 55 | export default { |
| 56 | name: "djxxTable", | 56 | name: "djxxTable", |
| ... | @@ -225,9 +225,6 @@ export default { | ... | @@ -225,9 +225,6 @@ export default { |
| 225 | overflow-x: scroll; | 225 | overflow-x: scroll; |
| 226 | } | 226 | } |
| 227 | 227 | ||
| 228 | // .xxTable > tr th:not(:first-child) { | ||
| 229 | // width: 223px; | ||
| 230 | // } | ||
| 231 | .xxTable>tr:first-child th { | 228 | .xxTable>tr:first-child th { |
| 232 | width: 140px; | 229 | width: 140px; |
| 233 | } | 230 | } | ... | ... |
| ... | @@ -6,24 +6,24 @@ | ... | @@ -6,24 +6,24 @@ |
| 6 | <div class="slxx_title">受理信息</div> | 6 | <div class="slxx_title">受理信息</div> |
| 7 | <el-row :gutter="10"> | 7 | <el-row :gutter="10"> |
| 8 | <el-col :span="8"> | 8 | <el-col :span="8"> |
| 9 | <el-form-item label="业务号:" prop="ywh"> | 9 | <el-form-item :class="flag? 'marginBot0': ''" label="业务号:" prop="ywh"> |
| 10 | <el-input disabled v-model="ruleForm.ywh"></el-input> | 10 | <el-input disabled v-model="ruleForm.ywh"></el-input> |
| 11 | </el-form-item> | 11 | </el-form-item> |
| 12 | </el-col> | 12 | </el-col> |
| 13 | <el-col :span="8"> | 13 | <el-col :span="8"> |
| 14 | <el-form-item label="受理人员:" prop="slry"> | 14 | <el-form-item :class="flag? 'marginBot0': ''" label="受理人员:" prop="slry"> |
| 15 | <el-input disabled v-model="ruleForm.slry"></el-input> | 15 | <el-input disabled v-model="ruleForm.slry"></el-input> |
| 16 | </el-form-item> | 16 | </el-form-item> |
| 17 | </el-col> | 17 | </el-col> |
| 18 | <el-col :span="8"> | 18 | <el-col :span="8"> |
| 19 | <el-form-item label="受理时间:" prop="slsj"> | 19 | <el-form-item :class="flag? 'marginBot0': ''" label="受理时间:" prop="slsj"> |
| 20 | <el-input disabled v-model="ruleForm.slsj"></el-input> | 20 | <el-input disabled v-model="ruleForm.slsj"></el-input> |
| 21 | </el-form-item> | 21 | </el-form-item> |
| 22 | </el-col> | 22 | </el-col> |
| 23 | </el-row> | 23 | </el-row> |
| 24 | <el-row :gutter="10"> | 24 | <el-row :gutter="10"> |
| 25 | <el-col :span="8"> | 25 | <el-col :span="8"> |
| 26 | <el-form-item label="权利类型:" prop="qllx"> | 26 | <el-form-item :class="flag? 'marginBot0': ''" label="权利类型:" prop="qllx"> |
| 27 | <el-select disabled v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> | 27 | <el-select disabled v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> |
| 28 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 28 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 29 | </el-option> | 29 | </el-option> |
| ... | @@ -31,7 +31,7 @@ | ... | @@ -31,7 +31,7 @@ |
| 31 | </el-form-item> | 31 | </el-form-item> |
| 32 | </el-col> | 32 | </el-col> |
| 33 | <el-col :span="8"> | 33 | <el-col :span="8"> |
| 34 | <el-form-item label="登记类型:" prop="djlx"> | 34 | <el-form-item :class="flag? 'marginBot0': ''" label="登记类型:" prop="djlx"> |
| 35 | <el-select disabled v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> | 35 | <el-select disabled v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> |
| 36 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 36 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 37 | </el-option> | 37 | </el-option> |
| ... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
| 39 | </el-form-item> | 39 | </el-form-item> |
| 40 | </el-col> | 40 | </el-col> |
| 41 | <el-col :span="8"> | 41 | <el-col :span="8"> |
| 42 | <el-form-item label="登记情形:" prop="djqx"> | 42 | <el-form-item :class="flag? 'marginBot0': ''" label="登记情形:" prop="djqx"> |
| 43 | <el-input disabled v-model="ruleForm.djqxmc"></el-input> | 43 | <el-input disabled v-model="ruleForm.djqxmc"></el-input> |
| 44 | </el-form-item> | 44 | </el-form-item> |
| 45 | </el-col> | 45 | </el-col> |
| ... | @@ -47,34 +47,34 @@ | ... | @@ -47,34 +47,34 @@ |
| 47 | <div class="slxx_title">不动产单元情况</div> | 47 | <div class="slxx_title">不动产单元情况</div> |
| 48 | <el-row :gutter="10"> | 48 | <el-row :gutter="10"> |
| 49 | <el-col :span="8"> | 49 | <el-col :span="8"> |
| 50 | <el-form-item label="宗地代码:" prop="zddm"> | 50 | <el-form-item :class="flag? 'marginBot0': ''" label="宗地代码:" prop="zddm"> |
| 51 | <el-input disabled v-model="ruleForm.zddm"></el-input> | 51 | <el-input disabled v-model="ruleForm.zddm"></el-input> |
| 52 | </el-form-item> | 52 | </el-form-item> |
| 53 | </el-col> | 53 | </el-col> |
| 54 | <el-col :span="8"> | 54 | <el-col :span="8"> |
| 55 | <el-form-item label="不动产单元号:" prop="bdcdyh"> | 55 | <el-form-item :class="flag? 'marginBot0': ''" label="不动产单元号:" prop="bdcdyh"> |
| 56 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> | 56 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> |
| 57 | </el-form-item> | 57 | </el-form-item> |
| 58 | </el-col> | 58 | </el-col> |
| 59 | <el-col :span="8"> | 59 | <el-col :span="8"> |
| 60 | <el-form-item label="权利性质:" prop="qlxzmc"> | 60 | <el-form-item :class="flag? 'marginBot0': ''" label="权利性质:" prop="qlxzmc"> |
| 61 | <el-input disabled v-model="ruleForm.qlxzmc"></el-input> | 61 | <el-input disabled v-model="ruleForm.qlxzmc"></el-input> |
| 62 | </el-form-item> | 62 | </el-form-item> |
| 63 | </el-col> | 63 | </el-col> |
| 64 | </el-row> | 64 | </el-row> |
| 65 | <el-row :gutter="10"> | 65 | <el-row :gutter="10"> |
| 66 | <el-col :span="8"> | 66 | <el-col :span="8"> |
| 67 | <el-form-item label="宗地面积:" prop="zdmj"> | 67 | <el-form-item :class="flag? 'marginBot0': ''" label="宗地面积:" prop="zdmj"> |
| 68 | <el-input disabled v-model="ruleForm.zdmj"></el-input> | 68 | <el-input disabled v-model="ruleForm.zdmj"></el-input> |
| 69 | </el-form-item> | 69 | </el-form-item> |
| 70 | </el-col> | 70 | </el-col> |
| 71 | <el-col :span="8"> | 71 | <el-col :span="8"> |
| 72 | <el-form-item label="土地用途:" prop="tdyt"> | 72 | <el-form-item :class="flag? 'marginBot0': ''" label="土地用途:" prop="tdyt"> |
| 73 | <el-input disabled v-model="ruleForm.tdyt"></el-input> | 73 | <el-input disabled v-model="ruleForm.tdyt"></el-input> |
| 74 | </el-form-item> | 74 | </el-form-item> |
| 75 | </el-col> | 75 | </el-col> |
| 76 | <el-col :span="8"> | 76 | <el-col :span="8"> |
| 77 | <el-form-item label="权利设定方式:" prop="qlsdfs"> | 77 | <el-form-item :class="flag? 'marginBot0': ''" label="权利设定方式:" prop="qlsdfs"> |
| 78 | <el-select disabled v-model="ruleForm.qlsdfs" filterable clearable placeholder="请选择权利设定方式"> | 78 | <el-select disabled v-model="ruleForm.qlsdfs" filterable clearable placeholder="请选择权利设定方式"> |
| 79 | <el-option v-for="item in qlsdfsOption" :key="item.value" :label="item.label" :value="item.value"> | 79 | <el-option v-for="item in qlsdfsOption" :key="item.value" :label="item.label" :value="item.value"> |
| 80 | </el-option> | 80 | </el-option> |
| ... | @@ -84,33 +84,33 @@ | ... | @@ -84,33 +84,33 @@ |
| 84 | </el-row> | 84 | </el-row> |
| 85 | <el-row :gutter="10"> | 85 | <el-row :gutter="10"> |
| 86 | <el-col :span="8"> | 86 | <el-col :span="8"> |
| 87 | <el-form-item label="取得价格:" prop="qdjg"> | 87 | <el-form-item :class="flag? 'marginBot0': ''" label="取得价格:" prop="qdjg"> |
| 88 | <el-input disabled v-model="ruleForm.qdjg"></el-input> | 88 | <el-input disabled v-model="ruleForm.qdjg"></el-input> |
| 89 | </el-form-item> | 89 | </el-form-item> |
| 90 | </el-col> | 90 | </el-col> |
| 91 | 91 | ||
| 92 | <el-col :span="16"> | 92 | <el-col :span="16"> |
| 93 | <el-form-item label="坐落:" prop="zl"> | 93 | <el-form-item :class="flag? 'marginBot0': ''" label="坐落:" prop="zl"> |
| 94 | <el-input disabled v-model="ruleForm.zl"></el-input> | 94 | <el-input disabled v-model="ruleForm.zl"></el-input> |
| 95 | </el-form-item> | 95 | </el-form-item> |
| 96 | </el-col> | 96 | </el-col> |
| 97 | </el-row> | 97 | </el-row> |
| 98 | <el-row :gutter="10"> | 98 | <el-row :gutter="10"> |
| 99 | <el-col :span="8"> | 99 | <el-col :span="8"> |
| 100 | <el-form-item label="使用期限:" prop="tdsyqx"> | 100 | <el-form-item :class="flag? 'marginBot0': ''" label="使用期限:" prop="tdsyqx"> |
| 101 | <el-input disabled v-model="ruleForm.tdsyqx"></el-input> | 101 | <el-input disabled v-model="ruleForm.tdsyqx"></el-input> |
| 102 | </el-form-item> | 102 | </el-form-item> |
| 103 | </el-col> | 103 | </el-col> |
| 104 | 104 | ||
| 105 | <el-col :span="16"> | 105 | <el-col :span="16"> |
| 106 | <el-form-item label="使用权起止时间:" prop="qssj"> | 106 | <el-form-item :class="flag? 'marginBot0': ''" label="使用权起止时间:" prop="qssj"> |
| 107 | <el-input disabled v-model="ruleForm.syqqzsj"></el-input> | 107 | <el-input disabled v-model="ruleForm.syqqzsj"></el-input> |
| 108 | </el-form-item> | 108 | </el-form-item> |
| 109 | </el-col> | 109 | </el-col> |
| 110 | </el-row> | 110 | </el-row> |
| 111 | <el-row :gutter="10"> | 111 | <el-row :gutter="10"> |
| 112 | <el-col> | 112 | <el-col> |
| 113 | <el-form-item label="附记:" prop="fj"> | 113 | <el-form-item :class="flag? 'marginBot0': ''" label="附记:" prop="fj"> |
| 114 | <el-input type="textarea" v-model="ruleForm.fj"></el-input> | 114 | <el-input type="textarea" v-model="ruleForm.fj"></el-input> |
| 115 | </el-form-item> | 115 | </el-form-item> |
| 116 | </el-col> | 116 | </el-col> |
| ... | @@ -118,7 +118,7 @@ | ... | @@ -118,7 +118,7 @@ |
| 118 | <div class="slxx_title">权利人信息</div> | 118 | <div class="slxx_title">权利人信息</div> |
| 119 | <el-row :gutter="10"> | 119 | <el-row :gutter="10"> |
| 120 | <el-col :span="14"> | 120 | <el-col :span="14"> |
| 121 | <el-form-item label="共有方式:"> | 121 | <el-form-item :class="flag? 'marginBot0': ''" label="共有方式:"> |
| 122 | <el-radio-group v-model="ruleForm.gyfs"> | 122 | <el-radio-group v-model="ruleForm.gyfs"> |
| 123 | <el-radio label="1">单独所有</el-radio> | 123 | <el-radio label="1">单独所有</el-radio> |
| 124 | <el-radio label="2">共同共有</el-radio> | 124 | <el-radio label="2">共同共有</el-radio> |
| ... | @@ -127,7 +127,7 @@ | ... | @@ -127,7 +127,7 @@ |
| 127 | </el-form-item> | 127 | </el-form-item> |
| 128 | </el-col> | 128 | </el-col> |
| 129 | <el-col :span="5" v-show="ruleForm.gyfs=='2'"> | 129 | <el-col :span="5" v-show="ruleForm.gyfs=='2'"> |
| 130 | <el-form-item label="是否分别持证:"> | 130 | <el-form-item :class="flag? 'marginBot0': ''" label="是否分别持证:"> |
| 131 | <el-radio-group v-model="ruleForm.sffbcz"> | 131 | <el-radio-group v-model="ruleForm.sffbcz"> |
| 132 | <el-radio label="1">是</el-radio> | 132 | <el-radio label="1">是</el-radio> |
| 133 | <el-radio label="0">否</el-radio> | 133 | <el-radio label="0">否</el-radio> |
| ... | @@ -135,7 +135,7 @@ | ... | @@ -135,7 +135,7 @@ |
| 135 | </el-form-item> | 135 | </el-form-item> |
| 136 | </el-col> | 136 | </el-col> |
| 137 | <el-col :span="5" v-show="ruleForm.gyfs=='2'"> | 137 | <el-col :span="5" v-show="ruleForm.gyfs=='2'"> |
| 138 | <el-form-item label="持证人:"> | 138 | <el-form-item :class="flag? 'marginBot0': ''" label="持证人:"> |
| 139 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 139 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 140 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 140 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 141 | </el-option> | 141 | </el-option> |
| ... | @@ -147,14 +147,14 @@ | ... | @@ -147,14 +147,14 @@ |
| 147 | <div class="slxx_title">登记原因</div> | 147 | <div class="slxx_title">登记原因</div> |
| 148 | <el-row :gutter="10"> | 148 | <el-row :gutter="10"> |
| 149 | <el-col> | 149 | <el-col> |
| 150 | <el-form-item label="登记原因:" prop="djyy"> | 150 | <el-form-item :class="flag? 'marginBot0': ''" label="登记原因:" prop="djyy"> |
| 151 | <el-input class="textArea" type="textarea" v-model="ruleForm.djyy"></el-input> | 151 | <el-input class="textArea" type="textarea" v-model="ruleForm.djyy"></el-input> |
| 152 | </el-form-item> | 152 | </el-form-item> |
| 153 | </el-col> | 153 | </el-col> |
| 154 | </el-row> | 154 | </el-row> |
| 155 | </div> | 155 | </div> |
| 156 | <el-row> | 156 | <el-row> |
| 157 | <el-form-item class="btn"> | 157 | <el-form-item :class="flag? 'marginBot0': ''" class="btn"> |
| 158 | <el-button type="primary" @click="onSubmit">保存</el-button> | 158 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 159 | </el-form-item> | 159 | </el-form-item> |
| 160 | </el-row> | 160 | </el-row> |
| ... | @@ -238,6 +238,7 @@ export default { | ... | @@ -238,6 +238,7 @@ export default { |
| 238 | margin-right: 10px; | 238 | margin-right: 10px; |
| 239 | } | 239 | } |
| 240 | 240 | ||
| 241 | |||
| 241 | /deep/.el-select { | 242 | /deep/.el-select { |
| 242 | width: 100%; | 243 | width: 100%; |
| 243 | } | 244 | } |
| ... | @@ -246,6 +247,10 @@ export default { | ... | @@ -246,6 +247,10 @@ export default { |
| 246 | margin-bottom: 8px; | 247 | margin-bottom: 8px; |
| 247 | } | 248 | } |
| 248 | 249 | ||
| 250 | .marginBot0 { | ||
| 251 | margin-bottom: 0 !important; | ||
| 252 | } | ||
| 253 | |||
| 249 | .slxx { | 254 | .slxx { |
| 250 | box-sizing: border-box; | 255 | box-sizing: border-box; |
| 251 | padding-right: 15px; | 256 | padding-right: 15px; |
| ... | @@ -264,10 +269,10 @@ export default { | ... | @@ -264,10 +269,10 @@ export default { |
| 264 | .slxx_title { | 269 | .slxx_title { |
| 265 | border-bottom: 1px solid $borderColor; | 270 | border-bottom: 1px solid $borderColor; |
| 266 | padding-left: 10px; | 271 | padding-left: 10px; |
| 267 | padding-bottom: 15px; | 272 | padding-bottom: 5px; |
| 268 | margin-bottom: 15px; | 273 | margin-bottom: 10px; |
| 269 | margin-top: 5px; | 274 | margin-top: 5px; |
| 270 | font-size: 18px; | 275 | font-size: 16px; |
| 271 | font-weight: 500; | 276 | font-weight: 500; |
| 272 | color: #4a4a4a; | 277 | color: #4a4a4a; |
| 273 | } | 278 | } | ... | ... |
| ... | @@ -113,7 +113,6 @@ export default { | ... | @@ -113,7 +113,6 @@ export default { |
| 113 | var formdata = new FormData(); | 113 | var formdata = new FormData(); |
| 114 | formdata.append("bsmSlsq", id); | 114 | formdata.append("bsmSlsq", id); |
| 115 | leftMenu(formdata).then(res => { | 115 | leftMenu(formdata).then(res => { |
| 116 | console.log(res, 'eeeeeeeeeeee'); | ||
| 117 | if (res.code === 200) { | 116 | if (res.code === 200) { |
| 118 | this.unitData = res.result ? res.result : [] | 117 | this.unitData = res.result ? res.result : [] |
| 119 | setTimeout(() => { | 118 | setTimeout(() => { |
| ... | @@ -133,7 +132,7 @@ export default { | ... | @@ -133,7 +132,7 @@ export default { |
| 133 | stepExpandInfo(formdata).then(res => { | 132 | stepExpandInfo(formdata).then(res => { |
| 134 | if (res.code === 200) { | 133 | if (res.code === 200) { |
| 135 | this.tabList1 = [...res.result.form] | 134 | this.tabList1 = [...res.result.form] |
| 136 | this.tabList = res.result.form; | 135 | this.tabList = res.result.form |
| 137 | this.headerleftList = res.result.button; | 136 | this.headerleftList = res.result.button; |
| 138 | this.headerRightList = res.result.operation; | 137 | this.headerRightList = res.result.operation; |
| 139 | } | 138 | } | ... | ... |
-
Please register or sign in to post a comment