Merge branch 'dev'
Showing
14 changed files
with
104 additions
and
427 deletions
| 1 | <!-- | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-07-28 09:34:54 | ||
| 5 | --> | ||
| 6 | <template> | ||
| 7 | <div class="clmlmx-box"> | ||
| 8 | <div class="title">申请材料目录</div> | ||
| 9 | <lb-table :column="column" :key="key" :heightNumSetting="true" :pagination="false" :data="formData.data"> | ||
| 10 | </lb-table> | ||
| 11 | <div class="text-center"> | ||
| 12 | <el-button @click="$popupCacel">取消</el-button> | ||
| 13 | </div> | ||
| 14 | </div> | ||
| 15 | </template> | ||
| 16 | <script> | ||
| 17 | import store from '@/store/index.js' | ||
| 18 | import { InitClml, saveClml, deleteSjClml, moveClml } from "@/api/clxx.js"; | ||
| 19 | export default { | ||
| 20 | props: { | ||
| 21 | formData: { | ||
| 22 | type: Object, | ||
| 23 | default: () => { | ||
| 24 | return {} | ||
| 25 | } | ||
| 26 | } | ||
| 27 | }, | ||
| 28 | data () { | ||
| 29 | return { | ||
| 30 | column: [ | ||
| 31 | { | ||
| 32 | width: "50", | ||
| 33 | label: '序号', | ||
| 34 | type: 'index' | ||
| 35 | }, | ||
| 36 | { | ||
| 37 | prop: "isrequired", | ||
| 38 | label: "是否必选", | ||
| 39 | width: "80", | ||
| 40 | render: (h, scope) => { | ||
| 41 | if (scope.row.sfxjcl === "1") { | ||
| 42 | return ( | ||
| 43 | <div> | ||
| 44 | <span>可选</span> | ||
| 45 | </div> | ||
| 46 | ); | ||
| 47 | } | ||
| 48 | else { | ||
| 49 | return ( | ||
| 50 | <div> | ||
| 51 | <span>必选</span> | ||
| 52 | </div> | ||
| 53 | ); | ||
| 54 | } | ||
| 55 | }, | ||
| 56 | }, | ||
| 57 | { | ||
| 58 | prop: "sjmc", | ||
| 59 | label: "材料名称", | ||
| 60 | }, | ||
| 61 | { | ||
| 62 | prop: "sjlx", | ||
| 63 | label: "材料类型", | ||
| 64 | width: "80", | ||
| 65 | render: (h, scope) => { | ||
| 66 | return ( | ||
| 67 | <div> | ||
| 68 | <span>{this.dicStatus(scope.row.sjlx, "A40")}</span> | ||
| 69 | </div> | ||
| 70 | ); | ||
| 71 | }, | ||
| 72 | }, | ||
| 73 | { | ||
| 74 | prop: "sjsl", | ||
| 75 | label: "份数", | ||
| 76 | width: "50" | ||
| 77 | }, | ||
| 78 | { | ||
| 79 | prop: "smzt", | ||
| 80 | label: "扫描状态", | ||
| 81 | width: "80", | ||
| 82 | render: (h, scope) => { | ||
| 83 | if (scope.row.children && scope.row.children.length > 0) { | ||
| 84 | return ( | ||
| 85 | <div> | ||
| 86 | <span>已扫描</span> | ||
| 87 | </div> | ||
| 88 | ); | ||
| 89 | } else { | ||
| 90 | return ( | ||
| 91 | <div> | ||
| 92 | <span>未扫描</span> | ||
| 93 | </div> | ||
| 94 | ); | ||
| 95 | } | ||
| 96 | }, | ||
| 97 | }, | ||
| 98 | { | ||
| 99 | label: "扫描页数", | ||
| 100 | width: "80", | ||
| 101 | render: (h, scope) => { | ||
| 102 | if (scope.row.children && scope.row.children.length > 0) { | ||
| 103 | return ( | ||
| 104 | <div> | ||
| 105 | <span>{scope.row.children.length}</span> | ||
| 106 | </div> | ||
| 107 | ); | ||
| 108 | } else { | ||
| 109 | return ( | ||
| 110 | <div> | ||
| 111 | <span>0</span> | ||
| 112 | </div> | ||
| 113 | ); | ||
| 114 | } | ||
| 115 | }, | ||
| 116 | }, | ||
| 117 | { | ||
| 118 | label: "操作", | ||
| 119 | width: "80", | ||
| 120 | render: (h, scope) => { | ||
| 121 | return ( | ||
| 122 | <div> | ||
| 123 | <el-button | ||
| 124 | type="text" | ||
| 125 | disabled={scope.$index == 0} | ||
| 126 | onClick={() => { | ||
| 127 | this.moveUpward(scope.$index, scope.row); | ||
| 128 | }} | ||
| 129 | > | ||
| 130 | 上移 | ||
| 131 | </el-button> | ||
| 132 | <el-button | ||
| 133 | type="text" | ||
| 134 | disabled={scope.$index + 1 == this.tableData.length} | ||
| 135 | onClick={() => { | ||
| 136 | this.moveDown(scope.$index, scope.row); | ||
| 137 | }} | ||
| 138 | > | ||
| 139 | 下移 | ||
| 140 | </el-button> | ||
| 141 | </div> | ||
| 142 | ); | ||
| 143 | }, | ||
| 144 | }, | ||
| 145 | ], | ||
| 146 | key: 0, | ||
| 147 | tableData: [] | ||
| 148 | } | ||
| 149 | }, | ||
| 150 | created () { | ||
| 151 | console.log(this.formData.data, 'formData'); | ||
| 152 | }, | ||
| 153 | methods: { | ||
| 154 | // 材料目录明细初始化 | ||
| 155 | /** | ||
| 156 | * @description: 材料目录明细初始化 | ||
| 157 | * @author: renchao | ||
| 158 | */ | ||
| 159 | clmlInitList () { | ||
| 160 | return new Promise(resolve => { | ||
| 161 | this.unitData = this.$parent.unitData; | ||
| 162 | var formdata = new FormData(); | ||
| 163 | formdata.append("bsmSldy", this.unitData[0]?.bsmSldy); | ||
| 164 | formdata.append("bsmSlsq", this.$route.query.bsmSlsq); | ||
| 165 | formdata.append("clfl", 2); | ||
| 166 | InitClml(formdata).then((res) => { | ||
| 167 | if (res.code == 200) { | ||
| 168 | resolve(res.code) | ||
| 169 | if (res.result && res.result.length > 0) { | ||
| 170 | this.data = res.result; | ||
| 171 | } else { | ||
| 172 | this.data = [] | ||
| 173 | } | ||
| 174 | } else { | ||
| 175 | this.$message.error(res.message) | ||
| 176 | } | ||
| 177 | }) | ||
| 178 | }) | ||
| 179 | }, | ||
| 180 | // 上移 | ||
| 181 | /** | ||
| 182 | * @description: 上移 | ||
| 183 | * @param {*} index | ||
| 184 | * @param {*} row | ||
| 185 | * @author: renchao | ||
| 186 | */ | ||
| 187 | moveUpward (index, row) { | ||
| 188 | let obj = { | ||
| 189 | xh: row.xh, | ||
| 190 | bsmSlsq: row.bsmSlsq, | ||
| 191 | moveDirection: "UP", | ||
| 192 | }; | ||
| 193 | // 接口待调 | ||
| 194 | /** | ||
| 195 | * @description: 接口待调 | ||
| 196 | * @param {*} obj | ||
| 197 | * @author: renchao | ||
| 198 | */ | ||
| 199 | moveClml(obj).then(async (res) => { | ||
| 200 | if (res.code == 200) { | ||
| 201 | let res = await this.clmlInitList() | ||
| 202 | if (res == 200) { | ||
| 203 | this.$message({ | ||
| 204 | message: '上移成功', | ||
| 205 | type: 'success' | ||
| 206 | }) | ||
| 207 | this.$parent.setTableData(this.data) | ||
| 208 | } | ||
| 209 | } else { | ||
| 210 | this.$message.error(res.message); | ||
| 211 | } | ||
| 212 | }) | ||
| 213 | }, | ||
| 214 | // 下移 | ||
| 215 | /** | ||
| 216 | * @description: 下移 | ||
| 217 | * @param {*} index | ||
| 218 | * @param {*} row | ||
| 219 | * @author: renchao | ||
| 220 | */ | ||
| 221 | moveDown (index, row) { | ||
| 222 | let obj = { | ||
| 223 | xh: row.xh, | ||
| 224 | bsmSlsq: row.bsmSlsq, | ||
| 225 | moveDirection: "DOWN", | ||
| 226 | } | ||
| 227 | // 接口待调 | ||
| 228 | /** | ||
| 229 | * @description: 接口待调 | ||
| 230 | * @param {*} obj | ||
| 231 | * @author: renchao | ||
| 232 | */ | ||
| 233 | moveClml(obj).then(async (res) => { | ||
| 234 | if (res.code == 200) { | ||
| 235 | let res = await this.clmlInitList() | ||
| 236 | if (res == 200) { | ||
| 237 | this.$message({ | ||
| 238 | message: '下移成功', | ||
| 239 | type: 'success' | ||
| 240 | }) | ||
| 241 | } | ||
| 242 | } else { | ||
| 243 | this.$message.error(res.message); | ||
| 244 | } | ||
| 245 | }) | ||
| 246 | }, | ||
| 247 | // 材料目录删除 | ||
| 248 | /** | ||
| 249 | * @description: 材料目录删除 | ||
| 250 | * @param {*} index | ||
| 251 | * @param {*} row | ||
| 252 | * @author: renchao | ||
| 253 | */ | ||
| 254 | handleDelete (index, row) { | ||
| 255 | let that = this | ||
| 256 | this.$confirm('此操作将永久删除该 是否继续?', '提示', { | ||
| 257 | confirmButtonText: '确定', | ||
| 258 | cancelButtonText: '取消', | ||
| 259 | type: 'warning' | ||
| 260 | }).then(() => { | ||
| 261 | deleteSjClml({ sjBsm: row.bsmSj }).then(async (res) => { | ||
| 262 | if (res.code == 200) { | ||
| 263 | let res = await that.clmlInitList() | ||
| 264 | if (res == 200) { | ||
| 265 | that.$message({ | ||
| 266 | message: "删除成功", | ||
| 267 | type: "success", | ||
| 268 | }) | ||
| 269 | // this.$parent.setTableData(this.data) | ||
| 270 | } | ||
| 271 | } | ||
| 272 | }) | ||
| 273 | }).catch(() => { | ||
| 274 | this.$message({ | ||
| 275 | type: 'info', | ||
| 276 | message: '已取消删除' | ||
| 277 | }) | ||
| 278 | }) | ||
| 279 | }, | ||
| 280 | // 字典 | ||
| 281 | /** | ||
| 282 | * @description: 字典 | ||
| 283 | * @param {*} val | ||
| 284 | * @param {*} code | ||
| 285 | * @author: renchao | ||
| 286 | */ | ||
| 287 | dicStatus (val, code) { | ||
| 288 | let data = store.getters.dictData[code], | ||
| 289 | name = "暂无"; | ||
| 290 | if (data) { | ||
| 291 | data.map((item) => { | ||
| 292 | if (item.dcode == val) { | ||
| 293 | name = item.dname; | ||
| 294 | } | ||
| 295 | }); | ||
| 296 | return name; | ||
| 297 | } | ||
| 298 | } | ||
| 299 | } | ||
| 300 | } | ||
| 301 | </script> | ||
| 302 | <style scoped lang='scss'> | ||
| 303 | @import "~@/styles/mixin.scss"; | ||
| 304 | .clmlmx-box { | ||
| 305 | margin: 0 auto; | ||
| 306 | |||
| 307 | .title { | ||
| 308 | text-align: center; | ||
| 309 | height: 60px; | ||
| 310 | line-height: 60px; | ||
| 311 | border: 1px solid #dfe6ec; | ||
| 312 | font-size: 20px; | ||
| 313 | background: #81d3f81a; | ||
| 314 | margin-bottom: -1px; | ||
| 315 | } | ||
| 316 | } | ||
| 317 | </style> |
| ... | @@ -220,14 +220,15 @@ class data extends filter { | ... | @@ -220,14 +220,15 @@ class data extends filter { |
| 220 | label: "房地产交易价格(万元)", | 220 | label: "房地产交易价格(万元)", |
| 221 | }, | 221 | }, |
| 222 | { | 222 | { |
| 223 | prop: "zh", | ||
| 224 | label: "幢号", | ||
| 225 | }, | ||
| 226 | { | ||
| 227 | prop: "xmmc", | 223 | prop: "xmmc", |
| 228 | label: "项目名称", | 224 | label: "项目名称", |
| 229 | }, | 225 | }, |
| 230 | { | 226 | { |
| 227 | prop: "zh", | ||
| 228 | label: "幢号", | ||
| 229 | }, | ||
| 230 | |||
| 231 | { | ||
| 231 | prop: "zcs", | 232 | prop: "zcs", |
| 232 | label: "总层数", | 233 | label: "总层数", |
| 233 | }, | 234 | }, | ... | ... |
| ... | @@ -54,11 +54,10 @@ class data extends filter { | ... | @@ -54,11 +54,10 @@ class data extends filter { |
| 54 | { | 54 | { |
| 55 | prop: "createtime", | 55 | prop: "createtime", |
| 56 | label: "创建时间", | 56 | label: "创建时间", |
| 57 | // width: '180', | ||
| 58 | }, | 57 | }, |
| 59 | { | 58 | { |
| 60 | label: '操作', | 59 | label: '操作', |
| 61 | width: '130', | 60 | width: '100', |
| 62 | render: (h, scope) => { | 61 | render: (h, scope) => { |
| 63 | return ( | 62 | return ( |
| 64 | <div> | 63 | <div> | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
| ... | @@ -62,66 +62,38 @@ | ... | @@ -62,66 +62,38 @@ |
| 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" v-if="ruleForm.fdcq2"> | 65 | <el-row :gutter="10" v-if="ruleForm.fdcq1"> |
| 66 | <el-col :span="8"> | 66 | <el-col :span="8"> |
| 67 | <el-form-item label="土地使用期限:"> | 67 | <el-form-item label="独用土地面积:"> |
| 68 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> | 68 | <el-input disabled v-model="ruleForm.fdcq1.dytdmj"></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="规划用途名称:"> | 72 | <el-form-item label="分摊土地面积:"> |
| 73 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | 73 | <el-input disabled v-model="ruleForm.fdcq1.fttdmj"></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="房屋性质:"> | 77 | <el-form-item label="房地产交易价格:"> |
| 78 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> | 78 | <el-input disabled v-model="ruleForm.fdcq1.fdcjyjg"></el-input> |
| 79 | </el-form-item> | ||
| 80 | </el-col> | ||
| 81 | </el-row> | ||
| 82 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | ||
| 83 | <el-col :span="8"> | ||
| 84 | <el-form-item label="房屋结构:"> | ||
| 85 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> | ||
| 86 | </el-form-item> | ||
| 87 | </el-col> | ||
| 88 | <el-col :span="8"> | ||
| 89 | <el-form-item label="所在层:"> | ||
| 90 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> | ||
| 91 | </el-form-item> | ||
| 92 | </el-col> | ||
| 93 | <el-col :span="8"> | ||
| 94 | <el-form-item label="总层数:"> | ||
| 95 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> | ||
| 96 | </el-form-item> | ||
| 97 | </el-col> | ||
| 98 | </el-row> | ||
| 99 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | ||
| 100 | <el-col :span="8"> | ||
| 101 | <el-form-item label="竣工时间:"> | ||
| 102 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> | ||
| 103 | </el-form-item> | ||
| 104 | </el-col> | ||
| 105 | <el-col :span="8"> | ||
| 106 | <el-form-item label="建筑面积:"> | ||
| 107 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> | ||
| 108 | </el-form-item> | ||
| 109 | </el-col> | ||
| 110 | <el-col :span="8"> | ||
| 111 | <el-form-item label="专有建筑面积:"> | ||
| 112 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> | ||
| 113 | </el-form-item> | 79 | </el-form-item> |
| 114 | </el-col> | 80 | </el-col> |
| 115 | </el-row> | 81 | </el-row> |
| 116 | <el-row :gutter="10"> | 82 | <el-row :gutter="10"> |
| 117 | 83 | <el-col :span="24"> | |
| 118 | <el-col :span="8"> | 84 | <el-form-item label="附记:"> |
| 119 | <el-form-item label="分摊建筑面积:"> | 85 | <el-input disabled v-model="ruleForm.fdcq1.fj"></el-input> |
| 120 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> | ||
| 121 | </el-form-item> | 86 | </el-form-item> |
| 122 | </el-col> | 87 | </el-col> |
| 123 | </el-row> | 88 | </el-row> |
| 124 | <div class="slxx_title title-block"> | 89 | <div class="slxx_title title-block"> |
| 90 | 房屋多幢明细 | ||
| 91 | <div class="triangle"></div> | ||
| 92 | <fdcqxmTable | ||
| 93 | :ableOperation="ableOperation" | ||
| 94 | :tableData="ruleForm.fdcqxm" | ||
| 95 | @upDateTdytxxList="upDateTdytxxList" /> | ||
| 96 | <div class="slxx_title title-block"> | ||
| 125 | 土地用途 | 97 | 土地用途 |
| 126 | <div class="triangle"></div> | 98 | <div class="triangle"></div> |
| 127 | </div> | 99 | </div> |
| ... | @@ -175,7 +147,7 @@ | ... | @@ -175,7 +147,7 @@ |
| 175 | <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" | 147 | <qlrCommonTable @upDateQlrxxList="upDateQlrxxList" :tableData="ruleForm.qlrList" :disabled="!ableOperation" |
| 176 | :gyfs="ruleForm.slsq.gyfs" /> | 148 | :gyfs="ruleForm.slsq.gyfs" /> |
| 177 | 149 | ||
| 178 | <div v-if="ruleForm.ywrList && ruleForm.slsq.djlx == '200'"> | 150 | <div v-if="ruleForm.ywrList && ruleForm.qlxx.djlx == '200'"> |
| 179 | <div class="slxx_title title-block"> | 151 | <div class="slxx_title title-block"> |
| 180 | 义务人信息 | 152 | 义务人信息 |
| 181 | <div class="triangle"></div> | 153 | <div class="triangle"></div> |
| ... | @@ -191,12 +163,13 @@ | ... | @@ -191,12 +163,13 @@ |
| 191 | <el-col> | 163 | <el-col> |
| 192 | <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> | 164 | <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> |
| 193 | <el-input class="textArea" type="textarea" :disabled="!ableOperation" | 165 | <el-input class="textArea" type="textarea" :disabled="!ableOperation" |
| 194 | v-model="ruleForm.fdcq2.djyy"> | 166 | v-model="ruleForm.fdcq1.djyy"> |
| 195 | </el-input> | 167 | </el-input> |
| 196 | </el-form-item> | 168 | </el-form-item> |
| 197 | </el-col> | 169 | </el-col> |
| 198 | </el-row> | 170 | </el-row> |
| 199 | </div> | 171 | </div> |
| 172 | </div> | ||
| 200 | <el-row class="btn" v-if="ableOperation"> | 173 | <el-row class="btn" v-if="ableOperation"> |
| 201 | <el-form-item> | 174 | <el-form-item> |
| 202 | <el-button type="primary" @click="onSubmit">保存</el-button> | 175 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| ... | @@ -208,6 +181,7 @@ | ... | @@ -208,6 +181,7 @@ |
| 208 | <script> | 181 | <script> |
| 209 | import ywmix from "@/views/ywbl/mixin/index" | 182 | import ywmix from "@/views/ywbl/mixin/index" |
| 210 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; | 183 | import qlrCommonTable from "@/views/workflow/components/qlrCommonTable"; |
| 184 | import fdcqxmTable from "@/views/workflow/components/fdcqxmTable"; | ||
| 211 | import tdytTable from "@/views/workflow/components/tdytTable"; | 185 | import tdytTable from "@/views/workflow/components/tdytTable"; |
| 212 | import { Init, saveData } from "@/api/workflow/fwsyq1Flow.js"; | 186 | import { Init, saveData } from "@/api/workflow/fwsyq1Flow.js"; |
| 213 | import { mapGetters } from "vuex"; | 187 | import { mapGetters } from "vuex"; |
| ... | @@ -231,7 +205,7 @@ | ... | @@ -231,7 +205,7 @@ |
| 231 | } | 205 | } |
| 232 | }); | 206 | }); |
| 233 | }, | 207 | }, |
| 234 | components: { qlrCommonTable, tdytTable }, | 208 | components: { qlrCommonTable, tdytTable ,fdcqxmTable}, |
| 235 | computed: { | 209 | computed: { |
| 236 | ...mapGetters(["dictData", "flag"]), | 210 | ...mapGetters(["dictData", "flag"]), |
| 237 | }, | 211 | }, |
| ... | @@ -253,7 +227,7 @@ | ... | @@ -253,7 +227,7 @@ |
| 253 | slsq: { | 227 | slsq: { |
| 254 | 228 | ||
| 255 | }, | 229 | }, |
| 256 | fdcq2: { | 230 | fdcq1: { |
| 257 | zyjzmj: '', | 231 | zyjzmj: '', |
| 258 | ftjzmj: '' | 232 | ftjzmj: '' |
| 259 | }, | 233 | }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: 房屋多幢受理信息 | 2 | * @Description: 房屋多幢受理信息 |
| 3 | * @Autor: ssq | 3 | * @Autor: ssq |
| 4 | * @LastEditTime: 2023-08-03 09:02:02 | 4 | * @LastEditTime: 2023-08-03 14:37:14 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="slxx"> | 7 | <div class="slxx"> |
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | ref="ruleForm" | 11 | ref="ruleForm" |
| 12 | :label-position="flag ? 'top' : ''" | 12 | :label-position="flag ? 'top' : ''" |
| 13 | :inline="flag" | 13 | :inline="flag" |
| 14 | label-width="120px" | 14 | label-width="140px" |
| 15 | > | 15 | > |
| 16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> | 16 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 17 | <div class="slxx_title title-block"> | 17 | <div class="slxx_title title-block"> |
| ... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
| 52 | </el-form-item> | 52 | </el-form-item> |
| 53 | </el-col> | 53 | </el-col> |
| 54 | </el-row> | 54 | </el-row> |
| 55 | <!-- <div class="slxx_title title-block"> | 55 | <div class="slxx_title title-block"> |
| 56 | 不动产单元情况 | 56 | 不动产单元情况 |
| 57 | <div class="triangle"></div> | 57 | <div class="triangle"></div> |
| 58 | </div> | 58 | </div> |
| ... | @@ -68,64 +68,86 @@ | ... | @@ -68,64 +68,86 @@ |
| 68 | </el-form-item> | 68 | </el-form-item> |
| 69 | </el-col> | 69 | </el-col> |
| 70 | </el-row> | 70 | </el-row> |
| 71 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 71 | <el-row :gutter="10"> |
| 72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
| 73 | <el-form-item label="土地使用期限:"> | 73 | <el-form-item label="发包方:"> |
| 74 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> | 74 | <el-input v-model="ruleForm.lq.fbf"></el-input> |
| 75 | </el-form-item> | 75 | </el-form-item> |
| 76 | </el-col> | 76 | </el-col> |
| 77 | <el-col :span="8"> | 77 | <el-col :span="8"> |
| 78 | <el-form-item label="规划用途名称:"> | 78 | <el-form-item label="发包方代码:"> |
| 79 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | 79 | <el-input v-model="ruleForm.lq.fbfdm"></el-input> |
| 80 | </el-form-item> | 80 | </el-form-item> |
| 81 | </el-col> | 81 | </el-col> |
| 82 | <el-col :span="8"> | 82 | <el-col :span="8"> |
| 83 | <el-form-item label="房屋性质:"> | 83 | <el-form-item label="使用权(承包)面积:"> |
| 84 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> | 84 | <el-input v-model="ruleForm.lq.syqmj"></el-input> |
| 85 | </el-form-item> | 85 | </el-form-item> |
| 86 | </el-col> | 86 | </el-col> |
| 87 | </el-row> | 87 | </el-row> |
| 88 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 88 | <el-row :gutter="10"> |
| 89 | <el-col :span="8"> | ||
| 90 | <el-form-item label="林地所有权性质:"> | ||
| 91 | <el-input v-model="ruleForm.lq.ldsyqxz"></el-input> | ||
| 92 | </el-form-item> | ||
| 93 | </el-col> | ||
| 94 | <el-col :span="8"> | ||
| 95 | <el-form-item label="森林类别:"> | ||
| 96 | <el-input v-model="ruleForm.lq.sllb"></el-input> | ||
| 97 | </el-form-item> | ||
| 98 | </el-col> | ||
| 99 | <el-col :span="8"> | ||
| 100 | <el-form-item label="主要树种:"> | ||
| 101 | <el-input v-model="ruleForm.lq.zysz"></el-input> | ||
| 102 | </el-form-item> | ||
| 103 | </el-col> | ||
| 104 | </el-row> | ||
| 105 | <el-row :gutter="10"> | ||
| 89 | <el-col :span="8"> | 106 | <el-col :span="8"> |
| 90 | <el-form-item label="房屋结构:"> | 107 | <el-form-item label="株数:"> |
| 91 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> | 108 | <el-input v-model="ruleForm.lq.zs"></el-input> |
| 92 | </el-form-item> | 109 | </el-form-item> |
| 93 | </el-col> | 110 | </el-col> |
| 94 | <el-col :span="8"> | 111 | <el-col :span="8"> |
| 95 | <el-form-item label="所在层:"> | 112 | <el-form-item label="林种:"> |
| 96 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> | 113 | <el-input v-model="ruleForm.lq.lz"></el-input> |
| 97 | </el-form-item> | 114 | </el-form-item> |
| 98 | </el-col> | 115 | </el-col> |
| 99 | <el-col :span="8"> | 116 | <el-col :span="8"> |
| 100 | <el-form-item label="总层数:"> | 117 | <el-form-item label="起源:"> |
| 101 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> | 118 | <el-input v-model="ruleForm.lq.qy"></el-input> |
| 102 | </el-form-item> | 119 | </el-form-item> |
| 103 | </el-col> | 120 | </el-col> |
| 104 | </el-row> | 121 | </el-row> |
| 105 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 122 | <el-row :gutter="10"> |
| 106 | <el-col :span="8"> | 123 | <el-col :span="8"> |
| 107 | <el-form-item label="竣工时间:"> | 124 | <el-form-item label="造林年度:"> |
| 108 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> | 125 | <el-input v-model="ruleForm.lq.zlnd"></el-input> |
| 109 | </el-form-item> | 126 | </el-form-item> |
| 110 | </el-col> | 127 | </el-col> |
| 111 | <el-col :span="8"> | 128 | <el-col :span="8"> |
| 112 | <el-form-item label="建筑面积:"> | 129 | <el-form-item label="林班:"> |
| 113 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> | 130 | <el-input v-model="ruleForm.lq.lb"></el-input> |
| 114 | </el-form-item> | 131 | </el-form-item> |
| 115 | </el-col> | 132 | </el-col> |
| 116 | <el-col :span="8"> | 133 | <el-col :span="8"> |
| 117 | <el-form-item label="专有建筑面积:"> | 134 | <el-form-item label="小班:"> |
| 118 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> | 135 | <el-input v-model="ruleForm.lq.xb"></el-input> |
| 119 | </el-form-item> | 136 | </el-form-item> |
| 120 | </el-col> | 137 | </el-col> |
| 121 | </el-row> | 138 | </el-row> |
| 122 | <el-row :gutter="10"> | 139 | <el-row :gutter="10"> |
| 123 | <el-col :span="8"> | 140 | <el-col :span="8"> |
| 124 | <el-form-item label="分摊建筑面积:"> | 141 | <el-form-item label="小地名:"> |
| 125 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> | 142 | <el-input v-model="ruleForm.lq.xdm"></el-input> |
| 126 | </el-form-item> | 143 | </el-form-item> |
| 127 | </el-col> | 144 | </el-col> |
| 128 | </el-row> --> | 145 | <el-col :span="8"> |
| 146 | <el-form-item label="附记:"> | ||
| 147 | <el-input v-model="ruleForm.lq.fj"></el-input> | ||
| 148 | </el-form-item> | ||
| 149 | </el-col> | ||
| 150 | </el-row> | ||
| 129 | <div class="slxx_title title-block"> | 151 | <div class="slxx_title title-block"> |
| 130 | 土地用途 | 152 | 土地用途 |
| 131 | <div class="triangle"></div> | 153 | <div class="triangle"></div> |
| ... | @@ -214,19 +236,19 @@ | ... | @@ -214,19 +236,19 @@ |
| 214 | 登记原因 | 236 | 登记原因 |
| 215 | <div class="triangle"></div> | 237 | <div class="triangle"></div> |
| 216 | </div> | 238 | </div> |
| 217 | <!-- <el-row :gutter="10"> | 239 | <el-row :gutter="10"> |
| 218 | <el-col> | 240 | <el-col> |
| 219 | <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> | 241 | <el-form-item v-if="ruleForm.sldy" label="登记原因:" prop="djyy"> |
| 220 | <el-input | 242 | <el-input |
| 221 | class="textArea" | 243 | class="textArea" |
| 222 | type="textarea" | 244 | type="textarea" |
| 223 | :disabled="!ableOperation" | 245 | :disabled="!ableOperation" |
| 224 | v-model="ruleForm.fdcq2.djyy" | 246 | v-model="ruleForm.lq.djyy" |
| 225 | > | 247 | > |
| 226 | </el-input> | 248 | </el-input> |
| 227 | </el-form-item> | 249 | </el-form-item> |
| 228 | </el-col> | 250 | </el-col> |
| 229 | </el-row> --> | 251 | </el-row> |
| 230 | </div> | 252 | </div> |
| 231 | <el-row class="btn" v-if="ableOperation"> | 253 | <el-row class="btn" v-if="ableOperation"> |
| 232 | <el-form-item> | 254 | <el-form-item> | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-14 16:59:31 | 4 | * @LastEditTime: 2023-08-04 09:52:09 |
| 5 | */ | 5 | */ |
| 6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
| 7 | let vm = null | 7 | let vm = null |
| ... | @@ -113,7 +113,7 @@ class data extends filter { | ... | @@ -113,7 +113,7 @@ class data extends filter { |
| 113 | }, | 113 | }, |
| 114 | { | 114 | { |
| 115 | label: '操作', | 115 | label: '操作', |
| 116 | width: '130', | 116 | width: '100', |
| 117 | render: (h, scope) => { | 117 | render: (h, scope) => { |
| 118 | return ( | 118 | return ( |
| 119 | <div> | 119 | <div> | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-14 16:59:35 | 4 | * @LastEditTime: 2023-08-04 09:54:32 |
| 5 | */ | 5 | */ |
| 6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
| 7 | let vm = null | 7 | let vm = null |
| ... | @@ -40,17 +40,6 @@ class data extends filter { | ... | @@ -40,17 +40,6 @@ class data extends filter { |
| 40 | <div> | 40 | <div> |
| 41 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> | 41 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a> |
| 42 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> | 42 | <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span> |
| 43 | {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> | ||
| 44 | <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> | ||
| 45 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
| 46 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
| 47 | <span v-show={scope.row.cfzt == 1}>,已查封</span> | ||
| 48 | <span v-show={scope.row.diyizt == 1}>,已地役</span> | ||
| 49 | <span v-show={scope.row.yyzt == 1}>,异议中</span> | ||
| 50 | <span v-show={scope.row.xzzt == 1}>,已限制</span> | ||
| 51 | <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> | ||
| 52 | <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> | ||
| 53 | <span v-show={scope.row.dyzt == 1}>,已抵押</span> */} | ||
| 54 | </div> | 43 | </div> |
| 55 | ) | 44 | ) |
| 56 | } | 45 | } |
| ... | @@ -61,6 +50,8 @@ class data extends filter { | ... | @@ -61,6 +50,8 @@ class data extends filter { |
| 61 | }, | 50 | }, |
| 62 | { | 51 | { |
| 63 | prop: "qllxmc", | 52 | prop: "qllxmc", |
| 53 | width: '100', | ||
| 54 | showOverflowTooltip: true, | ||
| 64 | label: "权利类型", | 55 | label: "权利类型", |
| 65 | }, | 56 | }, |
| 66 | { | 57 | { |
| ... | @@ -70,6 +61,8 @@ class data extends filter { | ... | @@ -70,6 +61,8 @@ class data extends filter { |
| 70 | { | 61 | { |
| 71 | prop: "zrzh", | 62 | prop: "zrzh", |
| 72 | label: "自然幢号", | 63 | label: "自然幢号", |
| 64 | width: '90', | ||
| 65 | showOverflowTooltip: true, | ||
| 73 | }, | 66 | }, |
| 74 | { | 67 | { |
| 75 | prop: "jzwmc", | 68 | prop: "jzwmc", |
| ... | @@ -98,6 +91,7 @@ class data extends filter { | ... | @@ -98,6 +91,7 @@ class data extends filter { |
| 98 | }, | 91 | }, |
| 99 | { | 92 | { |
| 100 | label: "土地/房屋用途", | 93 | label: "土地/房屋用途", |
| 94 | minWidth: '170', | ||
| 101 | render: (h, scope) => { | 95 | render: (h, scope) => { |
| 102 | return ( | 96 | return ( |
| 103 | <div> | 97 | <div> |
| ... | @@ -119,13 +113,13 @@ class data extends filter { | ... | @@ -119,13 +113,13 @@ class data extends filter { |
| 119 | { | 113 | { |
| 120 | prop: "zl", | 114 | prop: "zl", |
| 121 | label: "自然幢坐落", | 115 | label: "自然幢坐落", |
| 122 | minWidth: '130' | 116 | minWidth: '120', |
| 117 | showOverflowTooltip: true | ||
| 123 | }, | 118 | }, |
| 124 | { | 119 | { |
| 125 | label: '操作', | 120 | label: '操作', |
| 126 | width: '160', | 121 | width: '110', |
| 127 | align: 'center', | 122 | align: 'center', |
| 128 | fixed: 'right', | ||
| 129 | render: (h, scope) => { | 123 | render: (h, scope) => { |
| 130 | return ( | 124 | return ( |
| 131 | <div> | 125 | <div> | ... | ... |
| ... | @@ -112,7 +112,7 @@ class data extends filter { | ... | @@ -112,7 +112,7 @@ class data extends filter { |
| 112 | }, | 112 | }, |
| 113 | { | 113 | { |
| 114 | label: '操作', | 114 | label: '操作', |
| 115 | width: '130', | 115 | width: '100', |
| 116 | render: (h, scope) => { | 116 | render: (h, scope) => { |
| 117 | return ( | 117 | return ( |
| 118 | <div> | 118 | <div> | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-14 16:59:53 | 4 | * @LastEditTime: 2023-08-04 09:47:56 |
| 5 | */ | 5 | */ |
| 6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
| 7 | let vm = null | 7 | let vm = null |
| ... | @@ -104,9 +104,8 @@ class data extends filter { | ... | @@ -104,9 +104,8 @@ class data extends filter { |
| 104 | }, | 104 | }, |
| 105 | { | 105 | { |
| 106 | label: '操作', | 106 | label: '操作', |
| 107 | width: '160', | 107 | width: '110', |
| 108 | align: 'center', | 108 | align: 'center', |
| 109 | fixed: 'right', | ||
| 110 | render: (h, scope) => { | 109 | render: (h, scope) => { |
| 111 | return ( | 110 | return ( |
| 112 | <div> | 111 | <div> | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-14 17:00:21 | 4 | * @LastEditTime: 2023-08-04 09:52:38 |
| 5 | */ | 5 | */ |
| 6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
| 7 | let vm = null | 7 | let vm = null |
| ... | @@ -112,7 +112,7 @@ class data extends filter { | ... | @@ -112,7 +112,7 @@ class data extends filter { |
| 112 | }, | 112 | }, |
| 113 | { | 113 | { |
| 114 | label: '操作', | 114 | label: '操作', |
| 115 | width: '130', | 115 | width: '100', |
| 116 | render: (h, scope) => { | 116 | render: (h, scope) => { |
| 117 | return ( | 117 | return ( |
| 118 | <div> | 118 | <div> | ... | ... |
| ... | @@ -128,8 +128,7 @@ class data extends filter { | ... | @@ -128,8 +128,7 @@ class data extends filter { |
| 128 | }, | 128 | }, |
| 129 | { | 129 | { |
| 130 | label: '操作', | 130 | label: '操作', |
| 131 | width: '130', | 131 | width: '110', |
| 132 | fixed: "right", | ||
| 133 | render: (h, scope) => { | 132 | render: (h, scope) => { |
| 134 | return ( | 133 | return ( |
| 135 | <div> | 134 | <div> | ... | ... |
-
Please register or sign in to post a comment