style:受理信息模块分屏功能的调整
Showing
14 changed files
with
286 additions
and
272 deletions
| ... | @@ -8,6 +8,7 @@ | ... | @@ -8,6 +8,7 @@ |
| 8 | padding: 0; | 8 | padding: 0; |
| 9 | } | 9 | } |
| 10 | 10 | ||
| 11 | |||
| 11 | /deep/.el-radio { | 12 | /deep/.el-radio { |
| 12 | margin-right: 10px; | 13 | margin-right: 10px; |
| 13 | } | 14 | } |
| ... | @@ -67,6 +68,12 @@ | ... | @@ -67,6 +68,12 @@ |
| 67 | } | 68 | } |
| 68 | } | 69 | } |
| 69 | 70 | ||
| 71 | .formMarginBot0 { | ||
| 72 | /deep/.el-form-item { | ||
| 73 | margin-bottom: 0; | ||
| 74 | } | ||
| 75 | } | ||
| 76 | |||
| 70 | /deep/.el-form-item__label { | 77 | /deep/.el-form-item__label { |
| 71 | padding-bottom: 0px; | 78 | padding-bottom: 0px; |
| 72 | } | 79 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -70,7 +70,7 @@ export default { | ... | @@ -70,7 +70,7 @@ export default { |
| 70 | prop: "zjzl", | 70 | prop: "zjzl", |
| 71 | label: "证件种类", | 71 | label: "证件种类", |
| 72 | render: (h, scope) => { | 72 | render: (h, scope) => { |
| 73 | return this.dictData['A30'].map(option => { | 73 | return this.dictData['A30'] && this.dictData['A30'].map(option => { |
| 74 | if (option.dcode == scope.row.zjzl) { | 74 | if (option.dcode == scope.row.zjzl) { |
| 75 | return <span>{option.dname}</span> | 75 | return <span>{option.dname}</span> |
| 76 | } | 76 | } | ... | ... |
| ... | @@ -6,31 +6,32 @@ | ... | @@ -6,31 +6,32 @@ |
| 6 | <div class='spyj'> | 6 | <div class='spyj'> |
| 7 | <b class="spyj_title">审批表</b> | 7 | <b class="spyj_title">审批表</b> |
| 8 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="120px"> | 8 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="120px"> |
| 9 | <div class="spyj_form" v-for="(item,index) in tableData" :key="index"> | 9 | <div class="spyj_form" v-for="(item, index) in tableData" :key="index"> |
| 10 | <div class="item_left"> | 10 | <div class="item_left"> |
| 11 | {{item.jdmc}}意见 | 11 | {{ item.jdmc }}意见 |
| 12 | </div> | 12 | </div> |
| 13 | <div class="item_right"> | 13 | <div class="item_right"> |
| 14 | <el-row> | 14 | <el-row> |
| 15 | <el-col :span="24"> | 15 | <el-col :span="24"> |
| 16 | <el-form-item label-width="0" class="opinion_item" prop="shyj"> | 16 | <el-form-item label-width="0" class="opinion_item" prop="shyj"> |
| 17 | <el-input type="textarea" :rows="4" class="opinion" placeholder="请输入审批意见" v-if="item.stepShjy == '1' && ableOperation" | 17 | <el-input type="textarea" :rows="4" class="opinion" placeholder="请输入审批意见" |
| 18 | v-model="ruleForm.shyj"></el-input> | 18 | v-if="item.stepShjy == '1' && ableOperation" v-model="ruleForm.shyj"></el-input> |
| 19 | <el-input type="textarea" :rows="4" class="opinion" v-model="item.shyj" v-else :disabled="true"> | 19 | <el-input type="textarea" :rows="4" class="opinion" v-model="item.shyj" v-else :disabled="true"> |
| 20 | </el-input> | 20 | </el-input> |
| 21 | <el-button class="opinion_btn" @click="commonOpinion" v-if="item.stepShjy == '1' && ableOperation">常用意见</el-button> | 21 | <el-button class="opinion_btn" @click="commonOpinion" |
| 22 | v-if="item.stepShjy == '1' && ableOperation">常用意见</el-button> | ||
| 22 | </el-form-item> | 23 | </el-form-item> |
| 23 | </el-col> | 24 | </el-col> |
| 24 | </el-row> | 25 | </el-row> |
| 25 | <el-row> | 26 | <el-row> |
| 26 | <el-col :span="16"> | 27 | <el-col :span="16"> |
| 27 | <el-form-item label="审查人:" prop="shryxm"> | 28 | <el-form-item label="审查人:" prop="shryxm"> |
| 28 | {{item.shryxm }} | 29 | {{ item.shryxm }} |
| 29 | </el-form-item> | 30 | </el-form-item> |
| 30 | </el-col> | 31 | </el-col> |
| 31 | <el-col :span="8" > | 32 | <el-col :span="8"> |
| 32 | <el-form-item label="审核时间:" prop="shjssj" :key="refresh"> | 33 | <el-form-item label="审核时间:" prop="shjssj" :key="refresh"> |
| 33 | {{item.shjssj }} | 34 | {{ item.shjssj }} |
| 34 | </el-form-item> | 35 | </el-form-item> |
| 35 | </el-col> | 36 | </el-col> |
| 36 | </el-row> | 37 | </el-row> |
| ... | @@ -40,7 +41,7 @@ | ... | @@ -40,7 +41,7 @@ |
| 40 | <el-button type="primary" @click="onSubmit">保存</el-button> | 41 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 41 | </div> | 42 | </div> |
| 42 | </el-form> | 43 | </el-form> |
| 43 | <el-empty v-if="tableData.length==0" description="暂无数据"></el-empty> | 44 | <el-empty v-if="isNoData" description="暂无数据"></el-empty> |
| 44 | <commonDialog v-model="commonDialog" /> | 45 | <commonDialog v-model="commonDialog" /> |
| 45 | </div> | 46 | </div> |
| 46 | </template> | 47 | </template> |
| ... | @@ -50,17 +51,18 @@ import { popupDialog } from "@/utils/popup.js"; | ... | @@ -50,17 +51,18 @@ import { popupDialog } from "@/utils/popup.js"; |
| 50 | import commonDialog from "./commonOpinion.vue"; | 51 | import commonDialog from "./commonOpinion.vue"; |
| 51 | import { mapGetters } from 'vuex' | 52 | import { mapGetters } from 'vuex' |
| 52 | export default { | 53 | export default { |
| 53 | components: {commonDialog}, | 54 | components: { commonDialog }, |
| 54 | props: { | 55 | props: { |
| 55 | }, | 56 | }, |
| 56 | computed: { | 57 | computed: { |
| 57 | ...mapGetters([ 'userData']) | 58 | ...mapGetters(['userData']) |
| 58 | }, | 59 | }, |
| 59 | data () { | 60 | data () { |
| 60 | return { | 61 | return { |
| 62 | isNoData: false, | ||
| 61 | bsmSlsq: '', | 63 | bsmSlsq: '', |
| 62 | //刷新值 | 64 | //刷新值 |
| 63 | refresh : 10, | 65 | refresh: 10, |
| 64 | ableOperation: true, | 66 | ableOperation: true, |
| 65 | bsmSlsq: this.$route.query.bsmSlsq, | 67 | bsmSlsq: this.$route.query.bsmSlsq, |
| 66 | bestepid: this.$route.query.bestepid, | 68 | bestepid: this.$route.query.bestepid, |
| ... | @@ -77,7 +79,7 @@ export default { | ... | @@ -77,7 +79,7 @@ export default { |
| 77 | }, | 79 | }, |
| 78 | created () { | 80 | created () { |
| 79 | this.propsParam = this.$attrs; | 81 | this.propsParam = this.$attrs; |
| 80 | if(this.$route.query.viewtype){ | 82 | if (this.$route.query.viewtype) { |
| 81 | this.ableOperation = false | 83 | this.ableOperation = false |
| 82 | } | 84 | } |
| 83 | this.list(); | 85 | this.list(); |
| ... | @@ -88,15 +90,19 @@ export default { | ... | @@ -88,15 +90,19 @@ export default { |
| 88 | }, | 90 | }, |
| 89 | //审批意见数据初始化 | 91 | //审批意见数据初始化 |
| 90 | list () { | 92 | list () { |
| 93 | let that = this | ||
| 91 | this.$startLoading() | 94 | this.$startLoading() |
| 92 | var formdata = new FormData(); | 95 | var formdata = new FormData(); |
| 93 | formdata.append("bsmBusiness", this.propsParam.bsmBusiness); | 96 | formdata.append("bsmBusiness", this.propsParam.bsmBusiness); |
| 94 | formdata.append("bestepid", this.$route.query.bestepid); | 97 | formdata.append("bestepid", this.$route.query.bestepid); |
| 95 | formdata.append("ableOperation",this.ableOperation) | 98 | formdata.append("ableOperation", this.ableOperation) |
| 96 | getSpyjList(formdata).then((res) => { | 99 | getSpyjList(formdata).then((res) => { |
| 97 | this.$endLoading() | 100 | this.$endLoading() |
| 98 | if (res.code === 200 && res.result) { | 101 | if (res.code === 200 && res.result) { |
| 99 | this.tableData = res.result | 102 | this.tableData = res.result ? res.result : [] |
| 103 | if (res.result.length == 0) { | ||
| 104 | that.isNoData = true | ||
| 105 | } | ||
| 100 | this.ruleForm = res.result[res.result.length - 1] | 106 | this.ruleForm = res.result[res.result.length - 1] |
| 101 | } | 107 | } |
| 102 | }) | 108 | }) |
| ... | @@ -114,11 +120,11 @@ export default { | ... | @@ -114,11 +120,11 @@ export default { |
| 114 | }) | 120 | }) |
| 115 | }, | 121 | }, |
| 116 | //打开常用意见列表弹窗 | 122 | //打开常用意见列表弹窗 |
| 117 | commonOpinion(){ | 123 | commonOpinion () { |
| 118 | this.commonDialog = true | 124 | this.commonDialog = true |
| 119 | }, | 125 | }, |
| 120 | //使用常用意见 | 126 | //使用常用意见 |
| 121 | useOpinion(opinion){ | 127 | useOpinion (opinion) { |
| 122 | this.ruleForm.shyj = opinion | 128 | this.ruleForm.shyj = opinion |
| 123 | } | 129 | } |
| 124 | } | 130 | } | ... | ... |
| ... | @@ -70,7 +70,7 @@ | ... | @@ -70,7 +70,7 @@ |
| 70 | </div> | 70 | </div> |
| 71 | <!-- 打印模板需要此模块 --> | 71 | <!-- 打印模板需要此模块 --> |
| 72 | <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" v-show="false"> | 72 | <object id="LODOP_OB" classid="clsid:2105C259-1E0C-4534-8141-A753534CB4CA" v-show="false"> |
| 73 | <embed id="LODOP_EM" type="application/x-print-lodop" width=820 height=450 pluginspage="install_lodop32.exe"/> | 73 | <embed id="LODOP_EM" type="application/x-print-lodop" width=820 height=450 pluginspage="install_lodop32.exe" /> |
| 74 | </object> | 74 | </object> |
| 75 | <el-upload class="fileUpdate" action="" :show-file-list="false" multiple :auto-upload="false" | 75 | <el-upload class="fileUpdate" action="" :show-file-list="false" multiple :auto-upload="false" |
| 76 | :on-change="handleChange" :before-upload="beforeUpload"> | 76 | :on-change="handleChange" :before-upload="beforeUpload"> | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="140px"> | 5 | label-width="140px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:" prop="qllx"> | 30 | <el-form-item label="权利类型:" prop="qllx"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:" prop="djlx"> | 35 | <el-form-item label="登记类型:" prop="djlx"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:" prop="djqx"> | 40 | <el-form-item label="登记情形:" prop="djqx"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -49,51 +49,51 @@ | ... | @@ -49,51 +49,51 @@ |
| 49 | 49 | ||
| 50 | <el-row :gutter="10"> | 50 | <el-row :gutter="10"> |
| 51 | <el-col :span="8"> | 51 | <el-col :span="8"> |
| 52 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利人:"> | 52 | <el-form-item label="权利人:"> |
| 53 | <el-input disabled v-model="ruleForm.qlxxold.qlrmc"></el-input> | 53 | <el-input disabled v-model="ruleForm.qlxxold.qlrmc"></el-input> |
| 54 | </el-form-item> | 54 | </el-form-item> |
| 55 | </el-col> | 55 | </el-col> |
| 56 | <el-col :span="8"> | 56 | <el-col :span="8"> |
| 57 | <el-form-item :class="flag ? 'marginBot0' : ''" label="证件号:"> | 57 | <el-form-item label="证件号:"> |
| 58 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjhm"></el-input> | 58 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjhm"></el-input> |
| 59 | </el-form-item> | 59 | </el-form-item> |
| 60 | </el-col> | 60 | </el-col> |
| 61 | <el-col :span="8"> | 61 | <el-col :span="8"> |
| 62 | <el-form-item :class="flag ? 'marginBot0' : ''" label="证件种类:"> | 62 | <el-form-item label="证件种类:"> |
| 63 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjzl"></el-input> | 63 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjzl"></el-input> |
| 64 | </el-form-item> | 64 | </el-form-item> |
| 65 | </el-col> | 65 | </el-col> |
| 66 | </el-row> | 66 | </el-row> |
| 67 | <el-row :gutter="10"> | 67 | <el-row :gutter="10"> |
| 68 | <el-col :span="8"> | 68 | <el-col :span="8"> |
| 69 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 69 | <el-form-item label="权利类型:"> |
| 70 | <el-input disabled v-model="ruleForm.qlxxold.qllxmc"></el-input> | 70 | <el-input disabled v-model="ruleForm.qlxxold.qllxmc"></el-input> |
| 71 | </el-form-item> | 71 | </el-form-item> |
| 72 | </el-col> | 72 | </el-col> |
| 73 | <el-col :span="8"> | 73 | <el-col :span="8"> |
| 74 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产权证号:"> | 74 | <el-form-item label="不动产权证号:"> |
| 75 | <el-input disabled v-model="ruleForm.qlxxold.bdcqzh"></el-input> | 75 | <el-input disabled v-model="ruleForm.qlxxold.bdcqzh"></el-input> |
| 76 | </el-form-item> | 76 | </el-form-item> |
| 77 | </el-col> | 77 | </el-col> |
| 78 | <el-col :span="8"> | 78 | <el-col :span="8"> |
| 79 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 79 | <el-form-item label="坐落:"> |
| 80 | <el-input disabled v-model="ruleForm.qlxxold.zl"></el-input> | 80 | <el-input disabled v-model="ruleForm.qlxxold.zl"></el-input> |
| 81 | </el-form-item> | 81 | </el-form-item> |
| 82 | </el-col> | 82 | </el-col> |
| 83 | </el-row> | 83 | </el-row> |
| 84 | <el-row :gutter="10"> | 84 | <el-row :gutter="10"> |
| 85 | <el-col :span="8"> | 85 | <el-col :span="8"> |
| 86 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 86 | <el-form-item label="不动产单元号:"> |
| 87 | <el-input disabled v-model="ruleForm.qlxxold.bdcdyh"></el-input> | 87 | <el-input disabled v-model="ruleForm.qlxxold.bdcdyh"></el-input> |
| 88 | </el-form-item> | 88 | </el-form-item> |
| 89 | </el-col> | 89 | </el-col> |
| 90 | <el-col :span="8"> | 90 | <el-col :span="8"> |
| 91 | <el-form-item :class="flag ? 'marginBot0' : ''" label="面积:"> | 91 | <el-form-item label="面积:"> |
| 92 | <el-input disabled v-model="ruleForm.qlxxold.mj"></el-input> | 92 | <el-input disabled v-model="ruleForm.qlxxold.mj"></el-input> |
| 93 | </el-form-item> | 93 | </el-form-item> |
| 94 | </el-col> | 94 | </el-col> |
| 95 | <el-col :span="8"> | 95 | <el-col :span="8"> |
| 96 | <el-form-item :class="flag ? 'marginBot0' : ''" label="用途:"> | 96 | <el-form-item label="用途:"> |
| 97 | <el-input disabled v-model="ruleForm.qlxxold.ytmc"></el-input> | 97 | <el-input disabled v-model="ruleForm.qlxxold.ytmc"></el-input> |
| 98 | </el-form-item> | 98 | </el-form-item> |
| 99 | </el-col> | 99 | </el-col> |
| ... | @@ -106,7 +106,7 @@ | ... | @@ -106,7 +106,7 @@ |
| 106 | 106 | ||
| 107 | <el-row :gutter="10"> | 107 | <el-row :gutter="10"> |
| 108 | <el-col :span="8"> | 108 | <el-col :span="8"> |
| 109 | <el-form-item :class="flag ? 'marginBot0' : ''" label="抵押方式:"> | 109 | <el-form-item label="抵押方式:"> |
| 110 | <!-- <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> --> | 110 | <!-- <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> --> |
| 111 | <el-radio-group disabled v-model="ruleForm.diyaq.dyfs"> | 111 | <el-radio-group disabled v-model="ruleForm.diyaq.dyfs"> |
| 112 | <el-radio label="1">一般抵押</el-radio> | 112 | <el-radio label="1">一般抵押</el-radio> |
| ... | @@ -115,7 +115,7 @@ | ... | @@ -115,7 +115,7 @@ |
| 115 | </el-form-item> | 115 | </el-form-item> |
| 116 | </el-col> | 116 | </el-col> |
| 117 | <el-col :span="16"> | 117 | <el-col :span="16"> |
| 118 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px"> | 118 | <el-form-item label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px"> |
| 119 | <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz"> | 119 | <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz"> |
| 120 | <el-radio label="1">启用</el-radio> | 120 | <el-radio label="1">启用</el-radio> |
| 121 | <el-radio label="0">禁用</el-radio> | 121 | <el-radio label="0">禁用</el-radio> |
| ... | @@ -126,25 +126,25 @@ | ... | @@ -126,25 +126,25 @@ |
| 126 | 126 | ||
| 127 | <el-row :gutter="10"> | 127 | <el-row :gutter="10"> |
| 128 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> | 128 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> |
| 129 | <el-form-item :class="flag ? 'marginBot0' : ''" label="被担保主债权数额:"> | 129 | <el-form-item label="被担保主债权数额:"> |
| 130 | <el-input v-model="ruleForm.diyaq.bdbzzqse"></el-input> | 130 | <el-input v-model="ruleForm.diyaq.bdbzzqse"></el-input> |
| 131 | </el-form-item> | 131 | </el-form-item> |
| 132 | </el-col> | 132 | </el-col> |
| 133 | 133 | ||
| 134 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2"> | 134 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2"> |
| 135 | <el-form-item :class="flag ? 'marginBot0' : ''" label="最高债权额:"> | 135 | <el-form-item label="最高债权额:"> |
| 136 | <el-input v-model="ruleForm.diyaq.zgzqse"></el-input> | 136 | <el-input v-model="ruleForm.diyaq.zgzqse"></el-input> |
| 137 | </el-form-item> | 137 | </el-form-item> |
| 138 | </el-col> | 138 | </el-col> |
| 139 | 139 | ||
| 140 | <el-col :span="8"> | 140 | <el-col :span="8"> |
| 141 | <el-form-item :class="flag ? 'marginBot0' : ''" label="债务履行起始时间:"> | 141 | <el-form-item label="债务履行起始时间:"> |
| 142 | <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" type="date"> | 142 | <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" type="date"> |
| 143 | </el-date-picker> | 143 | </el-date-picker> |
| 144 | </el-form-item> | 144 | </el-form-item> |
| 145 | </el-col> | 145 | </el-col> |
| 146 | <el-col :span="8"> | 146 | <el-col :span="8"> |
| 147 | <el-form-item :class="flag ? 'marginBot0' : ''" label="债务履行结束时间:"> | 147 | <el-form-item label="债务履行结束时间:"> |
| 148 | <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" type="date"> | 148 | <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" type="date"> |
| 149 | </el-date-picker> | 149 | </el-date-picker> |
| 150 | </el-form-item> | 150 | </el-form-item> |
| ... | @@ -154,7 +154,7 @@ | ... | @@ -154,7 +154,7 @@ |
| 154 | 154 | ||
| 155 | <el-row> | 155 | <el-row> |
| 156 | <el-col :span="24"> | 156 | <el-col :span="24"> |
| 157 | <el-form-item :class="flag ? 'marginBot0' : ''" label="担保范围:"> | 157 | <el-form-item label="担保范围:"> |
| 158 | <el-input v-model="ruleForm.diyaq.dbfw" | 158 | <el-input v-model="ruleForm.diyaq.dbfw" |
| 159 | :disabled="$route.query.viewtype == 1 || ruleForm.slywxx.djlx == '300'"></el-input> | 159 | :disabled="$route.query.viewtype == 1 || ruleForm.slywxx.djlx == '300'"></el-input> |
| 160 | </el-form-item> | 160 | </el-form-item> |
| ... | @@ -162,14 +162,14 @@ | ... | @@ -162,14 +162,14 @@ |
| 162 | </el-row> | 162 | </el-row> |
| 163 | <el-row> | 163 | <el-row> |
| 164 | <el-col :span="24"> | 164 | <el-col :span="24"> |
| 165 | <el-form-item :class="flag ? 'marginBot0' : ''" label="最高债权确定事实和数额:"> | 165 | <el-form-item label="最高债权确定事实和数额:"> |
| 166 | <el-input v-model="ruleForm.diyaq.zgzqqdss"></el-input> | 166 | <el-input v-model="ruleForm.diyaq.zgzqqdss"></el-input> |
| 167 | </el-form-item> | 167 | </el-form-item> |
| 168 | </el-col> | 168 | </el-col> |
| 169 | </el-row> | 169 | </el-row> |
| 170 | <el-row> | 170 | <el-row> |
| 171 | <el-col> | 171 | <el-col> |
| 172 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 172 | <el-form-item label="附记:" prop="fj"> |
| 173 | <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 173 | <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
| 174 | </el-form-item> | 174 | </el-form-item> |
| 175 | </el-col> | 175 | </el-col> |
| ... | @@ -181,7 +181,7 @@ | ... | @@ -181,7 +181,7 @@ |
| 181 | </div> | 181 | </div> |
| 182 | <el-row :gutter="10"> | 182 | <el-row :gutter="10"> |
| 183 | <el-col :span="14"> | 183 | <el-col :span="14"> |
| 184 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 184 | <el-form-item label="共有方式:"> |
| 185 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 185 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
| 186 | <el-radio label="0">单独所有</el-radio> | 186 | <el-radio label="0">单独所有</el-radio> |
| 187 | <el-radio label="1">共同共有</el-radio> | 187 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -191,7 +191,7 @@ | ... | @@ -191,7 +191,7 @@ |
| 191 | </el-form-item> | 191 | </el-form-item> |
| 192 | </el-col> | 192 | </el-col> |
| 193 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 193 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 194 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 194 | <el-form-item label="是否分别持证:"> |
| 195 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 195 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 196 | <el-radio label="1">是</el-radio> | 196 | <el-radio label="1">是</el-radio> |
| 197 | <el-radio label="0">否</el-radio> | 197 | <el-radio label="0">否</el-radio> |
| ... | @@ -199,7 +199,7 @@ | ... | @@ -199,7 +199,7 @@ |
| 199 | </el-form-item> | 199 | </el-form-item> |
| 200 | </el-col> | 200 | </el-col> |
| 201 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 201 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 202 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 202 | <el-form-item label="持证人:"> |
| 203 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 203 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 204 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 204 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 205 | </el-option> | 205 | </el-option> |
| ... | @@ -222,13 +222,12 @@ | ... | @@ -222,13 +222,12 @@ |
| 222 | </div> | 222 | </div> |
| 223 | <el-row :gutter="10"> | 223 | <el-row :gutter="10"> |
| 224 | <el-col> | 224 | <el-col> |
| 225 | <el-form-item v-if="ruleForm.slywxx.djlx == '400'" :class="flag ? 'marginBot0' : ''" label="注销抵押原因:" | 225 | <el-form-item v-if="ruleForm.slywxx.djlx == '400'" label="注销抵押原因:" prop="djyy"> |
| 226 | prop="djyy"> | ||
| 227 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 226 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 228 | v-model="ruleForm.diyaq.zxdyyy"> | 227 | v-model="ruleForm.diyaq.zxdyyy"> |
| 229 | </el-input> | 228 | </el-input> |
| 230 | </el-form-item> | 229 | </el-form-item> |
| 231 | <el-form-item v-else :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 230 | <el-form-item v-else label="登记原因:" prop="djyy"> |
| 232 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 231 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 233 | v-model="ruleForm.diyaq.djyy"> | 232 | v-model="ruleForm.diyaq.djyy"> |
| 234 | </el-input> | 233 | </el-input> |
| ... | @@ -238,7 +237,7 @@ | ... | @@ -238,7 +237,7 @@ |
| 238 | 237 | ||
| 239 | </div> | 238 | </div> |
| 240 | <el-row class="btn" v-if="!$route.query.viewtype"> | 239 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 241 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 240 | <el-form-item> |
| 242 | <el-button type="primary" @click="onSubmitClick()">保存</el-button> | 241 | <el-button type="primary" @click="onSubmitClick()">保存</el-button> |
| 243 | </el-form-item> | 242 | </el-form-item> |
| 244 | </el-row> | 243 | </el-row> |
| ... | @@ -284,7 +283,7 @@ export default { | ... | @@ -284,7 +283,7 @@ export default { |
| 284 | }, | 283 | }, |
| 285 | methods: { | 284 | methods: { |
| 286 | onSubmitClick () { | 285 | onSubmitClick () { |
| 287 | saveData(this.ruleForm,this.propsParam.djlx).then((res) => { | 286 | saveData(this.ruleForm, this.propsParam.djlx).then((res) => { |
| 288 | if (res.code === 200) { | 287 | if (res.code === 200) { |
| 289 | this.$message({ | 288 | this.$message({ |
| 290 | showClose: true, | 289 | showClose: true, | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="140px"> | 5 | label-width="140px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:" prop="qllx"> | 30 | <el-form-item label="权利类型:" prop="qllx"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:" prop="djlx"> | 35 | <el-form-item label="登记类型:" prop="djlx"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:" prop="djqx"> | 40 | <el-form-item label="登记情形:" prop="djqx"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -49,46 +49,46 @@ | ... | @@ -49,46 +49,46 @@ |
| 49 | 49 | ||
| 50 | <el-row :gutter="10"> | 50 | <el-row :gutter="10"> |
| 51 | <el-col :span="8"> | 51 | <el-col :span="8"> |
| 52 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利人:"> | 52 | <el-form-item label="权利人:"> |
| 53 | <el-input disabled v-model="ruleForm.qlxxold.qlrmc"></el-input> | 53 | <el-input disabled v-model="ruleForm.qlxxold.qlrmc"></el-input> |
| 54 | </el-form-item> | 54 | </el-form-item> |
| 55 | </el-col> | 55 | </el-col> |
| 56 | <el-col :span="8"> | 56 | <el-col :span="8"> |
| 57 | <el-form-item :class="flag ? 'marginBot0' : ''" label="证件号:"> | 57 | <el-form-item label="证件号:"> |
| 58 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjhm"></el-input> | 58 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjhm"></el-input> |
| 59 | </el-form-item> | 59 | </el-form-item> |
| 60 | </el-col> | 60 | </el-col> |
| 61 | <el-col :span="8"> | 61 | <el-col :span="8"> |
| 62 | <el-form-item :class="flag ? 'marginBot0' : ''" label="证件种类:"> | 62 | <el-form-item label="证件种类:"> |
| 63 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjzl"></el-input> | 63 | <el-input disabled v-model="ruleForm.qlxxold.qlrzjzl"></el-input> |
| 64 | </el-form-item> | 64 | </el-form-item> |
| 65 | </el-col> | 65 | </el-col> |
| 66 | </el-row> | 66 | </el-row> |
| 67 | <el-row :gutter="10"> | 67 | <el-row :gutter="10"> |
| 68 | <el-col :span="8"> | 68 | <el-col :span="8"> |
| 69 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产权证号:"> | 69 | <el-form-item label="不动产权证号:"> |
| 70 | <el-input disabled v-model="ruleForm.qlxxold.bdcqzh"></el-input> | 70 | <el-input disabled v-model="ruleForm.qlxxold.bdcqzh"></el-input> |
| 71 | </el-form-item> | 71 | </el-form-item> |
| 72 | </el-col> | 72 | </el-col> |
| 73 | <el-col :span="16"> | 73 | <el-col :span="16"> |
| 74 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 74 | <el-form-item label="坐落:"> |
| 75 | <el-input disabled v-model="ruleForm.qlxxold.zl"></el-input> | 75 | <el-input disabled v-model="ruleForm.qlxxold.zl"></el-input> |
| 76 | </el-form-item> | 76 | </el-form-item> |
| 77 | </el-col> | 77 | </el-col> |
| 78 | </el-row> | 78 | </el-row> |
| 79 | <el-row :gutter="10"> | 79 | <el-row :gutter="10"> |
| 80 | <el-col :span="8"> | 80 | <el-col :span="8"> |
| 81 | <el-form-item :class="flag ? 'marginBot0' : ''" label="用途:"> | 81 | <el-form-item label="用途:"> |
| 82 | <el-input disabled v-model="ruleForm.qlxxold.ytmc"></el-input> | 82 | <el-input disabled v-model="ruleForm.qlxxold.ytmc"></el-input> |
| 83 | </el-form-item> | 83 | </el-form-item> |
| 84 | </el-col> | 84 | </el-col> |
| 85 | <el-col :span="8"> | 85 | <el-col :span="8"> |
| 86 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 86 | <el-form-item label="不动产单元号:"> |
| 87 | <el-input disabled v-model="ruleForm.qlxxold.bdcdyh"></el-input> | 87 | <el-input disabled v-model="ruleForm.qlxxold.bdcdyh"></el-input> |
| 88 | </el-form-item> | 88 | </el-form-item> |
| 89 | </el-col> | 89 | </el-col> |
| 90 | <el-col :span="8"> | 90 | <el-col :span="8"> |
| 91 | <el-form-item :class="flag ? 'marginBot0' : ''" label="面积:"> | 91 | <el-form-item label="面积:"> |
| 92 | <el-input disabled v-model="ruleForm.qlxxold.mj"></el-input> | 92 | <el-input disabled v-model="ruleForm.qlxxold.mj"></el-input> |
| 93 | </el-form-item> | 93 | </el-form-item> |
| 94 | </el-col> | 94 | </el-col> |
| ... | @@ -101,7 +101,7 @@ | ... | @@ -101,7 +101,7 @@ |
| 101 | 101 | ||
| 102 | <el-row :gutter="10"> | 102 | <el-row :gutter="10"> |
| 103 | <el-col :span="8"> | 103 | <el-col :span="8"> |
| 104 | <el-form-item :class="flag ? 'marginBot0' : ''" label="抵押方式:"> | 104 | <el-form-item label="抵押方式:"> |
| 105 | <!-- <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> --> | 105 | <!-- <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> --> |
| 106 | <el-radio-group disabled v-model="ruleForm.diyaq.dyfs"> | 106 | <el-radio-group disabled v-model="ruleForm.diyaq.dyfs"> |
| 107 | <el-radio label="1">一般抵押</el-radio> | 107 | <el-radio label="1">一般抵押</el-radio> |
| ... | @@ -110,7 +110,7 @@ | ... | @@ -110,7 +110,7 @@ |
| 110 | </el-form-item> | 110 | </el-form-item> |
| 111 | </el-col> | 111 | </el-col> |
| 112 | <el-col :span="16"> | 112 | <el-col :span="16"> |
| 113 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px"> | 113 | <el-form-item label="是否存在禁止或者限制转让抵押不动产的约定:" label-width="350px"> |
| 114 | <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz"> | 114 | <el-radio-group v-model="ruleForm.diyaq.sfczjzhxz"> |
| 115 | <el-radio label="1">启用</el-radio> | 115 | <el-radio label="1">启用</el-radio> |
| 116 | <el-radio label="0">禁用</el-radio> | 116 | <el-radio label="0">禁用</el-radio> |
| ... | @@ -121,25 +121,25 @@ | ... | @@ -121,25 +121,25 @@ |
| 121 | 121 | ||
| 122 | <el-row :gutter="10"> | 122 | <el-row :gutter="10"> |
| 123 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> | 123 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 1"> |
| 124 | <el-form-item :class="flag ? 'marginBot0' : ''" label="被担保主债权数额:"> | 124 | <el-form-item label="被担保主债权数额:"> |
| 125 | <el-input v-model="ruleForm.diyaq.bdbzzqse"></el-input> | 125 | <el-input v-model="ruleForm.diyaq.bdbzzqse"></el-input> |
| 126 | </el-form-item> | 126 | </el-form-item> |
| 127 | </el-col> | 127 | </el-col> |
| 128 | 128 | ||
| 129 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2"> | 129 | <el-col :span="8" v-show="ruleForm.diyaq.dyfs == 2"> |
| 130 | <el-form-item :class="flag ? 'marginBot0' : ''" label="最高债权额:"> | 130 | <el-form-item label="最高债权额:"> |
| 131 | <el-input v-model="ruleForm.diyaq.zgzqse"></el-input> | 131 | <el-input v-model="ruleForm.diyaq.zgzqse"></el-input> |
| 132 | </el-form-item> | 132 | </el-form-item> |
| 133 | </el-col> | 133 | </el-col> |
| 134 | 134 | ||
| 135 | <el-col :span="8"> | 135 | <el-col :span="8"> |
| 136 | <el-form-item :class="flag ? 'marginBot0' : ''" label="债务履行起始时间:"> | 136 | <el-form-item label="债务履行起始时间:"> |
| 137 | <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" type="date"> | 137 | <el-date-picker v-model="ruleForm.diyaq.zwlxqssj" type="date"> |
| 138 | </el-date-picker> | 138 | </el-date-picker> |
| 139 | </el-form-item> | 139 | </el-form-item> |
| 140 | </el-col> | 140 | </el-col> |
| 141 | <el-col :span="8"> | 141 | <el-col :span="8"> |
| 142 | <el-form-item :class="flag ? 'marginBot0' : ''" label="债务履行结束时间:"> | 142 | <el-form-item label="债务履行结束时间:"> |
| 143 | <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" type="date"> | 143 | <el-date-picker v-model="ruleForm.diyaq.zwlxjssj" type="date"> |
| 144 | </el-date-picker> | 144 | </el-date-picker> |
| 145 | </el-form-item> | 145 | </el-form-item> |
| ... | @@ -149,21 +149,21 @@ | ... | @@ -149,21 +149,21 @@ |
| 149 | 149 | ||
| 150 | <el-row> | 150 | <el-row> |
| 151 | <el-col :span="24"> | 151 | <el-col :span="24"> |
| 152 | <el-form-item :class="flag ? 'marginBot0' : ''" label="担保范围:"> | 152 | <el-form-item label="担保范围:"> |
| 153 | <el-input v-model="ruleForm.diyaq.dbfw"></el-input> | 153 | <el-input v-model="ruleForm.diyaq.dbfw"></el-input> |
| 154 | </el-form-item> | 154 | </el-form-item> |
| 155 | </el-col> | 155 | </el-col> |
| 156 | </el-row> | 156 | </el-row> |
| 157 | <el-row> | 157 | <el-row> |
| 158 | <el-col :span="24"> | 158 | <el-col :span="24"> |
| 159 | <el-form-item :class="flag ? 'marginBot0' : ''" label="最高债权确定事实和数额:" label-width="200px"> | 159 | <el-form-item label="最高债权确定事实和数额:" label-width="200px"> |
| 160 | <el-input v-model="ruleForm.diyaq.zgzqqdss"></el-input> | 160 | <el-input v-model="ruleForm.diyaq.zgzqqdss"></el-input> |
| 161 | </el-form-item> | 161 | </el-form-item> |
| 162 | </el-col> | 162 | </el-col> |
| 163 | </el-row> | 163 | </el-row> |
| 164 | <el-row> | 164 | <el-row> |
| 165 | <el-col> | 165 | <el-col> |
| 166 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 166 | <el-form-item label="附记:" prop="fj"> |
| 167 | <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 167 | <el-input type="textarea" v-model="ruleForm.diyaq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
| 168 | </el-form-item> | 168 | </el-form-item> |
| 169 | </el-col> | 169 | </el-col> |
| ... | @@ -175,7 +175,7 @@ | ... | @@ -175,7 +175,7 @@ |
| 175 | </div> | 175 | </div> |
| 176 | <el-row :gutter="10"> | 176 | <el-row :gutter="10"> |
| 177 | <el-col :span="14"> | 177 | <el-col :span="14"> |
| 178 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 178 | <el-form-item label="共有方式:"> |
| 179 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 179 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
| 180 | <el-radio label="0">单独所有</el-radio> | 180 | <el-radio label="0">单独所有</el-radio> |
| 181 | <el-radio label="1">共同共有</el-radio> | 181 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -185,7 +185,7 @@ | ... | @@ -185,7 +185,7 @@ |
| 185 | </el-form-item> | 185 | </el-form-item> |
| 186 | </el-col> | 186 | </el-col> |
| 187 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 187 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 188 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 188 | <el-form-item label="是否分别持证:"> |
| 189 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 189 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 190 | <el-radio label="1">是</el-radio> | 190 | <el-radio label="1">是</el-radio> |
| 191 | <el-radio label="0">否</el-radio> | 191 | <el-radio label="0">否</el-radio> |
| ... | @@ -193,7 +193,7 @@ | ... | @@ -193,7 +193,7 @@ |
| 193 | </el-form-item> | 193 | </el-form-item> |
| 194 | </el-col> | 194 | </el-col> |
| 195 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 195 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 196 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 196 | <el-form-item label="持证人:"> |
| 197 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 197 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 198 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 198 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 199 | </el-option> | 199 | </el-option> |
| ... | @@ -216,13 +216,12 @@ | ... | @@ -216,13 +216,12 @@ |
| 216 | </div> | 216 | </div> |
| 217 | <el-row :gutter="10"> | 217 | <el-row :gutter="10"> |
| 218 | <el-col> | 218 | <el-col> |
| 219 | <el-form-item v-if="ruleForm.slywxx.djlx == '400'" :class="flag ? 'marginBot0' : ''" label="注销抵押原因:" | 219 | <el-form-item v-if="ruleForm.slywxx.djlx == '400'" label="注销抵押原因:" prop="djyy"> |
| 220 | prop="djyy"> | ||
| 221 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 220 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 222 | v-model="ruleForm.diyaq.zxdyyy"> | 221 | v-model="ruleForm.diyaq.zxdyyy"> |
| 223 | </el-input> | 222 | </el-input> |
| 224 | </el-form-item> | 223 | </el-form-item> |
| 225 | <el-form-item v-else :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 224 | <el-form-item v-else label="登记原因:" prop="djyy"> |
| 226 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 225 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 227 | v-model="ruleForm.diyaq.djyy"> | 226 | v-model="ruleForm.diyaq.djyy"> |
| 228 | </el-input> | 227 | </el-input> |
| ... | @@ -232,7 +231,7 @@ | ... | @@ -232,7 +231,7 @@ |
| 232 | 231 | ||
| 233 | </div> | 232 | </div> |
| 234 | <el-row class="btn" v-if="!$route.query.viewtype"> | 233 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 235 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 234 | <el-form-item> |
| 236 | <el-button type="primary" @click="onSubmitClick()">保存</el-button> | 235 | <el-button type="primary" @click="onSubmitClick()">保存</el-button> |
| 237 | </el-form-item> | 236 | </el-form-item> |
| 238 | </el-row> | 237 | </el-row> |
| ... | @@ -278,7 +277,7 @@ export default { | ... | @@ -278,7 +277,7 @@ export default { |
| 278 | }, | 277 | }, |
| 279 | methods: { | 278 | methods: { |
| 280 | onSubmitClick () { | 279 | onSubmitClick () { |
| 281 | saveData(this.ruleForm,this.propsParam.djlx).then((res) => { | 280 | saveData(this.ruleForm, this.propsParam.djlx).then((res) => { |
| 282 | if (res.code === 200) { | 281 | if (res.code === 200) { |
| 283 | this.$message({ | 282 | this.$message({ |
| 284 | showClose: true, | 283 | showClose: true, | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="120px"> | 5 | label-width="120px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -48,80 +48,80 @@ | ... | @@ -48,80 +48,80 @@ |
| 48 | </div> | 48 | </div> |
| 49 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 49 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
| 50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
| 51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 51 | <el-form-item label="不动产单元号:"> |
| 52 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> | 52 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> |
| 53 | </el-form-item> | 53 | </el-form-item> |
| 54 | </el-col> | 54 | </el-col> |
| 55 | <el-col :span="16"> | 55 | <el-col :span="16"> |
| 56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 56 | <el-form-item label="坐落:"> |
| 57 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> | 57 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> |
| 58 | </el-form-item> | 58 | </el-form-item> |
| 59 | </el-col> | 59 | </el-col> |
| 60 | </el-row> | 60 | </el-row> |
| 61 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 61 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
| 62 | <el-col :span="8"> | 62 | <el-col :span="8"> |
| 63 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 63 | <el-form-item label="土地用途:"> |
| 64 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> | 64 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> |
| 65 | </el-form-item> | 65 | </el-form-item> |
| 66 | </el-col> | 66 | </el-col> |
| 67 | <el-col :span="8"> | 67 | <el-col :span="8"> |
| 68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用起止时间:"> | 68 | <el-form-item label="土地使用起止时间:"> |
| 69 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> | 69 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> |
| 70 | </el-form-item> | 70 | </el-form-item> |
| 71 | </el-col> | 71 | </el-col> |
| 72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
| 73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用期限:"> | 73 | <el-form-item label="土地使用期限:"> |
| 74 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> | 74 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> |
| 75 | </el-form-item> | 75 | </el-form-item> |
| 76 | </el-col> | 76 | </el-col> |
| 77 | </el-row> | 77 | </el-row> |
| 78 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 78 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
| 79 | <el-col :span="8"> | 79 | <el-col :span="8"> |
| 80 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋用途:"> | 80 | <el-form-item label="房屋用途:"> |
| 81 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> | 81 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> |
| 82 | </el-form-item> | 82 | </el-form-item> |
| 83 | </el-col> | 83 | </el-col> |
| 84 | <el-col :span="8"> | 84 | <el-col :span="8"> |
| 85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋性质:"> | 85 | <el-form-item label="房屋性质:"> |
| 86 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> | 86 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> |
| 87 | </el-form-item> | 87 | </el-form-item> |
| 88 | </el-col> | 88 | </el-col> |
| 89 | <el-col :span="8"> | 89 | <el-col :span="8"> |
| 90 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋结构:"> | 90 | <el-form-item label="房屋结构:"> |
| 91 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> | 91 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> |
| 92 | </el-form-item> | 92 | </el-form-item> |
| 93 | </el-col> | 93 | </el-col> |
| 94 | </el-row> | 94 | </el-row> |
| 95 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 95 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
| 96 | <el-col :span="8"> | 96 | <el-col :span="8"> |
| 97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="所在层:"> | 97 | <el-form-item label="所在层:"> |
| 98 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> | 98 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> |
| 99 | </el-form-item> | 99 | </el-form-item> |
| 100 | </el-col> | 100 | </el-col> |
| 101 | <el-col :span="8"> | 101 | <el-col :span="8"> |
| 102 | <el-form-item :class="flag ? 'marginBot0' : ''" label="总层数:"> | 102 | <el-form-item label="总层数:"> |
| 103 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> | 103 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> |
| 104 | </el-form-item> | 104 | </el-form-item> |
| 105 | </el-col> | 105 | </el-col> |
| 106 | <el-col :span="8"> | 106 | <el-col :span="8"> |
| 107 | <el-form-item :class="flag ? 'marginBot0' : ''" label="竣工时间:"> | 107 | <el-form-item label="竣工时间:"> |
| 108 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> | 108 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> |
| 109 | </el-form-item> | 109 | </el-form-item> |
| 110 | </el-col> | 110 | </el-col> |
| 111 | </el-row> | 111 | </el-row> |
| 112 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 112 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
| 113 | <el-col :span="8"> | 113 | <el-col :span="8"> |
| 114 | <el-form-item :class="flag ? 'marginBot0' : ''" label="建筑面积:"> | 114 | <el-form-item label="建筑面积:"> |
| 115 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> | 115 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> |
| 116 | </el-form-item> | 116 | </el-form-item> |
| 117 | </el-col> | 117 | </el-col> |
| 118 | <el-col :span="8"> | 118 | <el-col :span="8"> |
| 119 | <el-form-item :class="flag ? 'marginBot0' : ''" label="专有建筑面积:"> | 119 | <el-form-item label="专有建筑面积:"> |
| 120 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> | 120 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> |
| 121 | </el-form-item> | 121 | </el-form-item> |
| 122 | </el-col> | 122 | </el-col> |
| 123 | <el-col :span="8"> | 123 | <el-col :span="8"> |
| 124 | <el-form-item :class="flag ? 'marginBot0' : ''" label="分摊建筑面积:"> | 124 | <el-form-item label="分摊建筑面积:"> |
| 125 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> | 125 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> |
| 126 | </el-form-item> | 126 | </el-form-item> |
| 127 | </el-col> | 127 | </el-col> |
| ... | @@ -132,7 +132,7 @@ | ... | @@ -132,7 +132,7 @@ |
| 132 | </div> | 132 | </div> |
| 133 | <el-row :gutter="10"> | 133 | <el-row :gutter="10"> |
| 134 | <el-col :span="14" v-if="ruleForm.qlxx"> | 134 | <el-col :span="14" v-if="ruleForm.qlxx"> |
| 135 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 135 | <el-form-item label="共有方式:"> |
| 136 | <el-radio-group :disabled="$route.query.viewtype == 1" @change="showCZInfo" | 136 | <el-radio-group :disabled="$route.query.viewtype == 1" @change="showCZInfo" |
| 137 | v-model="ruleForm.slywxx.gyfs"> | 137 | v-model="ruleForm.slywxx.gyfs"> |
| 138 | <el-radio label="0">单独所有</el-radio> | 138 | <el-radio label="0">单独所有</el-radio> |
| ... | @@ -143,7 +143,7 @@ | ... | @@ -143,7 +143,7 @@ |
| 143 | </el-form-item> | 143 | </el-form-item> |
| 144 | </el-col> | 144 | </el-col> |
| 145 | <el-col :span="5"> | 145 | <el-col :span="5"> |
| 146 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发证方式:"> | 146 | <el-form-item label="发证方式:"> |
| 147 | <el-radio-group v-model="ruleForm.slywxx.fzfs"> | 147 | <el-radio-group v-model="ruleForm.slywxx.fzfs"> |
| 148 | <el-radio label="1">小证</el-radio> | 148 | <el-radio label="1">小证</el-radio> |
| 149 | <el-radio label="2">大证</el-radio> | 149 | <el-radio label="2">大证</el-radio> |
| ... | @@ -152,7 +152,7 @@ | ... | @@ -152,7 +152,7 @@ |
| 152 | </el-col> | 152 | </el-col> |
| 153 | 153 | ||
| 154 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 154 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
| 155 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 155 | <el-form-item label="是否分别持证:"> |
| 156 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 156 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 157 | <el-radio label="1">是</el-radio> | 157 | <el-radio label="1">是</el-radio> |
| 158 | <el-radio label="0">否</el-radio> | 158 | <el-radio label="0">否</el-radio> |
| ... | @@ -160,7 +160,7 @@ | ... | @@ -160,7 +160,7 @@ |
| 160 | </el-form-item> | 160 | </el-form-item> |
| 161 | </el-col> | 161 | </el-col> |
| 162 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 162 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
| 163 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 163 | <el-form-item label="持证人:"> |
| 164 | <el-select v-model="ruleForm.slywxx.czr" placeholder="持证人"> | 164 | <el-select v-model="ruleForm.slywxx.czr" placeholder="持证人"> |
| 165 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 165 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 166 | </el-option> | 166 | </el-option> |
| ... | @@ -185,7 +185,7 @@ | ... | @@ -185,7 +185,7 @@ |
| 185 | </div> | 185 | </div> |
| 186 | <el-row :gutter="10"> | 186 | <el-row :gutter="10"> |
| 187 | <el-col> | 187 | <el-col> |
| 188 | <el-form-item v-if="ruleForm.fdcq2" :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 188 | <el-form-item v-if="ruleForm.fdcq2" label="登记原因:" prop="djyy"> |
| 189 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 189 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 190 | v-model="ruleForm.fdcq2.djyy"> | 190 | v-model="ruleForm.fdcq2.djyy"> |
| 191 | </el-input> | 191 | </el-input> |
| ... | @@ -194,7 +194,7 @@ | ... | @@ -194,7 +194,7 @@ |
| 194 | </el-row> | 194 | </el-row> |
| 195 | </div> | 195 | </div> |
| 196 | <el-row class="btn" v-if="!$route.query.viewtype"> | 196 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 197 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 197 | <el-form-item> |
| 198 | <el-button type="primary" @click="onSubmit">保存</el-button> | 198 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 199 | </el-form-item> | 199 | </el-form-item> |
| 200 | </el-row> | 200 | </el-row> | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="120px"> | 5 | label-width="120px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 11 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> | 28 | <el-row :gutter="10" v-if="ruleForm.slywxx"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -51,80 +51,80 @@ | ... | @@ -51,80 +51,80 @@ |
| 51 | 51 | ||
| 52 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 52 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
| 53 | <el-col :span="8"> | 53 | <el-col :span="8"> |
| 54 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 54 | <el-form-item label="不动产单元号:"> |
| 55 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> | 55 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> |
| 56 | </el-form-item> | 56 | </el-form-item> |
| 57 | </el-col> | 57 | </el-col> |
| 58 | <el-col :span="16"> | 58 | <el-col :span="16"> |
| 59 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 59 | <el-form-item label="坐落:"> |
| 60 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> | 60 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> |
| 61 | </el-form-item> | 61 | </el-form-item> |
| 62 | </el-col> | 62 | </el-col> |
| 63 | </el-row> | 63 | </el-row> |
| 64 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> | 64 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
| 65 | <el-col :span="8"> | 65 | <el-col :span="8"> |
| 66 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 66 | <el-form-item label="土地用途:"> |
| 67 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> | 67 | <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input> |
| 68 | </el-form-item> | 68 | </el-form-item> |
| 69 | </el-col> | 69 | </el-col> |
| 70 | <el-col :span="8"> | 70 | <el-col :span="8"> |
| 71 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用起止时间:"> | 71 | <el-form-item label="土地使用起止时间:"> |
| 72 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> | 72 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input> |
| 73 | </el-form-item> | 73 | </el-form-item> |
| 74 | </el-col> | 74 | </el-col> |
| 75 | <el-col :span="8"> | 75 | <el-col :span="8"> |
| 76 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地使用期限:"> | 76 | <el-form-item label="土地使用期限:"> |
| 77 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> | 77 | <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> |
| 78 | </el-form-item> | 78 | </el-form-item> |
| 79 | </el-col> | 79 | </el-col> |
| 80 | </el-row> | 80 | </el-row> |
| 81 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 81 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
| 82 | <el-col :span="8"> | 82 | <el-col :span="8"> |
| 83 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋用途:"> | 83 | <el-form-item label="房屋用途:"> |
| 84 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> | 84 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> |
| 85 | </el-form-item> | 85 | </el-form-item> |
| 86 | </el-col> | 86 | </el-col> |
| 87 | <el-col :span="8"> | 87 | <el-col :span="8"> |
| 88 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋性质:"> | 88 | <el-form-item label="房屋性质:"> |
| 89 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> | 89 | <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> |
| 90 | </el-form-item> | 90 | </el-form-item> |
| 91 | </el-col> | 91 | </el-col> |
| 92 | <el-col :span="8"> | 92 | <el-col :span="8"> |
| 93 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋结构:"> | 93 | <el-form-item label="房屋结构:"> |
| 94 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> | 94 | <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></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" v-if="ruleForm.fdcq2"> | 98 | <el-row :gutter="10" v-if="ruleForm.fdcq2"> |
| 99 | <el-col :span="8"> | 99 | <el-col :span="8"> |
| 100 | <el-form-item :class="flag ? 'marginBot0' : ''" label="所在层:"> | 100 | <el-form-item label="所在层:"> |
| 101 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> | 101 | <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> |
| 102 | </el-form-item> | 102 | </el-form-item> |
| 103 | </el-col> | 103 | </el-col> |
| 104 | <el-col :span="8"> | 104 | <el-col :span="8"> |
| 105 | <el-form-item :class="flag ? 'marginBot0' : ''" label="总层数:"> | 105 | <el-form-item label="总层数:"> |
| 106 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> | 106 | <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> |
| 107 | </el-form-item> | 107 | </el-form-item> |
| 108 | </el-col> | 108 | </el-col> |
| 109 | <el-col :span="8"> | 109 | <el-col :span="8"> |
| 110 | <el-form-item :class="flag ? 'marginBot0' : ''" label="竣工时间:"> | 110 | <el-form-item label="竣工时间:"> |
| 111 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> | 111 | <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> |
| 112 | </el-form-item> | 112 | </el-form-item> |
| 113 | </el-col> | 113 | </el-col> |
| 114 | </el-row> | 114 | </el-row> |
| 115 | <el-row :gutter="10" v-if="ruleForm.qlxx"> | 115 | <el-row :gutter="10" v-if="ruleForm.qlxx"> |
| 116 | <el-col :span="8"> | 116 | <el-col :span="8"> |
| 117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="建筑面积:"> | 117 | <el-form-item label="建筑面积:"> |
| 118 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> | 118 | <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> |
| 119 | </el-form-item> | 119 | </el-form-item> |
| 120 | </el-col> | 120 | </el-col> |
| 121 | <el-col :span="8"> | 121 | <el-col :span="8"> |
| 122 | <el-form-item :class="flag ? 'marginBot0' : ''" label="专有建筑面积:"> | 122 | <el-form-item label="专有建筑面积:"> |
| 123 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> | 123 | <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> |
| 124 | </el-form-item> | 124 | </el-form-item> |
| 125 | </el-col> | 125 | </el-col> |
| 126 | <el-col :span="8"> | 126 | <el-col :span="8"> |
| 127 | <el-form-item :class="flag ? 'marginBot0' : ''" label="分摊建筑面积:"> | 127 | <el-form-item label="分摊建筑面积:"> |
| 128 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> | 128 | <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> |
| 129 | </el-form-item> | 129 | </el-form-item> |
| 130 | </el-col> | 130 | </el-col> |
| ... | @@ -135,7 +135,7 @@ | ... | @@ -135,7 +135,7 @@ |
| 135 | </div> | 135 | </div> |
| 136 | <el-row :gutter="10"> | 136 | <el-row :gutter="10"> |
| 137 | <el-col :span="14" v-if="ruleForm.qlxx"> | 137 | <el-col :span="14" v-if="ruleForm.qlxx"> |
| 138 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 138 | <el-form-item label="共有方式:"> |
| 139 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 139 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
| 140 | <el-radio label="0">单独所有</el-radio> | 140 | <el-radio label="0">单独所有</el-radio> |
| 141 | <el-radio label="1">共同共有</el-radio> | 141 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -145,7 +145,7 @@ | ... | @@ -145,7 +145,7 @@ |
| 145 | </el-form-item> | 145 | </el-form-item> |
| 146 | </el-col> | 146 | </el-col> |
| 147 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 147 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
| 148 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 148 | <el-form-item label="是否分别持证:"> |
| 149 | <el-radio-group v-model="ruleForm.sffbcz"> | 149 | <el-radio-group v-model="ruleForm.sffbcz"> |
| 150 | <el-radio label="1">是</el-radio> | 150 | <el-radio label="1">是</el-radio> |
| 151 | <el-radio label="0">否</el-radio> | 151 | <el-radio label="0">否</el-radio> |
| ... | @@ -153,7 +153,7 @@ | ... | @@ -153,7 +153,7 @@ |
| 153 | </el-form-item> | 153 | </el-form-item> |
| 154 | </el-col> | 154 | </el-col> |
| 155 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> | 155 | <el-col :span="5" v-show="ruleForm.qlxx && ruleForm.qlxx.gyfs == '2'"> |
| 156 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 156 | <el-form-item label="持证人:"> |
| 157 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 157 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 158 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 158 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 159 | </el-option> | 159 | </el-option> |
| ... | @@ -169,7 +169,7 @@ | ... | @@ -169,7 +169,7 @@ |
| 169 | </div> | 169 | </div> |
| 170 | <el-row :gutter="10"> | 170 | <el-row :gutter="10"> |
| 171 | <el-col> | 171 | <el-col> |
| 172 | <el-form-item v-if="ruleForm.fdcq2" :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 172 | <el-form-item v-if="ruleForm.fdcq2" label="登记原因:" prop="djyy"> |
| 173 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 173 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 174 | v-model="ruleForm.fdcq2.djyy"> | 174 | v-model="ruleForm.fdcq2.djyy"> |
| 175 | </el-input> | 175 | </el-input> |
| ... | @@ -178,7 +178,7 @@ | ... | @@ -178,7 +178,7 @@ |
| 178 | </el-row> | 178 | </el-row> |
| 179 | </div> | 179 | </div> |
| 180 | <el-row class="btn" v-if="!$route.query.viewtype"> | 180 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 181 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 181 | <el-form-item> |
| 182 | <el-button type="primary" @click="onSubmit">保存</el-button> | 182 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 183 | </el-form-item> | 183 | </el-form-item> |
| 184 | </el-row> | 184 | </el-row> | ... | ... |
| ... | @@ -3,31 +3,31 @@ | ... | @@ -3,31 +3,31 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="120px"> | 5 | label-width="120px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:" prop="ywh"> | 13 | <el-form-item label="业务号:" prop="ywh"> |
| 14 | <el-input disabled v-model="ruleForm.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:" prop="slry"> | 18 | <el-form-item label="受理人员:" prop="slry"> |
| 19 | <el-input disabled v-model="ruleForm.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:" prop="slsj"> | 23 | <el-form-item label="受理时间:" prop="slsj"> |
| 24 | <el-input disabled v-model="ruleForm.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:" prop="qllx"> | 30 | <el-form-item label="权利类型:" prop="qllx"> |
| 31 | <el-select disabled v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> | 31 | <el-select disabled v-model="ruleForm.qllx" filterable clearable placeholder="请选择权利类型"> |
| 32 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 32 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 33 | </el-option> | 33 | </el-option> |
| ... | @@ -35,7 +35,7 @@ | ... | @@ -35,7 +35,7 @@ |
| 35 | </el-form-item> | 35 | </el-form-item> |
| 36 | </el-col> | 36 | </el-col> |
| 37 | <el-col :span="8"> | 37 | <el-col :span="8"> |
| 38 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:" prop="djlx"> | 38 | <el-form-item label="登记类型:" prop="djlx"> |
| 39 | <el-select disabled v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> | 39 | <el-select disabled v-model="ruleForm.djlx" filterable clearable placeholder="请选择登记类型"> |
| 40 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 40 | <el-option v-for="item in dictData['A21']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 41 | </el-option> | 41 | </el-option> |
| ... | @@ -43,7 +43,7 @@ | ... | @@ -43,7 +43,7 @@ |
| 43 | </el-form-item> | 43 | </el-form-item> |
| 44 | </el-col> | 44 | </el-col> |
| 45 | <el-col :span="8"> | 45 | <el-col :span="8"> |
| 46 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:" prop="djqx"> | 46 | <el-form-item label="登记情形:" prop="djqx"> |
| 47 | <el-input disabled v-model="ruleForm.djqxmc"></el-input> | 47 | <el-input disabled v-model="ruleForm.djqxmc"></el-input> |
| 48 | </el-form-item> | 48 | </el-form-item> |
| 49 | </el-col> | 49 | </el-col> |
| ... | @@ -54,34 +54,34 @@ | ... | @@ -54,34 +54,34 @@ |
| 54 | </div> | 54 | </div> |
| 55 | <el-row :gutter="10"> | 55 | <el-row :gutter="10"> |
| 56 | <el-col :span="8"> | 56 | <el-col :span="8"> |
| 57 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:" prop="zddm"> | 57 | <el-form-item label="宗地代码:" prop="zddm"> |
| 58 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> | 58 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> |
| 59 | </el-form-item> | 59 | </el-form-item> |
| 60 | </el-col> | 60 | </el-col> |
| 61 | <el-col :span="8"> | 61 | <el-col :span="8"> |
| 62 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:" prop="bdcdyh"> | 62 | <el-form-item label="不动产单元号:" prop="bdcdyh"> |
| 63 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> | 63 | <el-input disabled v-model="ruleForm.bdcdyh"></el-input> |
| 64 | </el-form-item> | 64 | </el-form-item> |
| 65 | </el-col> | 65 | </el-col> |
| 66 | <el-col :span="8"> | 66 | <el-col :span="8"> |
| 67 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:" prop="qlxzmc"> | 67 | <el-form-item label="权利性质:" prop="qlxzmc"> |
| 68 | <el-input disabled v-model="ruleForm.qlxzmc"></el-input> | 68 | <el-input disabled v-model="ruleForm.qlxzmc"></el-input> |
| 69 | </el-form-item> | 69 | </el-form-item> |
| 70 | </el-col> | 70 | </el-col> |
| 71 | </el-row> | 71 | </el-row> |
| 72 | <el-row :gutter="10"> | 72 | <el-row :gutter="10"> |
| 73 | <el-col :span="8"> | 73 | <el-col :span="8"> |
| 74 | <el-form-item :class="flag ? 'marginBot0' : ''" label="自然幢号:" prop="zrzh"> | 74 | <el-form-item label="自然幢号:" prop="zrzh"> |
| 75 | <el-input disabled v-model="ruleForm.zrzDetail.zrzh"></el-input> | 75 | <el-input disabled v-model="ruleForm.zrzDetail.zrzh"></el-input> |
| 76 | </el-form-item> | 76 | </el-form-item> |
| 77 | </el-col> | 77 | </el-col> |
| 78 | <el-col :span="8"> | 78 | <el-col :span="8"> |
| 79 | <el-form-item :class="flag ? 'marginBot0' : ''" label="户不动产单元号:" prop="hbdcdyh"> | 79 | <el-form-item label="户不动产单元号:" prop="hbdcdyh"> |
| 80 | <el-input disabled v-model="ruleForm.ghytmc"></el-input> | 80 | <el-input disabled v-model="ruleForm.ghytmc"></el-input> |
| 81 | </el-form-item> | 81 | </el-form-item> |
| 82 | </el-col> | 82 | </el-col> |
| 83 | <el-col :span="8"> | 83 | <el-col :span="8"> |
| 84 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记状态:" prop="djzt"> | 84 | <el-form-item label="登记状态:" prop="djzt"> |
| 85 | <el-select disabled v-model="ruleForm.djzt" filterable clearable> | 85 | <el-select disabled v-model="ruleForm.djzt" filterable clearable> |
| 86 | <el-option v-for="item in djztList" :key="item.value" :label="item.label" :value="item.value"> | 86 | <el-option v-for="item in djztList" :key="item.value" :label="item.label" :value="item.value"> |
| 87 | </el-option> | 87 | </el-option> |
| ... | @@ -91,30 +91,30 @@ | ... | @@ -91,30 +91,30 @@ |
| 91 | </el-row> | 91 | </el-row> |
| 92 | <el-row :gutter="10"> | 92 | <el-row :gutter="10"> |
| 93 | <el-col :span="8"> | 93 | <el-col :span="8"> |
| 94 | <el-form-item :class="flag ? 'marginBot0' : ''" label="图幅丘幢号:" prop="tfqzh"> | 94 | <el-form-item label="图幅丘幢号:" prop="tfqzh"> |
| 95 | <el-input disabled v-model="ruleForm.tfqzh"></el-input> | 95 | <el-input disabled v-model="ruleForm.tfqzh"></el-input> |
| 96 | </el-form-item> | 96 | </el-form-item> |
| 97 | </el-col> | 97 | </el-col> |
| 98 | 98 | ||
| 99 | <el-col :span="16"> | 99 | <el-col :span="16"> |
| 100 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:" prop="zl"> | 100 | <el-form-item label="坐落:" prop="zl"> |
| 101 | <el-input disabled v-model="ruleForm.zl"></el-input> | 101 | <el-input disabled v-model="ruleForm.zl"></el-input> |
| 102 | </el-form-item> | 102 | </el-form-item> |
| 103 | </el-col> | 103 | </el-col> |
| 104 | </el-row> | 104 | </el-row> |
| 105 | <el-row :gutter="10"> | 105 | <el-row :gutter="10"> |
| 106 | <el-col :span="8"> | 106 | <el-col :span="8"> |
| 107 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋用途:"> | 107 | <el-form-item label="房屋用途:"> |
| 108 | <el-input disabled v-model="ruleForm.fwyt"></el-input> | 108 | <el-input disabled v-model="ruleForm.fwyt"></el-input> |
| 109 | </el-form-item> | 109 | </el-form-item> |
| 110 | </el-col> | 110 | </el-col> |
| 111 | <el-col :span="8"> | 111 | <el-col :span="8"> |
| 112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋性质:"> | 112 | <el-form-item label="房屋性质:"> |
| 113 | <el-input disabled v-model="ruleForm.fwxz"></el-input> | 113 | <el-input disabled v-model="ruleForm.fwxz"></el-input> |
| 114 | </el-form-item> | 114 | </el-form-item> |
| 115 | </el-col> | 115 | </el-col> |
| 116 | <el-col :span="8"> | 116 | <el-col :span="8"> |
| 117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="房屋结构:"> | 117 | <el-form-item label="房屋结构:"> |
| 118 | <el-input disabled v-model="ruleForm.fwjg"></el-input> | 118 | <el-input disabled v-model="ruleForm.fwjg"></el-input> |
| 119 | </el-form-item> | 119 | </el-form-item> |
| 120 | </el-col> | 120 | </el-col> |
| ... | @@ -125,7 +125,7 @@ | ... | @@ -125,7 +125,7 @@ |
| 125 | </div> | 125 | </div> |
| 126 | <el-row :gutter="10"> | 126 | <el-row :gutter="10"> |
| 127 | <el-col :span="14"> | 127 | <el-col :span="14"> |
| 128 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 128 | <el-form-item label="共有方式:"> |
| 129 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.gyfs"> | 129 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.gyfs"> |
| 130 | <el-radio label="1">单独所有</el-radio> | 130 | <el-radio label="1">单独所有</el-radio> |
| 131 | <el-radio label="2">共同共有</el-radio> | 131 | <el-radio label="2">共同共有</el-radio> |
| ... | @@ -134,7 +134,7 @@ | ... | @@ -134,7 +134,7 @@ |
| 134 | </el-form-item> | 134 | </el-form-item> |
| 135 | </el-col> | 135 | </el-col> |
| 136 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 136 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 137 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 137 | <el-form-item label="是否分别持证:"> |
| 138 | <el-radio-group v-model="ruleForm.sffbcz"> | 138 | <el-radio-group v-model="ruleForm.sffbcz"> |
| 139 | <el-radio label="1">是</el-radio> | 139 | <el-radio label="1">是</el-radio> |
| 140 | <el-radio label="0">否</el-radio> | 140 | <el-radio label="0">否</el-radio> |
| ... | @@ -142,7 +142,7 @@ | ... | @@ -142,7 +142,7 @@ |
| 142 | </el-form-item> | 142 | </el-form-item> |
| 143 | </el-col> | 143 | </el-col> |
| 144 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 144 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 145 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 145 | <el-form-item label="持证人:"> |
| 146 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 146 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 147 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 147 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 148 | </el-option> | 148 | </el-option> |
| ... | @@ -157,7 +157,7 @@ | ... | @@ -157,7 +157,7 @@ |
| 157 | </div> | 157 | </div> |
| 158 | <el-row :gutter="10"> | 158 | <el-row :gutter="10"> |
| 159 | <el-col> | 159 | <el-col> |
| 160 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 160 | <el-form-item label="登记原因:" prop="djyy"> |
| 161 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" v-model="ruleForm.djyy"> | 161 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" v-model="ruleForm.djyy"> |
| 162 | </el-input> | 162 | </el-input> |
| 163 | </el-form-item> | 163 | </el-form-item> |
| ... | @@ -165,7 +165,7 @@ | ... | @@ -165,7 +165,7 @@ |
| 165 | </el-row> | 165 | </el-row> |
| 166 | </div> | 166 | </div> |
| 167 | <el-row class="btn" v-if="!$route.query.viewtype"> | 167 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 168 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 168 | <el-form-item> |
| 169 | <el-button type="primary" @click="onSubmit">保存</el-button> | 169 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 170 | </el-form-item> | 170 | </el-form-item> |
| 171 | </el-row> | 171 | </el-row> | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" class="loadingtext" ref="ruleForm" :label-position="flag ? 'top' : ''" | 4 | <el-form :model="ruleForm" :rules="rules" class="loadingtext" ref="ruleForm" :label-position="flag ? 'top' : ''" |
| 5 | :inline="flag" label-width="120px"> | 5 | :inline="flag" label-width="120px"> |
| 6 | <div class="slxx_con" v-if="isShow"> | 6 | <div class="slxx_con" v-if="isShow" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -48,43 +48,44 @@ | ... | @@ -48,43 +48,44 @@ |
| 48 | </div> | 48 | </div> |
| 49 | <el-row :gutter="10"> | 49 | <el-row :gutter="10"> |
| 50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
| 51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:"> | 51 | <el-form-item label="宗地代码:"> |
| 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> | 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> |
| 53 | </el-form-item> | 53 | </el-form-item> |
| 54 | </el-col> | 54 | </el-col> |
| 55 | <el-col :span="8"> | 55 | <el-col :span="8"> |
| 56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 56 | <el-form-item label="不动产单元号:"> |
| 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> | 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> |
| 58 | </el-form-item> | 58 | </el-form-item> |
| 59 | </el-col> | 59 | </el-col> |
| 60 | <el-col :span="8"> | 60 | <el-col :span="8"> |
| 61 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | 61 | <el-form-item label="权利性质:"> |
| 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
| 63 | </el-form-item> | 63 | </el-form-item> |
| 64 | </el-col> | 64 | </el-col> |
| 65 | </el-row> | 65 | </el-row> |
| 66 | <el-row :gutter="10"> | 66 | <el-row :gutter="10"> |
| 67 | <el-col :span="8"> | 67 | <el-col :span="8"> |
| 68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | 68 | <el-form-item label="宗地面积:"> |
| 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
| 70 | </el-form-item> | 70 | </el-form-item> |
| 71 | </el-col> | 71 | </el-col> |
| 72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
| 73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 73 | <el-form-item label="土地用途:"> |
| 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></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 :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | 78 | <el-form-item label="权利设定方式:"> |
| 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
| 80 | </el-form-item> | 80 | </el-form-item> |
| 81 | </el-col> | 81 | </el-col> |
| 82 | </el-row> | 82 | </el-row> |
| 83 | <el-row :gutter="10"> | 83 | <el-row :gutter="10"> |
| 84 | <el-col :span="8"> | 84 | <el-col :span="8"> |
| 85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="取得价格:"> | 85 | <el-form-item label="取得价格:"> |
| 86 | <div style="display:flex"> | 86 | <div style="display:flex"> |
| 87 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | 87 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" |
| 88 | oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | ||
| 88 | <el-select v-model="ruleForm.jsydsyq.jedw"> | 89 | <el-select v-model="ruleForm.jsydsyq.jedw"> |
| 89 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 90 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 90 | </el-option> | 91 | </el-option> |
| ... | @@ -94,27 +95,27 @@ | ... | @@ -94,27 +95,27 @@ |
| 94 | </el-col> | 95 | </el-col> |
| 95 | 96 | ||
| 96 | <el-col :span="16"> | 97 | <el-col :span="16"> |
| 97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 98 | <el-form-item label="坐落:"> |
| 98 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> | 99 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> |
| 99 | </el-form-item> | 100 | </el-form-item> |
| 100 | </el-col> | 101 | </el-col> |
| 101 | </el-row> | 102 | </el-row> |
| 102 | <el-row :gutter="10"> | 103 | <el-row :gutter="10"> |
| 103 | <el-col :span="8"> | 104 | <el-col :span="8"> |
| 104 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用期限:"> | 105 | <el-form-item label="使用期限:"> |
| 105 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> | 106 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> |
| 106 | </el-form-item> | 107 | </el-form-item> |
| 107 | </el-col> | 108 | </el-col> |
| 108 | 109 | ||
| 109 | <el-col :span="16"> | 110 | <el-col :span="16"> |
| 110 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用权起止时间:"> | 111 | <el-form-item label="使用权起止时间:"> |
| 111 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> | 112 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> |
| 112 | </el-form-item> | 113 | </el-form-item> |
| 113 | </el-col> | 114 | </el-col> |
| 114 | </el-row> | 115 | </el-row> |
| 115 | <el-row :gutter="10"> | 116 | <el-row :gutter="10"> |
| 116 | <el-col> | 117 | <el-col> |
| 117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 118 | <el-form-item label="附记:" prop="fj"> |
| 118 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 119 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
| 119 | </el-form-item> | 120 | </el-form-item> |
| 120 | </el-col> | 121 | </el-col> |
| ... | @@ -125,7 +126,7 @@ | ... | @@ -125,7 +126,7 @@ |
| 125 | </div> | 126 | </div> |
| 126 | <el-row :gutter="10"> | 127 | <el-row :gutter="10"> |
| 127 | <el-col :span="14"> | 128 | <el-col :span="14"> |
| 128 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 129 | <el-form-item label="共有方式:"> |
| 129 | <el-radio-group :disabled="$route.query.viewtype == 0" v-model="ruleForm.slywxx.gyfs"> | 130 | <el-radio-group :disabled="$route.query.viewtype == 0" v-model="ruleForm.slywxx.gyfs"> |
| 130 | <el-radio label="0">单独所有</el-radio> | 131 | <el-radio label="0">单独所有</el-radio> |
| 131 | <el-radio label="1">共同共有</el-radio> | 132 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -135,7 +136,7 @@ | ... | @@ -135,7 +136,7 @@ |
| 135 | </el-form-item> | 136 | </el-form-item> |
| 136 | </el-col> | 137 | </el-col> |
| 137 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 138 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 138 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 139 | <el-form-item label="是否分别持证:"> |
| 139 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 140 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 140 | <el-radio label="1">是</el-radio> | 141 | <el-radio label="1">是</el-radio> |
| 141 | <el-radio label="0">否</el-radio> | 142 | <el-radio label="0">否</el-radio> |
| ... | @@ -143,7 +144,7 @@ | ... | @@ -143,7 +144,7 @@ |
| 143 | </el-form-item> | 144 | </el-form-item> |
| 144 | </el-col> | 145 | </el-col> |
| 145 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 146 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 146 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 147 | <el-form-item label="持证人:"> |
| 147 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 148 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 148 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 149 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 149 | </el-option> | 150 | </el-option> |
| ... | @@ -170,7 +171,7 @@ | ... | @@ -170,7 +171,7 @@ |
| 170 | </div> | 171 | </div> |
| 171 | <el-row :gutter="10"> | 172 | <el-row :gutter="10"> |
| 172 | <el-col> | 173 | <el-col> |
| 173 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 174 | <el-form-item label="登记原因:" prop="djyy"> |
| 174 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 175 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 175 | v-model="ruleForm.jsydsyq.djyy"> | 176 | v-model="ruleForm.jsydsyq.djyy"> |
| 176 | </el-input> | 177 | </el-input> |
| ... | @@ -179,7 +180,7 @@ | ... | @@ -179,7 +180,7 @@ |
| 179 | </el-row> | 180 | </el-row> |
| 180 | </div> | 181 | </div> |
| 181 | <el-row class="btn" v-if="!$route.query.viewtype"> | 182 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 182 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 183 | <el-form-item> |
| 183 | <el-button type="primary" @click="onSubmit">保存</el-button> | 184 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 184 | </el-form-item> | 185 | </el-form-item> |
| 185 | </el-row> | 186 | </el-row> |
| ... | @@ -231,8 +232,8 @@ export default { | ... | @@ -231,8 +232,8 @@ export default { |
| 231 | this.ruleForm.ywrList && (this.ruleForm.ywrList = _.cloneDeep(val)) | 232 | this.ruleForm.ywrList && (this.ruleForm.ywrList = _.cloneDeep(val)) |
| 232 | }, | 233 | }, |
| 233 | onSubmit () { | 234 | onSubmit () { |
| 234 | if(this.ruleForm.slywxx.gyfs=="0"){ | 235 | if (this.ruleForm.slywxx.gyfs == "0") { |
| 235 | if(this.ruleForm.qlrList.length>1){ | 236 | if (this.ruleForm.qlrList.length > 1) { |
| 236 | this.$message({ | 237 | this.$message({ |
| 237 | showClose: true, | 238 | showClose: true, |
| 238 | message: "共有方式:单独所有,权利人只能是一个人", | 239 | message: "共有方式:单独所有,权利人只能是一个人", | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="120px"> | 5 | label-width="120px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -50,43 +50,44 @@ | ... | @@ -50,43 +50,44 @@ |
| 50 | </div> | 50 | </div> |
| 51 | <el-row :gutter="10"> | 51 | <el-row :gutter="10"> |
| 52 | <el-col :span="8"> | 52 | <el-col :span="8"> |
| 53 | <el-form-item :class="flag ? 'marginBot0' : ''" label="原不动产权证号:"> | 53 | <el-form-item label="原不动产权证号:"> |
| 54 | <el-input disabled v-model="ruleForm.slywxx.ybdcqzsh"></el-input> | 54 | <el-input disabled v-model="ruleForm.slywxx.ybdcqzsh"></el-input> |
| 55 | </el-form-item> | 55 | </el-form-item> |
| 56 | </el-col> | 56 | </el-col> |
| 57 | <el-col :span="8"> | 57 | <el-col :span="8"> |
| 58 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 58 | <el-form-item label="不动产单元号:"> |
| 59 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> | 59 | <el-input disabled v-model="ruleForm.qlxx.bdcdyh"></el-input> |
| 60 | </el-form-item> | 60 | </el-form-item> |
| 61 | </el-col> | 61 | </el-col> |
| 62 | <el-col :span="8"> | 62 | <el-col :span="8"> |
| 63 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | 63 | <el-form-item label="权利性质:"> |
| 64 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 64 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
| 65 | </el-form-item> | 65 | </el-form-item> |
| 66 | </el-col> | 66 | </el-col> |
| 67 | </el-row> | 67 | </el-row> |
| 68 | <el-row :gutter="10"> | 68 | <el-row :gutter="10"> |
| 69 | <el-col :span="8"> | 69 | <el-col :span="8"> |
| 70 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | 70 | <el-form-item label="宗地面积:"> |
| 71 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 71 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
| 72 | </el-form-item> | 72 | </el-form-item> |
| 73 | </el-col> | 73 | </el-col> |
| 74 | <el-col :span="8"> | 74 | <el-col :span="8"> |
| 75 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 75 | <el-form-item label="土地用途:"> |
| 76 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> | 76 | <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> |
| 77 | </el-form-item> | 77 | </el-form-item> |
| 78 | </el-col> | 78 | </el-col> |
| 79 | <el-col :span="8"> | 79 | <el-col :span="8"> |
| 80 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | 80 | <el-form-item label="权利设定方式:"> |
| 81 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | 81 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
| 82 | </el-form-item> | 82 | </el-form-item> |
| 83 | </el-col> | 83 | </el-col> |
| 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 :class="flag ? 'marginBot0' : ''" label="取得价格:"> | 87 | <el-form-item label="取得价格:"> |
| 88 | <div style="display:flex"> | 88 | <div style="display:flex"> |
| 89 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')" disabled></el-input> | 89 | <el-input v-model="ruleForm.jsydsyq.qdjg" style="width:500%" oninput="value=value.replace(/[^\d.]/g,'')" |
| 90 | disabled></el-input> | ||
| 90 | <el-select v-model="ruleForm.jsydsyq.jedw" disabled> | 91 | <el-select v-model="ruleForm.jsydsyq.jedw" disabled> |
| 91 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 92 | <el-option v-for="item in dictData['A57']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 92 | </el-option> | 93 | </el-option> |
| ... | @@ -96,27 +97,27 @@ | ... | @@ -96,27 +97,27 @@ |
| 96 | </el-col> | 97 | </el-col> |
| 97 | 98 | ||
| 98 | <el-col :span="16"> | 99 | <el-col :span="16"> |
| 99 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 100 | <el-form-item label="坐落:"> |
| 100 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> | 101 | <el-input disabled v-model="ruleForm.qlxx.zl"></el-input> |
| 101 | </el-form-item> | 102 | </el-form-item> |
| 102 | </el-col> | 103 | </el-col> |
| 103 | </el-row> | 104 | </el-row> |
| 104 | <el-row :gutter="10"> | 105 | <el-row :gutter="10"> |
| 105 | <el-col :span="8"> | 106 | <el-col :span="8"> |
| 106 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用期限:"> | 107 | <el-form-item label="使用期限:"> |
| 107 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> | 108 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> |
| 108 | </el-form-item> | 109 | </el-form-item> |
| 109 | </el-col> | 110 | </el-col> |
| 110 | 111 | ||
| 111 | <el-col :span="16"> | 112 | <el-col :span="16"> |
| 112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="使用权起止时间:"> | 113 | <el-form-item label="使用权起止时间:"> |
| 113 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> | 114 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> |
| 114 | </el-form-item> | 115 | </el-form-item> |
| 115 | </el-col> | 116 | </el-col> |
| 116 | </el-row> | 117 | </el-row> |
| 117 | <el-row :gutter="10"> | 118 | <el-row :gutter="10"> |
| 118 | <el-col> | 119 | <el-col> |
| 119 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 120 | <el-form-item label="附记:" prop="fj"> |
| 120 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 121 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
| 121 | </el-form-item> | 122 | </el-form-item> |
| 122 | </el-col> | 123 | </el-col> |
| ... | @@ -130,7 +131,7 @@ | ... | @@ -130,7 +131,7 @@ |
| 130 | class="el-icon-edit-outline">权利人信息</i></el-divider> | 131 | class="el-icon-edit-outline">权利人信息</i></el-divider> |
| 131 | <el-row :gutter="10"> | 132 | <el-row :gutter="10"> |
| 132 | <el-col :span="14"> | 133 | <el-col :span="14"> |
| 133 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 134 | <el-form-item label="共有方式:"> |
| 134 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 135 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
| 135 | <el-radio label="0">单独所有</el-radio> | 136 | <el-radio label="0">单独所有</el-radio> |
| 136 | <el-radio label="1">共同共有</el-radio> | 137 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -140,7 +141,7 @@ | ... | @@ -140,7 +141,7 @@ |
| 140 | </el-form-item> | 141 | </el-form-item> |
| 141 | </el-col> | 142 | </el-col> |
| 142 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 143 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 143 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 144 | <el-form-item label="是否分别持证:"> |
| 144 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 145 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 145 | <el-radio label="1">是</el-radio> | 146 | <el-radio label="1">是</el-radio> |
| 146 | <el-radio label="0">否</el-radio> | 147 | <el-radio label="0">否</el-radio> |
| ... | @@ -148,7 +149,7 @@ | ... | @@ -148,7 +149,7 @@ |
| 148 | </el-form-item> | 149 | </el-form-item> |
| 149 | </el-col> | 150 | </el-col> |
| 150 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 151 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 151 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 152 | <el-form-item label="持证人:"> |
| 152 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 153 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 153 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 154 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 154 | </el-option> | 155 | </el-option> |
| ... | @@ -164,7 +165,7 @@ | ... | @@ -164,7 +165,7 @@ |
| 164 | </div> | 165 | </div> |
| 165 | <el-row :gutter="10"> | 166 | <el-row :gutter="10"> |
| 166 | <el-col> | 167 | <el-col> |
| 167 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 168 | <el-form-item label="登记原因:" prop="djyy"> |
| 168 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 169 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 169 | v-model="ruleForm.jsydsyq.djyy"> | 170 | v-model="ruleForm.jsydsyq.djyy"> |
| 170 | </el-input> | 171 | </el-input> |
| ... | @@ -173,7 +174,7 @@ | ... | @@ -173,7 +174,7 @@ |
| 173 | </el-row> | 174 | </el-row> |
| 174 | </div> | 175 | </div> |
| 175 | <el-row class="btn" v-if="!$route.query.viewtype"> | 176 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 176 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 177 | <el-form-item> |
| 177 | <el-button type="primary" @click="onSubmit">保存</el-button> | 178 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 178 | </el-form-item> | 179 | </el-form-item> |
| 179 | </el-row> | 180 | </el-row> | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="120px"> | 5 | label-width="120px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -48,58 +48,58 @@ | ... | @@ -48,58 +48,58 @@ |
| 48 | </div> | 48 | </div> |
| 49 | <el-row :gutter="10"> | 49 | <el-row :gutter="10"> |
| 50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
| 51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:"> | 51 | <el-form-item label="宗地代码:"> |
| 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> | 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> |
| 53 | </el-form-item> | 53 | </el-form-item> |
| 54 | </el-col> | 54 | </el-col> |
| 55 | <el-col :span="8"> | 55 | <el-col :span="8"> |
| 56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 56 | <el-form-item label="不动产单元号:"> |
| 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> | 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> |
| 58 | </el-form-item> | 58 | </el-form-item> |
| 59 | </el-col> | 59 | </el-col> |
| 60 | <el-col :span="8"> | 60 | <el-col :span="8"> |
| 61 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | 61 | <el-form-item label="权利性质:"> |
| 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
| 63 | </el-form-item> | 63 | </el-form-item> |
| 64 | </el-col> | 64 | </el-col> |
| 65 | </el-row> | 65 | </el-row> |
| 66 | <el-row :gutter="10"> | 66 | <el-row :gutter="10"> |
| 67 | <el-col :span="8"> | 67 | <el-col :span="8"> |
| 68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | 68 | <el-form-item label="宗地面积:"> |
| 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
| 70 | </el-form-item> | 70 | </el-form-item> |
| 71 | </el-col> | 71 | </el-col> |
| 72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
| 73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 73 | <el-form-item label="土地用途:"> |
| 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></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 :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | 78 | <el-form-item label="权利设定方式:"> |
| 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
| 80 | </el-form-item> | 80 | </el-form-item> |
| 81 | </el-col> | 81 | </el-col> |
| 82 | </el-row> | 82 | </el-row> |
| 83 | <el-row :gutter="10"> | 83 | <el-row :gutter="10"> |
| 84 | <el-col :span="16"> | 84 | <el-col :span="16"> |
| 85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 85 | <el-form-item label="坐落:"> |
| 86 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> | 86 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> |
| 87 | </el-form-item> | 87 | </el-form-item> |
| 88 | </el-col> | 88 | </el-col> |
| 89 | </el-row> | 89 | </el-row> |
| 90 | <el-row :gutter="10"> | 90 | <el-row :gutter="10"> |
| 91 | <el-col :span="8"> | 91 | <el-col :span="8"> |
| 92 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发包方名称:"> | 92 | <el-form-item label="发包方名称:"> |
| 93 | <el-input v-model="ruleForm.nydsyq.fbfmc"></el-input> | 93 | <el-input v-model="ruleForm.nydsyq.fbfmc"></el-input> |
| 94 | </el-form-item> | 94 | </el-form-item> |
| 95 | </el-col> | 95 | </el-col> |
| 96 | <el-col :span="8"> | 96 | <el-col :span="8"> |
| 97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发包方代码:"> | 97 | <el-form-item label="发包方代码:"> |
| 98 | <el-input v-model="ruleForm.nydsyq.fbfdm"></el-input> | 98 | <el-input v-model="ruleForm.nydsyq.fbfdm"></el-input> |
| 99 | </el-form-item> | 99 | </el-form-item> |
| 100 | </el-col> | 100 | </el-col> |
| 101 | <el-col :span="8"> | 101 | <el-col :span="8"> |
| 102 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地所有权性质:"> | 102 | <el-form-item label="土地所有权性质:"> |
| 103 | <el-select v-model="ruleForm.nydsyq.tdsyqxzmc" class="width100" filterable clearable> | 103 | <el-select v-model="ruleForm.nydsyq.tdsyqxzmc" class="width100" filterable clearable> |
| 104 | <el-option v-for="item in dictData['A45']" :key="item.dname" :label="item.dname" :value="item.dname"> | 104 | <el-option v-for="item in dictData['A45']" :key="item.dname" :label="item.dname" :value="item.dname"> |
| 105 | </el-option> | 105 | </el-option> |
| ... | @@ -109,19 +109,19 @@ | ... | @@ -109,19 +109,19 @@ |
| 109 | </el-row> | 109 | </el-row> |
| 110 | <el-row :gutter="10"> | 110 | <el-row :gutter="10"> |
| 111 | <el-col :span="8"> | 111 | <el-col :span="8"> |
| 112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="承包期限:"> | 112 | <el-form-item label="承包期限:"> |
| 113 | <el-input disabled v-model="ruleForm.nydsyq.cbqx"></el-input> | 113 | <el-input disabled v-model="ruleForm.nydsyq.cbqx"></el-input> |
| 114 | </el-form-item> | 114 | </el-form-item> |
| 115 | </el-col> | 115 | </el-col> |
| 116 | <el-col :span="16"> | 116 | <el-col :span="16"> |
| 117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="承包起止时间:"> | 117 | <el-form-item label="承包起止时间:"> |
| 118 | <el-input disabled v-model="ruleForm.nydsyq.cbqzsj"></el-input> | 118 | <el-input disabled v-model="ruleForm.nydsyq.cbqzsj"></el-input> |
| 119 | </el-form-item> | 119 | </el-form-item> |
| 120 | </el-col> | 120 | </el-col> |
| 121 | </el-row> | 121 | </el-row> |
| 122 | <el-row :gutter="10"> | 122 | <el-row :gutter="10"> |
| 123 | <el-col :span="8"> | 123 | <el-col :span="8"> |
| 124 | <el-form-item :class="flag ? 'marginBot0' : ''" label="水域滩涂类型:"> | 124 | <el-form-item label="水域滩涂类型:"> |
| 125 | <el-select v-model="ruleForm.nydsyq.syttlx" class="width100" filterable clearable @change="changeSyttlx"> | 125 | <el-select v-model="ruleForm.nydsyq.syttlx" class="width100" filterable clearable @change="changeSyttlx"> |
| 126 | <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 126 | <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 127 | </el-option> | 127 | </el-option> |
| ... | @@ -129,7 +129,7 @@ | ... | @@ -129,7 +129,7 @@ |
| 129 | </el-form-item> | 129 | </el-form-item> |
| 130 | </el-col> | 130 | </el-col> |
| 131 | <el-col :span="8"> | 131 | <el-col :span="8"> |
| 132 | <el-form-item :class="flag ? 'marginBot0' : ''" label="养殖业方式:"> | 132 | <el-form-item label="养殖业方式:"> |
| 133 | <el-select v-model="ruleForm.nydsyq.yzyfs" class="width100" filterable clearable @change="changeYzyfs"> | 133 | <el-select v-model="ruleForm.nydsyq.yzyfs" class="width100" filterable clearable @change="changeYzyfs"> |
| 134 | <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 134 | <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 135 | </el-option> | 135 | </el-option> |
| ... | @@ -137,19 +137,19 @@ | ... | @@ -137,19 +137,19 @@ |
| 137 | </el-form-item> | 137 | </el-form-item> |
| 138 | </el-col> | 138 | </el-col> |
| 139 | <el-col :span="8"> | 139 | <el-col :span="8"> |
| 140 | <el-form-item :class="flag ? 'marginBot0' : ''" label="草原质量:"> | 140 | <el-form-item label="草原质量:"> |
| 141 | <el-input v-model="ruleForm.nydsyq.cyzl"></el-input> | 141 | <el-input v-model="ruleForm.nydsyq.cyzl"></el-input> |
| 142 | </el-form-item> | 142 | </el-form-item> |
| 143 | </el-col> | 143 | </el-col> |
| 144 | </el-row> | 144 | </el-row> |
| 145 | <el-row :gutter="10"> | 145 | <el-row :gutter="10"> |
| 146 | <el-col :span="8"> | 146 | <el-col :span="8"> |
| 147 | <el-form-item :class="flag ? 'marginBot0' : ''" label="适宜载畜量:"> | 147 | <el-form-item label="适宜载畜量:"> |
| 148 | <el-input v-model="ruleForm.nydsyq.syzcl" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | 148 | <el-input v-model="ruleForm.nydsyq.syzcl" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> |
| 149 | </el-form-item> | 149 | </el-form-item> |
| 150 | </el-col> | 150 | </el-col> |
| 151 | <el-col :span="8"> | 151 | <el-col :span="8"> |
| 152 | <el-form-item :class="flag ? 'marginBot0' : ''" label="用地用海分类:"> | 152 | <el-form-item label="用地用海分类:"> |
| 153 | <el-select v-model="ruleForm.nydsyq.ydyhfl" class="width100" filterable clearable @change="changeYdyhfl"> | 153 | <el-select v-model="ruleForm.nydsyq.ydyhfl" class="width100" filterable clearable @change="changeYdyhfl"> |
| 154 | <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 154 | <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 155 | </el-option> | 155 | </el-option> |
| ... | @@ -157,14 +157,14 @@ | ... | @@ -157,14 +157,14 @@ |
| 157 | </el-form-item> | 157 | </el-form-item> |
| 158 | </el-col> | 158 | </el-col> |
| 159 | <el-col :span="8"> | 159 | <el-col :span="8"> |
| 160 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地承包合同:"> | 160 | <el-form-item label="土地承包合同:"> |
| 161 | <el-input v-model="ruleForm.nydsyq.tdcbht"></el-input> | 161 | <el-input v-model="ruleForm.nydsyq.tdcbht"></el-input> |
| 162 | </el-form-item> | 162 | </el-form-item> |
| 163 | </el-col> | 163 | </el-col> |
| 164 | </el-row> | 164 | </el-row> |
| 165 | <el-row :gutter="10"> | 165 | <el-row :gutter="10"> |
| 166 | <el-col> | 166 | <el-col> |
| 167 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 167 | <el-form-item label="附记:" prop="fj"> |
| 168 | <el-input type="textarea" v-model="ruleForm.nydsyq.fj" :disabled="$route.query.viewtype"></el-input> | 168 | <el-input type="textarea" v-model="ruleForm.nydsyq.fj" :disabled="$route.query.viewtype"></el-input> |
| 169 | </el-form-item> | 169 | </el-form-item> |
| 170 | </el-col> | 170 | </el-col> |
| ... | @@ -175,7 +175,7 @@ | ... | @@ -175,7 +175,7 @@ |
| 175 | </div> | 175 | </div> |
| 176 | <el-row :gutter="10"> | 176 | <el-row :gutter="10"> |
| 177 | <el-col :span="14"> | 177 | <el-col :span="14"> |
| 178 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 178 | <el-form-item label="共有方式:"> |
| 179 | <el-radio-group v-model="ruleForm.slywxx.gyfs" :disabled="$route.query.viewtype"> | 179 | <el-radio-group v-model="ruleForm.slywxx.gyfs" :disabled="$route.query.viewtype"> |
| 180 | <el-radio label="0">单独所有</el-radio> | 180 | <el-radio label="0">单独所有</el-radio> |
| 181 | <el-radio label="1">共同共有</el-radio> | 181 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -185,7 +185,7 @@ | ... | @@ -185,7 +185,7 @@ |
| 185 | </el-form-item> | 185 | </el-form-item> |
| 186 | </el-col> | 186 | </el-col> |
| 187 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 187 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 188 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 188 | <el-form-item label="是否分别持证:"> |
| 189 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 189 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 190 | <el-radio label="1">是</el-radio> | 190 | <el-radio label="1">是</el-radio> |
| 191 | <el-radio label="0">否</el-radio> | 191 | <el-radio label="0">否</el-radio> |
| ... | @@ -193,7 +193,7 @@ | ... | @@ -193,7 +193,7 @@ |
| 193 | </el-form-item> | 193 | </el-form-item> |
| 194 | </el-col> | 194 | </el-col> |
| 195 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 195 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 196 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 196 | <el-form-item label="持证人:"> |
| 197 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 197 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 198 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 198 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 199 | </el-option> | 199 | </el-option> |
| ... | @@ -215,7 +215,7 @@ | ... | @@ -215,7 +215,7 @@ |
| 215 | </div> | 215 | </div> |
| 216 | <el-row :gutter="10"> | 216 | <el-row :gutter="10"> |
| 217 | <el-col> | 217 | <el-col> |
| 218 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 218 | <el-form-item label="登记原因:" prop="djyy"> |
| 219 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype" | 219 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype" |
| 220 | v-model="ruleForm.nydsyq.djyy"> | 220 | v-model="ruleForm.nydsyq.djyy"> |
| 221 | </el-input> | 221 | </el-input> |
| ... | @@ -224,7 +224,7 @@ | ... | @@ -224,7 +224,7 @@ |
| 224 | </el-row> | 224 | </el-row> |
| 225 | </div> | 225 | </div> |
| 226 | <el-row class="btn" v-if="!$route.query.viewtype && ableOperation"> | 226 | <el-row class="btn" v-if="!$route.query.viewtype && ableOperation"> |
| 227 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 227 | <el-form-item> |
| 228 | <el-button type="primary" @click="onSubmit">保存</el-button> | 228 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 229 | </el-form-item> | 229 | </el-form-item> |
| 230 | </el-row> | 230 | </el-row> | ... | ... |
| ... | @@ -3,41 +3,41 @@ | ... | @@ -3,41 +3,41 @@ |
| 3 | <div class="slxx"> | 3 | <div class="slxx"> |
| 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | 4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" |
| 5 | label-width="120px"> | 5 | label-width="120px"> |
| 6 | <div class="slxx_con"> | 6 | <div class="slxx_con" :class="flag ? 'formMarginBot0' : ''"> |
| 7 | <div class="slxx_title title-block"> | 7 | <div class="slxx_title title-block"> |
| 8 | 受理信息 | 8 | 受理信息 |
| 9 | <div class="triangle"></div> | 9 | <div class="triangle"></div> |
| 10 | </div> | 10 | </div> |
| 11 | <el-row :gutter="10"> | 11 | <el-row :gutter="10"> |
| 12 | <el-col :span="8"> | 12 | <el-col :span="8"> |
| 13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | 13 | <el-form-item label="业务号:"> |
| 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | 14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> |
| 15 | </el-form-item> | 15 | </el-form-item> |
| 16 | </el-col> | 16 | </el-col> |
| 17 | <el-col :span="8"> | 17 | <el-col :span="8"> |
| 18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | 18 | <el-form-item label="受理人员:"> |
| 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | 19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> |
| 20 | </el-form-item> | 20 | </el-form-item> |
| 21 | </el-col> | 21 | </el-col> |
| 22 | <el-col :span="8"> | 22 | <el-col :span="8"> |
| 23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | 23 | <el-form-item label="受理时间:"> |
| 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | 24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | </el-row> | 27 | </el-row> |
| 28 | <el-row :gutter="10"> | 28 | <el-row :gutter="10"> |
| 29 | <el-col :span="8"> | 29 | <el-col :span="8"> |
| 30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | 30 | <el-form-item label="权利类型:"> |
| 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | 31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> |
| 32 | </el-form-item> | 32 | </el-form-item> |
| 33 | </el-col> | 33 | </el-col> |
| 34 | <el-col :span="8"> | 34 | <el-col :span="8"> |
| 35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | 35 | <el-form-item label="登记类型:"> |
| 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | 36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> |
| 37 | </el-form-item> | 37 | </el-form-item> |
| 38 | </el-col> | 38 | </el-col> |
| 39 | <el-col :span="8"> | 39 | <el-col :span="8"> |
| 40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | 40 | <el-form-item label="登记情形:"> |
| 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | 41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> |
| 42 | </el-form-item> | 42 | </el-form-item> |
| 43 | </el-col> | 43 | </el-col> |
| ... | @@ -48,58 +48,58 @@ | ... | @@ -48,58 +48,58 @@ |
| 48 | </div> | 48 | </div> |
| 49 | <el-row :gutter="10"> | 49 | <el-row :gutter="10"> |
| 50 | <el-col :span="8"> | 50 | <el-col :span="8"> |
| 51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:"> | 51 | <el-form-item label="宗地代码:"> |
| 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> | 52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> |
| 53 | </el-form-item> | 53 | </el-form-item> |
| 54 | </el-col> | 54 | </el-col> |
| 55 | <el-col :span="8"> | 55 | <el-col :span="8"> |
| 56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | 56 | <el-form-item label="不动产单元号:"> |
| 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> | 57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> |
| 58 | </el-form-item> | 58 | </el-form-item> |
| 59 | </el-col> | 59 | </el-col> |
| 60 | <el-col :span="8"> | 60 | <el-col :span="8"> |
| 61 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | 61 | <el-form-item label="权利性质:"> |
| 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | 62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> |
| 63 | </el-form-item> | 63 | </el-form-item> |
| 64 | </el-col> | 64 | </el-col> |
| 65 | </el-row> | 65 | </el-row> |
| 66 | <el-row :gutter="10"> | 66 | <el-row :gutter="10"> |
| 67 | <el-col :span="8"> | 67 | <el-col :span="8"> |
| 68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | 68 | <el-form-item label="宗地面积:"> |
| 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
| 70 | </el-form-item> | 70 | </el-form-item> |
| 71 | </el-col> | 71 | </el-col> |
| 72 | <el-col :span="8"> | 72 | <el-col :span="8"> |
| 73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | 73 | <el-form-item label="土地用途:"> |
| 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | 74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></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 :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | 78 | <el-form-item label="权利设定方式:"> |
| 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | 79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
| 80 | </el-form-item> | 80 | </el-form-item> |
| 81 | </el-col> | 81 | </el-col> |
| 82 | </el-row> | 82 | </el-row> |
| 83 | <el-row :gutter="10"> | 83 | <el-row :gutter="10"> |
| 84 | <el-col :span="16"> | 84 | <el-col :span="16"> |
| 85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | 85 | <el-form-item label="坐落:"> |
| 86 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> | 86 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> |
| 87 | </el-form-item> | 87 | </el-form-item> |
| 88 | </el-col> | 88 | </el-col> |
| 89 | </el-row> | 89 | </el-row> |
| 90 | <el-row :gutter="10"> | 90 | <el-row :gutter="10"> |
| 91 | <el-col :span="8"> | 91 | <el-col :span="8"> |
| 92 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发包方名称:"> | 92 | <el-form-item label="发包方名称:"> |
| 93 | <el-input v-model="ruleForm.nydsyq.fbfmc"></el-input> | 93 | <el-input v-model="ruleForm.nydsyq.fbfmc"></el-input> |
| 94 | </el-form-item> | 94 | </el-form-item> |
| 95 | </el-col> | 95 | </el-col> |
| 96 | <el-col :span="8"> | 96 | <el-col :span="8"> |
| 97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发包方代码:"> | 97 | <el-form-item label="发包方代码:"> |
| 98 | <el-input v-model="ruleForm.nydsyq.fbfdm"></el-input> | 98 | <el-input v-model="ruleForm.nydsyq.fbfdm"></el-input> |
| 99 | </el-form-item> | 99 | </el-form-item> |
| 100 | </el-col> | 100 | </el-col> |
| 101 | <el-col :span="8"> | 101 | <el-col :span="8"> |
| 102 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地所有权性质:"> | 102 | <el-form-item label="土地所有权性质:"> |
| 103 | <el-select v-model="ruleForm.nydsyq.tdsyqxzmc" class="width100" filterable clearable> | 103 | <el-select v-model="ruleForm.nydsyq.tdsyqxzmc" class="width100" filterable clearable> |
| 104 | <el-option v-for="item in dictData['A45']" :key="item.dname" :label="item.dname" :value="item.dname"> | 104 | <el-option v-for="item in dictData['A45']" :key="item.dname" :label="item.dname" :value="item.dname"> |
| 105 | </el-option> | 105 | </el-option> |
| ... | @@ -109,19 +109,19 @@ | ... | @@ -109,19 +109,19 @@ |
| 109 | </el-row> | 109 | </el-row> |
| 110 | <el-row :gutter="10"> | 110 | <el-row :gutter="10"> |
| 111 | <el-col :span="8"> | 111 | <el-col :span="8"> |
| 112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="承包期限:"> | 112 | <el-form-item label="承包期限:"> |
| 113 | <el-input disabled v-model="ruleForm.nydsyq.cbqx"></el-input> | 113 | <el-input disabled v-model="ruleForm.nydsyq.cbqx"></el-input> |
| 114 | </el-form-item> | 114 | </el-form-item> |
| 115 | </el-col> | 115 | </el-col> |
| 116 | <el-col :span="16"> | 116 | <el-col :span="16"> |
| 117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="承包起止时间:"> | 117 | <el-form-item label="承包起止时间:"> |
| 118 | <el-input disabled v-model="ruleForm.nydsyq.cbqzsj"></el-input> | 118 | <el-input disabled v-model="ruleForm.nydsyq.cbqzsj"></el-input> |
| 119 | </el-form-item> | 119 | </el-form-item> |
| 120 | </el-col> | 120 | </el-col> |
| 121 | </el-row> | 121 | </el-row> |
| 122 | <el-row :gutter="10"> | 122 | <el-row :gutter="10"> |
| 123 | <el-col :span="8"> | 123 | <el-col :span="8"> |
| 124 | <el-form-item :class="flag ? 'marginBot0' : ''" label="水域滩涂类型:"> | 124 | <el-form-item label="水域滩涂类型:"> |
| 125 | <el-select v-model="ruleForm.nydsyq.syttlx" class="width100" filterable clearable @change="changeSyttlx"> | 125 | <el-select v-model="ruleForm.nydsyq.syttlx" class="width100" filterable clearable @change="changeSyttlx"> |
| 126 | <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 126 | <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 127 | </el-option> | 127 | </el-option> |
| ... | @@ -129,7 +129,7 @@ | ... | @@ -129,7 +129,7 @@ |
| 129 | </el-form-item> | 129 | </el-form-item> |
| 130 | </el-col> | 130 | </el-col> |
| 131 | <el-col :span="8"> | 131 | <el-col :span="8"> |
| 132 | <el-form-item :class="flag ? 'marginBot0' : ''" label="养殖业方式:"> | 132 | <el-form-item label="养殖业方式:"> |
| 133 | <el-select v-model="ruleForm.nydsyq.yzyfs" class="width100" filterable clearable @change="changeYzyfs"> | 133 | <el-select v-model="ruleForm.nydsyq.yzyfs" class="width100" filterable clearable @change="changeYzyfs"> |
| 134 | <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 134 | <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 135 | </el-option> | 135 | </el-option> |
| ... | @@ -137,19 +137,19 @@ | ... | @@ -137,19 +137,19 @@ |
| 137 | </el-form-item> | 137 | </el-form-item> |
| 138 | </el-col> | 138 | </el-col> |
| 139 | <el-col :span="8"> | 139 | <el-col :span="8"> |
| 140 | <el-form-item :class="flag ? 'marginBot0' : ''" label="草原质量:"> | 140 | <el-form-item label="草原质量:"> |
| 141 | <el-input v-model="ruleForm.nydsyq.cyzl"></el-input> | 141 | <el-input v-model="ruleForm.nydsyq.cyzl"></el-input> |
| 142 | </el-form-item> | 142 | </el-form-item> |
| 143 | </el-col> | 143 | </el-col> |
| 144 | </el-row> | 144 | </el-row> |
| 145 | <el-row :gutter="10"> | 145 | <el-row :gutter="10"> |
| 146 | <el-col :span="8"> | 146 | <el-col :span="8"> |
| 147 | <el-form-item :class="flag ? 'marginBot0' : ''" label="适宜载畜量:"> | 147 | <el-form-item label="适宜载畜量:"> |
| 148 | <el-input v-model="ruleForm.nydsyq.syzcl" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> | 148 | <el-input v-model="ruleForm.nydsyq.syzcl" oninput="value=value.replace(/[^\d.]/g,'')"></el-input> |
| 149 | </el-form-item> | 149 | </el-form-item> |
| 150 | </el-col> | 150 | </el-col> |
| 151 | <el-col :span="8"> | 151 | <el-col :span="8"> |
| 152 | <el-form-item :class="flag ? 'marginBot0' : ''" label="用地用海分类:"> | 152 | <el-form-item label="用地用海分类:"> |
| 153 | <el-select v-model="ruleForm.nydsyq.ydyhfl" class="width100" filterable clearable @change="changeYdyhfl"> | 153 | <el-select v-model="ruleForm.nydsyq.ydyhfl" class="width100" filterable clearable @change="changeYdyhfl"> |
| 154 | <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 154 | <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 155 | </el-option> | 155 | </el-option> |
| ... | @@ -157,14 +157,14 @@ | ... | @@ -157,14 +157,14 @@ |
| 157 | </el-form-item> | 157 | </el-form-item> |
| 158 | </el-col> | 158 | </el-col> |
| 159 | <el-col :span="8"> | 159 | <el-col :span="8"> |
| 160 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地承包合同:"> | 160 | <el-form-item label="土地承包合同:"> |
| 161 | <el-input v-model="ruleForm.nydsyq.tdcbht"></el-input> | 161 | <el-input v-model="ruleForm.nydsyq.tdcbht"></el-input> |
| 162 | </el-form-item> | 162 | </el-form-item> |
| 163 | </el-col> | 163 | </el-col> |
| 164 | </el-row> | 164 | </el-row> |
| 165 | <el-row :gutter="10"> | 165 | <el-row :gutter="10"> |
| 166 | <el-col> | 166 | <el-col> |
| 167 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | 167 | <el-form-item label="附记:" prop="fj"> |
| 168 | <el-input type="textarea" v-model="ruleForm.nydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> | 168 | <el-input type="textarea" v-model="ruleForm.nydsyq.fj" :disabled="$route.query.viewtype == 1"></el-input> |
| 169 | </el-form-item> | 169 | </el-form-item> |
| 170 | </el-col> | 170 | </el-col> |
| ... | @@ -175,7 +175,7 @@ | ... | @@ -175,7 +175,7 @@ |
| 175 | </div> | 175 | </div> |
| 176 | <el-row :gutter="10"> | 176 | <el-row :gutter="10"> |
| 177 | <el-col :span="14"> | 177 | <el-col :span="14"> |
| 178 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 178 | <el-form-item label="共有方式:"> |
| 179 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> | 179 | <el-radio-group :disabled="$route.query.viewtype == 1" v-model="ruleForm.slywxx.gyfs"> |
| 180 | <el-radio label="0">单独所有</el-radio> | 180 | <el-radio label="0">单独所有</el-radio> |
| 181 | <el-radio label="1">共同共有</el-radio> | 181 | <el-radio label="1">共同共有</el-radio> |
| ... | @@ -185,7 +185,7 @@ | ... | @@ -185,7 +185,7 @@ |
| 185 | </el-form-item> | 185 | </el-form-item> |
| 186 | </el-col> | 186 | </el-col> |
| 187 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 187 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 188 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | 188 | <el-form-item label="是否分别持证:"> |
| 189 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | 189 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> |
| 190 | <el-radio label="1">是</el-radio> | 190 | <el-radio label="1">是</el-radio> |
| 191 | <el-radio label="0">否</el-radio> | 191 | <el-radio label="0">否</el-radio> |
| ... | @@ -193,7 +193,7 @@ | ... | @@ -193,7 +193,7 @@ |
| 193 | </el-form-item> | 193 | </el-form-item> |
| 194 | </el-col> | 194 | </el-col> |
| 195 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | 195 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> |
| 196 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | 196 | <el-form-item label="持证人:"> |
| 197 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | 197 | <el-select v-model="ruleForm.czr" placeholder="持证人"> |
| 198 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | 198 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> |
| 199 | </el-option> | 199 | </el-option> |
| ... | @@ -221,7 +221,7 @@ | ... | @@ -221,7 +221,7 @@ |
| 221 | </div> | 221 | </div> |
| 222 | <el-row :gutter="10"> | 222 | <el-row :gutter="10"> |
| 223 | <el-col> | 223 | <el-col> |
| 224 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | 224 | <el-form-item label="登记原因:" prop="djyy"> |
| 225 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" | 225 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype == 1" |
| 226 | v-model="ruleForm.nydsyq.djyy"> | 226 | v-model="ruleForm.nydsyq.djyy"> |
| 227 | </el-input> | 227 | </el-input> |
| ... | @@ -230,7 +230,7 @@ | ... | @@ -230,7 +230,7 @@ |
| 230 | </el-row> | 230 | </el-row> |
| 231 | </div> | 231 | </div> |
| 232 | <el-row class="btn" v-if="!$route.query.viewtype"> | 232 | <el-row class="btn" v-if="!$route.query.viewtype"> |
| 233 | <el-form-item :class="flag ? 'marginBot0' : ''"> | 233 | <el-form-item> |
| 234 | <el-button type="primary" @click="onSubmit">保存</el-button> | 234 | <el-button type="primary" @click="onSubmit">保存</el-button> |
| 235 | </el-form-item> | 235 | </el-form-item> |
| 236 | </el-row> | 236 | </el-row> | ... | ... |
-
Please register or sign in to post a comment