Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
6a30e369
authored
2023-04-06 10:39:47 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:不动产业务弹框修改
1 parent
aa08f189
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
7 deletions
public/config.json
src/mixins/tableMixin.js
src/permission.js
src/views/sthj/sbbwcx/index.vue
public/config.json
View file @
6a30e36
{
"TITLE"
:
"汉中市数据上报系统"
,
"THEME"
:
"
jg
"
,
"CODE"
:
"BDC
JG
PT"
,
"THEME"
:
"
sb
"
,
"CODE"
:
"BDC
SB
PT"
,
"AREARMAP"
:
"610702"
,
"AREARNAME"
:
"汉中市"
,
"SERVERAPI"
:
"/bdcsjsb"
,
...
...
src/mixins/tableMixin.js
View file @
6a30e36
...
...
@@ -48,6 +48,7 @@ let mixin = {
},
// 详情
handleEdit
(
row
)
{
this
.
$refs
.
editLog
.
isShow
(
row
);
if
(
row
.
rectypeName
)
{
this
.
title
=
row
.
rectypeName
}
else
{
...
...
@@ -67,7 +68,6 @@ let mixin = {
})
this
.
title
=
Title
}
this
.
$refs
.
editLog
.
isShow
(
row
);
},
// 重置表单
resetForm
()
{
...
...
src/permission.js
View file @
6a30e36
...
...
@@ -35,7 +35,6 @@ router.beforeEach(async (to, from, next) => {
if
(
hasAddRoute
)
{
next
();
}
else
{
//请求菜单
const
{
result
:
getMenuData
}
=
(
await
getMenuInfo
(
code
))
||
[];
const
accessRoutes
=
await
store
.
dispatch
(
...
...
src/views/sthj/sbbwcx/index.vue
View file @
6a30e36
...
...
@@ -5,13 +5,15 @@
<div
class=
"from-clues-header"
>
<el-form
ref=
"ruleForm"
:model=
"form"
label-width=
"100px"
>
<!-- 判断进入监管还是上报系统 -->
<el-form-item
v-if=
"BASE_API.THEME
==
'jg'"
>
<el-form-item
v-if=
"BASE_API.THEME
==
'jg'"
>
<Breadcrumb
/>
</el-form-item>
<el-row
class=
"mb-5"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"行政区"
prop=
"qxdm"
>
<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'"
>
<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'"
>
<el-option
v-for=
"item in dicData['A20']"
:key=
"item.DCODE"
:label=
"item.DNAME"
:value=
"item.DCODE"
>
</el-option>
</el-select>
...
...
@@ -230,7 +232,10 @@ export default {
this
.
featchData
();
},
},
};
destroyed
()
{
this
.
$store
.
dispatch
(
'business/setEdit'
)
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
//
引入页面公共样式
...
...
Please
register
or
sign in
to post a comment