style:不动产业务弹框修改
Showing
4 changed files
with
11 additions
and
7 deletions
... | @@ -48,6 +48,7 @@ let mixin = { | ... | @@ -48,6 +48,7 @@ let mixin = { |
48 | }, | 48 | }, |
49 | // 详情 | 49 | // 详情 |
50 | handleEdit (row) { | 50 | handleEdit (row) { |
51 | this.$refs.editLog.isShow(row); | ||
51 | if (row.rectypeName) { | 52 | if (row.rectypeName) { |
52 | this.title = row.rectypeName | 53 | this.title = row.rectypeName |
53 | } else { | 54 | } else { |
... | @@ -67,7 +68,6 @@ let mixin = { | ... | @@ -67,7 +68,6 @@ let mixin = { |
67 | }) | 68 | }) |
68 | this.title = Title | 69 | this.title = Title |
69 | } | 70 | } |
70 | this.$refs.editLog.isShow(row); | ||
71 | }, | 71 | }, |
72 | // 重置表单 | 72 | // 重置表单 |
73 | resetForm () { | 73 | resetForm () { | ... | ... |
... | @@ -35,7 +35,6 @@ router.beforeEach(async (to, from, next) => { | ... | @@ -35,7 +35,6 @@ router.beforeEach(async (to, from, next) => { |
35 | if (hasAddRoute) { | 35 | if (hasAddRoute) { |
36 | next(); | 36 | next(); |
37 | } else { | 37 | } else { |
38 | |||
39 | //请求菜单 | 38 | //请求菜单 |
40 | const { result: getMenuData } = (await getMenuInfo(code)) || []; | 39 | const { result: getMenuData } = (await getMenuInfo(code)) || []; |
41 | const accessRoutes = await store.dispatch( | 40 | const accessRoutes = await store.dispatch( | ... | ... |
... | @@ -5,13 +5,15 @@ | ... | @@ -5,13 +5,15 @@ |
5 | <div class="from-clues-header"> | 5 | <div class="from-clues-header"> |
6 | <el-form ref="ruleForm" :model="form" label-width="100px"> | 6 | <el-form ref="ruleForm" :model="form" label-width="100px"> |
7 | <!-- 判断进入监管还是上报系统 --> | 7 | <!-- 判断进入监管还是上报系统 --> |
8 | <el-form-item v-if="BASE_API.THEME=='jg'"> | 8 | <el-form-item v-if="BASE_API.THEME == 'jg'"> |
9 | <Breadcrumb /> | 9 | <Breadcrumb /> |
10 | </el-form-item> | 10 | </el-form-item> |
11 | <el-row class="mb-5"> | 11 | <el-row class="mb-5"> |
12 | <el-col :span="6"> | 12 | <el-col :span="6"> |
13 | <el-form-item label="行政区" prop="qxdm"> | 13 | <el-form-item label="行政区" prop="qxdm"> |
14 | <el-select v-model="$store.state.user.userInfo.grade === 'county' ? form.qxdm = $store.state.user.userInfo.areaCode : form.qxdm" class="width100" clearable placeholder="行政区" :disabled="$store.state.user.userInfo.grade === 'county'"> | 14 | <el-select |
15 | v-model="$store.state.user.userInfo.grade === 'county' ? form.qxdm = $store.state.user.userInfo.areaCode : form.qxdm" | ||
16 | class="width100" clearable placeholder="行政区" :disabled="$store.state.user.userInfo.grade === 'county'"> | ||
15 | <el-option v-for="item in dicData['A20']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE"> | 17 | <el-option v-for="item in dicData['A20']" :key="item.DCODE" :label="item.DNAME" :value="item.DCODE"> |
16 | </el-option> | 18 | </el-option> |
17 | </el-select> | 19 | </el-select> |
... | @@ -230,7 +232,10 @@ export default { | ... | @@ -230,7 +232,10 @@ export default { |
230 | this.featchData(); | 232 | this.featchData(); |
231 | }, | 233 | }, |
232 | }, | 234 | }, |
233 | }; | 235 | destroyed () { |
236 | this.$store.dispatch('business/setEdit') | ||
237 | } | ||
238 | } | ||
234 | </script> | 239 | </script> |
235 | <style scoped lang="scss"> | 240 | <style scoped lang="scss"> |
236 | // 引入页面公共样式 | 241 | // 引入页面公共样式 | ... | ... |
-
Please register or sign in to post a comment