0159af6c by renchao@pashanhoo.com

style:国有建设用地使用权受理申请权限功能的完善

1 parent 64ec4366
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-10-09 09:50:37 4 * @LastEditTime: 2023-10-23 17:17:34
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
89 <div class="flex"> 89 <div class="flex">
90 <el-input 90 <el-input
91 maxlength="12" 91 maxlength="12"
92 :disabled="!viewEdit"
92 v-model="ruleForm.jsydsyq.syqmj" 93 v-model="ruleForm.jsydsyq.syqmj"
93 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 94 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
94 <el-select disabled v-model="mjdw" style="width: 68px"> 95 <el-select disabled v-model="mjdw" style="width: 68px">
...@@ -104,7 +105,7 @@ ...@@ -104,7 +105,7 @@
104 </el-col> 105 </el-col>
105 <el-col :span="8"> 106 <el-col :span="8">
106 <el-form-item label="权利设定方式:"> 107 <el-form-item label="权利设定方式:">
107 <el-input maxlength="25" v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> 108 <el-input maxlength="25" :disabled="!viewEdit" v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input>
108 </el-form-item> 109 </el-form-item>
109 </el-col> 110 </el-col>
110 <el-col :span="8"> 111 <el-col :span="8">
...@@ -112,6 +113,7 @@ ...@@ -112,6 +113,7 @@
112 <div style="display: flex"> 113 <div style="display: flex">
113 <el-input 114 <el-input
114 maxlength="11" 115 maxlength="11"
116 :disabled="!viewEdit"
115 v-model="ruleForm.jsydsyq.qdjg" 117 v-model="ruleForm.jsydsyq.qdjg"
116 style="width: 500%" 118 style="width: 500%"
117 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input> 119 oninput="value = (value.match(/^\d*(\.?\d{0,2})/g)[0]) || null"></el-input>
...@@ -129,7 +131,7 @@ ...@@ -129,7 +131,7 @@
129 131
130 <el-col :span="16"> 132 <el-col :span="16">
131 <el-form-item label="坐落:"> 133 <el-form-item label="坐落:">
132 <el-input maxlength="100" v-model="ruleForm.sldy.zl"></el-input> 134 <el-input maxlength="100" :disabled="!viewEdit" v-model="ruleForm.sldy.zl"></el-input>
133 </el-form-item> 135 </el-form-item>
134 </el-col> 136 </el-col>
135 </el-row> 137 </el-row>
......