Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-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
0430c505
authored
2022-11-23 11:20:56 +0800
by
jiaozeping@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
个性化配置
1 parent
b7442b3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
0 deletions
src/router/index.js
src/views/system/gxhpz/gxhpz.vue
src/router/index.js
View file @
0430c50
...
...
@@ -277,6 +277,14 @@ export const asyncRoutes = [
name
:
'flfg'
,
meta
:
{
title
:
'法律法规'
}
},
{
path
:
'gxhpz'
,
id
:
'97'
,
parentId
:
'9'
,
component
:
()
=>
import
(
'@/views/system/gxhpz/gxhpz.vue'
),
name
:
'gxhpz'
,
meta
:
{
title
:
'个性化配置'
}
},
]
},
{
...
...
src/views/system/gxhpz/gxhpz.vue
0 → 100644
View file @
0430c50
<
template
>
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"ruleForm"
label-width=
"80px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"个性化配置"
>
<el-input
v-model=
"ruleForm.noticeTitle"
placeholder=
"法律法规"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"19"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
>
查询
</el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 表格 -->
</div>
</
template
>
<
script
>
import
table
from
"@/utils/mixin/table"
;
export
default
{
name
:
"gxhpz"
,
components
:
{
},
mixins
:
[
table
],
mounted
()
{
},
data
()
{
return
{
isDialog
:
false
,
isDiglog
:
false
}
},
methods
:
{
},
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
</
style
>
\ No newline at end of file
Please
register
or
sign in
to post a comment