Commit 08318c3bb22d94ef0862c24f77f33fe166fe292b

Authored by 张红振
1 parent e5331ced

fix bug

src/views/community/houses/index.vue
... ... @@ -179,14 +179,13 @@ watchEffect(() => {
179 179 @click="buildPeople(scope.row.id, false)"
180 180 >取消绑定</el-button
181 181 >
182   -
183   - <el-button
  182 + <!-- <el-button
184 183 type="text"
185 184 size="mini"
186 185 @click="check(scope.row.id)"
187 186 style="margin-left: 10px"
188 187 >查看房屋</el-button
189   - >
  188 + > -->
190 189 <router-link
191 190 :to="{
192 191 name: 'owner',
... ...
src/views/community/residence/index.vue
... ... @@ -134,7 +134,7 @@ onMounted(() =&gt; {
134 134 query: { neighborhoodId: scope.row.id },
135 135 }"
136 136 >
137   - <el-button type="text" size="mini">楼宇管理</el-button></router-link
  137 + <el-button type="text" size="mini" style="margin-left: 10px">楼宇管理</el-button></router-link
138 138 >
139 139 </template>
140 140 </el-table-column>
... ...
src/views/notify/edit.vue
... ... @@ -78,6 +78,7 @@ const submitForm = (
78 78 postApi(type);
79 79 })
80 80 .catch((error) => {
  81 + form.loading = false;
81 82 console.log(error);
82 83 });
83 84 } else {
... ...
src/views/property/edit.vue
... ... @@ -273,7 +273,7 @@ onMounted(() =&gt; {
273 273 <el-input
274 274 v-model.trim="form.data.contractNumber"
275 275 placeholder="请填写合同编号"
276   - maxlength="50"
  276 + maxlength="30"
277 277 />
278 278 </el-form-item>
279 279 <el-form-item label="备注" prop="remark" style="width: 100%">
... ...
src/views/serviceman/detail.vue
... ... @@ -185,7 +185,7 @@ onMounted(() =&gt; {
185 185 <el-input
186 186 v-model="props.formObj.name"
187 187 placeholder="请输入姓名"
188   - maxlength="30"
  188 + maxlength="10"
189 189 ></el-input>
190 190 </el-form-item>
191 191 <el-form-item label="年龄:" prop="age">
... ...