0430c505 by jiaozeping@pashanhoo.com

个性化配置

1 parent b7442b3d
...@@ -277,6 +277,14 @@ export const asyncRoutes = [ ...@@ -277,6 +277,14 @@ export const asyncRoutes = [
277 name: 'flfg', 277 name: 'flfg',
278 meta: { title: '法律法规' } 278 meta: { title: '法律法规' }
279 }, 279 },
280 {
281 path: 'gxhpz',
282 id: '97',
283 parentId: '9',
284 component: () => import('@/views/system/gxhpz/gxhpz.vue'),
285 name: 'gxhpz',
286 meta: { title: '个性化配置' }
287 },
280 ] 288 ]
281 }, 289 },
282 { 290 {
......
1 <template>
2 <div class="from-clues">
3 <!-- 表单部分 -->
4 <div class="from-clues-header">
5 <el-form :model="ruleForm" label-width="80px">
6 <el-row>
7 <el-col :span="5">
8 <el-form-item label="个性化配置">
9 <el-input v-model="ruleForm.noticeTitle" placeholder="法律法规"></el-input>
10 </el-form-item>
11 </el-col>
12 <el-col :span="19" class="btnColRight">
13 <el-form-item>
14 <el-button type="primary" native-type="submit" >查询</el-button>
15 </el-form-item>
16 </el-col>
17 </el-row>
18 </el-form>
19 </div>
20 <!-- 表格 -->
21 </div>
22 </template>
23 <script>
24 import table from "@/utils/mixin/table";
25 export default {
26 name: "gxhpz",
27 components: { },
28 mixins: [table],
29 mounted () {
30 },
31 data () {
32 return {
33 isDialog: false,
34 isDiglog: false
35 }
36 },
37 methods: {
38 },
39 };
40 </script>
41 <style scoped lang="scss">
42 @import "~@/styles/public.scss";
43 </style>
44
...\ No newline at end of file ...\ No newline at end of file