123
Showing
8 changed files
with
546 additions
and
3 deletions
... | @@ -110,12 +110,12 @@ export const asyncRoutes = [ | ... | @@ -110,12 +110,12 @@ export const asyncRoutes = [ |
110 | meta: { title: '打印登记薄' } | 110 | meta: { title: '打印登记薄' } |
111 | }, | 111 | }, |
112 | { | 112 | { |
113 | path: 'cxjl', | 113 | path: 'sqcxjl', |
114 | id: '11', | 114 | id: '11', |
115 | parentId: '9', | 115 | parentId: '9', |
116 | component: () => import('@/views/sqcx/cxjl/cxjl.vue'), | 116 | component: () => import('@/views/sqcx/sqcxjl/sqcxjl.vue'), |
117 | name: 'cxjl', | 117 | name: 'cxjl', |
118 | meta: { title: '查询记录' } | 118 | meta: { title: '申请查询记录' } |
119 | } | 119 | } |
120 | ] | 120 | ] |
121 | }, | 121 | }, | ... | ... |
src/views/sqcx/cxjl/cxjl.vue
deleted
100644 → 0
File mode changed
1 | <template> | ||
2 | <div class="from-clues"> | ||
3 | <!-- 表单部分 --> | ||
4 | <div class="from-clues-header"> | ||
5 | <el-form :model="queryForm" ref="queryForm" label-width="70px"> | ||
6 | <el-row> | ||
7 | <el-col :span="5"> | ||
8 | <el-form-item label="家庭房产"> | ||
9 | </el-form-item> | ||
10 | </el-col> | ||
11 | |||
12 | <el-col :span="4" class="btnCol"> | ||
13 | <el-form-item> | ||
14 | <el-button type="primary" @click="queryClick()">查询</el-button> | ||
15 | <el-button @click="moreQueryClick()">高级查询</el-button> | ||
16 | </el-form-item> | ||
17 | </el-col> | ||
18 | </el-row> | ||
19 | </el-form> | ||
20 | </div> | ||
21 | <!-- 表格 --> | ||
22 | <div class="from-clues-content"> | ||
23 | <lb-table | ||
24 | :page-size="pageData.size" | ||
25 | @sort-change="handleSort" | ||
26 | :current-page.sync="pageData.current" | ||
27 | :total="pageData.total" | ||
28 | @selection-change="handleSelectionChange" | ||
29 | @size-change="handleSizeChange" | ||
30 | @p-current-change="handleCurrentChange" | ||
31 | :column="tableData.columns" | ||
32 | :data="tableData.data" | ||
33 | > | ||
34 | </lb-table> | ||
35 | </div> | ||
36 | </div> | ||
37 | </template> | ||
38 | <script> | ||
39 | import table from "@/utils/mixin/table"; | ||
40 | import { datas, sendThis } from "./dydjbdata"; | ||
41 | export default { | ||
42 | name: "dydjb", | ||
43 | components: {}, | ||
44 | mixins: [table], | ||
45 | mounted() { | ||
46 | sendThis(this); | ||
47 | }, | ||
48 | data() { | ||
49 | return { | ||
50 | queryForm: { | ||
51 | ywly: "", | ||
52 | qllx: "", | ||
53 | djlx: "", | ||
54 | ywh: "", | ||
55 | }, | ||
56 | pageData: { | ||
57 | current: 1, | ||
58 | size: 10, | ||
59 | total: 2, | ||
60 | }, | ||
61 | |||
62 | ywlys: datas.ywlys(), | ||
63 | |||
64 | tableData: { | ||
65 | columns: datas.columns(), | ||
66 | data: [ | ||
67 | { | ||
68 | slsj: "2022-5-12", | ||
69 | }, | ||
70 | { | ||
71 | slsj: "2022-5-13", | ||
72 | }, | ||
73 | ], | ||
74 | }, | ||
75 | }; | ||
76 | }, | ||
77 | methods: { | ||
78 | // 初始化数据 | ||
79 | fetchData() {}, | ||
80 | handleSort(name, sort) { | ||
81 | console.log(name, sort); | ||
82 | }, | ||
83 | openDialog() { | ||
84 | console.log(999999999999999); | ||
85 | }, | ||
86 | }, | ||
87 | }; | ||
88 | </script> | ||
89 | <style scoped lang="scss"> | ||
90 | @import "~@/styles/public.scss"; | ||
91 | </style> | ... | ... |
src/views/sqcx/dydjb/dydjbdata.js
0 → 100644
1 | import filter from '@/utils/filter.js' | ||
2 | let vm = null | ||
3 | |||
4 | const sendThis = (_this) => { | ||
5 | vm = _this | ||
6 | } | ||
7 | class data extends filter { | ||
8 | constructor() { | ||
9 | super() | ||
10 | } | ||
11 | columns () { | ||
12 | return [ | ||
13 | { | ||
14 | label: '序号', | ||
15 | type: 'index', | ||
16 | width: '50' | ||
17 | }, | ||
18 | { | ||
19 | prop: "ywly", | ||
20 | label: "业务来源", | ||
21 | }, | ||
22 | { | ||
23 | prop: "lczt", | ||
24 | label: "流程状态", | ||
25 | }, | ||
26 | { | ||
27 | prop: "zbhj", | ||
28 | label: "在办环节", | ||
29 | }, | ||
30 | { | ||
31 | prop: "ywh", | ||
32 | label: "业务号", | ||
33 | }, | ||
34 | { | ||
35 | prop: "sqywmc", | ||
36 | label: "申请业务名称", | ||
37 | }, | ||
38 | { | ||
39 | prop: "qlr", | ||
40 | label: "权利人", | ||
41 | }, | ||
42 | { | ||
43 | prop: "ywr", | ||
44 | label: "义务人", | ||
45 | }, | ||
46 | { | ||
47 | prop: "zl", | ||
48 | label: "坐落", | ||
49 | }, | ||
50 | { | ||
51 | prop: "slsj", | ||
52 | label: "受理时间", | ||
53 | sortable: 'custom' | ||
54 | }, | ||
55 | { | ||
56 | prop: "slry", | ||
57 | label: "受理人员", | ||
58 | }, | ||
59 | { | ||
60 | prop: "zrsj", | ||
61 | label: "转入时间", | ||
62 | sortable: 'custom' | ||
63 | }, | ||
64 | { | ||
65 | label: '操作', | ||
66 | width: '80', | ||
67 | align: 'center', | ||
68 | fixed: 'right', | ||
69 | render: (h, scope) => { | ||
70 | return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.openDialog(scope) }}>编辑</el-button> | ||
71 | } | ||
72 | } | ||
73 | ] | ||
74 | } | ||
75 | |||
76 | ywlys(){ | ||
77 | return[ | ||
78 | { value: 1, label: "办事大厅" }, | ||
79 | { value: 2, label: "微信小程序" }, | ||
80 | { value: 3, label: "法院端" }, | ||
81 | { value: 4, label: "银行端" }, | ||
82 | ] | ||
83 | } | ||
84 | |||
85 | } | ||
86 | let datas = new data() | ||
87 | export { | ||
88 | datas, | ||
89 | sendThis | ||
90 | } |
1 | <template> | ||
2 | <div class="from-clues"> | ||
3 | <!-- 表单部分 --> | ||
4 | <div class="from-clues-header"> | ||
5 | <el-form :model="queryForm" ref="queryForm" label-width="70px"> | ||
6 | <el-row> | ||
7 | <el-col :span="5"> | ||
8 | <el-form-item label="家庭房产"> | ||
9 | </el-form-item> | ||
10 | </el-col> | ||
11 | |||
12 | <el-col :span="4" class="btnCol"> | ||
13 | <el-form-item> | ||
14 | <el-button type="primary" @click="queryClick()">查询</el-button> | ||
15 | <el-button @click="moreQueryClick()">高级查询</el-button> | ||
16 | </el-form-item> | ||
17 | </el-col> | ||
18 | </el-row> | ||
19 | </el-form> | ||
20 | </div> | ||
21 | <!-- 表格 --> | ||
22 | <div class="from-clues-content"> | ||
23 | <lb-table | ||
24 | :page-size="pageData.size" | ||
25 | @sort-change="handleSort" | ||
26 | :current-page.sync="pageData.current" | ||
27 | :total="pageData.total" | ||
28 | @selection-change="handleSelectionChange" | ||
29 | @size-change="handleSizeChange" | ||
30 | @p-current-change="handleCurrentChange" | ||
31 | :column="tableData.columns" | ||
32 | :data="tableData.data" | ||
33 | > | ||
34 | </lb-table> | ||
35 | </div> | ||
36 | </div> | ||
37 | </template> | ||
38 | <script> | ||
39 | import table from "@/utils/mixin/table"; | ||
40 | import { datas, sendThis } from "./jtfcdata"; | ||
41 | export default { | ||
42 | name: "jtfc", | ||
43 | components: {}, | ||
44 | mixins: [table], | ||
45 | mounted() { | ||
46 | sendThis(this); | ||
47 | }, | ||
48 | data() { | ||
49 | return { | ||
50 | queryForm: { | ||
51 | ywly: "", | ||
52 | qllx: "", | ||
53 | djlx: "", | ||
54 | ywh: "", | ||
55 | }, | ||
56 | pageData: { | ||
57 | current: 1, | ||
58 | size: 10, | ||
59 | total: 2, | ||
60 | }, | ||
61 | |||
62 | ywlys: datas.ywlys(), | ||
63 | |||
64 | tableData: { | ||
65 | columns: datas.columns(), | ||
66 | data: [ | ||
67 | { | ||
68 | slsj: "2022-5-12", | ||
69 | }, | ||
70 | { | ||
71 | slsj: "2022-5-13", | ||
72 | }, | ||
73 | ], | ||
74 | }, | ||
75 | }; | ||
76 | }, | ||
77 | methods: { | ||
78 | // 初始化数据 | ||
79 | fetchData() {}, | ||
80 | handleSort(name, sort) { | ||
81 | console.log(name, sort); | ||
82 | }, | ||
83 | openDialog() { | ||
84 | console.log(999999999999999); | ||
85 | }, | ||
86 | }, | ||
87 | }; | ||
88 | </script> | ||
89 | <style scoped lang="scss"> | ||
90 | @import "~@/styles/public.scss"; | ||
91 | </style> | ... | ... |
src/views/sqcx/jtfc/jtfcdata.js
0 → 100644
1 | import filter from '@/utils/filter.js' | ||
2 | let vm = null | ||
3 | |||
4 | const sendThis = (_this) => { | ||
5 | vm = _this | ||
6 | } | ||
7 | class data extends filter { | ||
8 | constructor() { | ||
9 | super() | ||
10 | } | ||
11 | columns () { | ||
12 | return [ | ||
13 | { | ||
14 | label: '序号', | ||
15 | type: 'index', | ||
16 | width: '50' | ||
17 | }, | ||
18 | { | ||
19 | prop: "ywly", | ||
20 | label: "业务来源", | ||
21 | }, | ||
22 | { | ||
23 | prop: "lczt", | ||
24 | label: "流程状态", | ||
25 | }, | ||
26 | { | ||
27 | prop: "zbhj", | ||
28 | label: "在办环节", | ||
29 | }, | ||
30 | { | ||
31 | prop: "ywh", | ||
32 | label: "业务号", | ||
33 | }, | ||
34 | { | ||
35 | prop: "sqywmc", | ||
36 | label: "申请业务名称", | ||
37 | }, | ||
38 | { | ||
39 | prop: "qlr", | ||
40 | label: "权利人", | ||
41 | }, | ||
42 | { | ||
43 | prop: "ywr", | ||
44 | label: "义务人", | ||
45 | }, | ||
46 | { | ||
47 | prop: "zl", | ||
48 | label: "坐落", | ||
49 | }, | ||
50 | { | ||
51 | prop: "slsj", | ||
52 | label: "受理时间", | ||
53 | sortable: 'custom' | ||
54 | }, | ||
55 | { | ||
56 | prop: "slry", | ||
57 | label: "受理人员", | ||
58 | }, | ||
59 | { | ||
60 | prop: "zrsj", | ||
61 | label: "转入时间", | ||
62 | sortable: 'custom' | ||
63 | }, | ||
64 | { | ||
65 | label: '操作', | ||
66 | width: '80', | ||
67 | align: 'center', | ||
68 | fixed: 'right', | ||
69 | render: (h, scope) => { | ||
70 | return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.openDialog(scope) }}>编辑</el-button> | ||
71 | } | ||
72 | } | ||
73 | ] | ||
74 | } | ||
75 | |||
76 | ywlys(){ | ||
77 | return[ | ||
78 | { value: 1, label: "办事大厅" }, | ||
79 | { value: 2, label: "微信小程序" }, | ||
80 | { value: 3, label: "法院端" }, | ||
81 | { value: 4, label: "银行端" }, | ||
82 | ] | ||
83 | } | ||
84 | |||
85 | } | ||
86 | let datas = new data() | ||
87 | export { | ||
88 | datas, | ||
89 | sendThis | ||
90 | } |
src/views/sqcx/sqcxjl/sqcxjl.vue
0 → 100644
1 | <template> | ||
2 | <div class="from-clues"> | ||
3 | <!-- 表单部分 --> | ||
4 | <div class="from-clues-header"> | ||
5 | <el-form :model="queryForm" ref="queryForm" label-width="70px"> | ||
6 | <el-row> | ||
7 | <el-col :span="5"> | ||
8 | <el-form-item label="申请查询"> | ||
9 | </el-form-item> | ||
10 | </el-col> | ||
11 | |||
12 | <el-col :span="4" class="btnCol"> | ||
13 | <el-form-item> | ||
14 | <el-button type="primary" @click="queryClick()">查询</el-button> | ||
15 | <el-button @click="moreQueryClick()">高级查询</el-button> | ||
16 | </el-form-item> | ||
17 | </el-col> | ||
18 | </el-row> | ||
19 | </el-form> | ||
20 | </div> | ||
21 | <!-- 表格 --> | ||
22 | <div class="from-clues-content"> | ||
23 | <lb-table | ||
24 | :page-size="pageData.size" | ||
25 | @sort-change="handleSort" | ||
26 | :current-page.sync="pageData.current" | ||
27 | :total="pageData.total" | ||
28 | @selection-change="handleSelectionChange" | ||
29 | @size-change="handleSizeChange" | ||
30 | @p-current-change="handleCurrentChange" | ||
31 | :column="tableData.columns" | ||
32 | :data="tableData.data" | ||
33 | > | ||
34 | </lb-table> | ||
35 | </div> | ||
36 | </div> | ||
37 | </template> | ||
38 | <script> | ||
39 | import table from "@/utils/mixin/table"; | ||
40 | import { datas, sendThis } from "./sqcxjldata"; | ||
41 | export default { | ||
42 | name: "sqcxjl", | ||
43 | components: {}, | ||
44 | mixins: [table], | ||
45 | mounted() { | ||
46 | sendThis(this); | ||
47 | }, | ||
48 | data() { | ||
49 | return { | ||
50 | queryForm: { | ||
51 | ywly: "", | ||
52 | qllx: "", | ||
53 | djlx: "", | ||
54 | ywh: "", | ||
55 | }, | ||
56 | pageData: { | ||
57 | current: 1, | ||
58 | size: 10, | ||
59 | total: 2, | ||
60 | }, | ||
61 | |||
62 | ywlys: datas.ywlys(), | ||
63 | |||
64 | tableData: { | ||
65 | columns: datas.columns(), | ||
66 | data: [ | ||
67 | { | ||
68 | slsj: "2022-5-12", | ||
69 | }, | ||
70 | { | ||
71 | slsj: "2022-5-13", | ||
72 | }, | ||
73 | ], | ||
74 | }, | ||
75 | }; | ||
76 | }, | ||
77 | methods: { | ||
78 | // 初始化数据 | ||
79 | fetchData() {}, | ||
80 | handleSort(name, sort) { | ||
81 | console.log(name, sort); | ||
82 | }, | ||
83 | openDialog() { | ||
84 | console.log(999999999999999); | ||
85 | }, | ||
86 | }, | ||
87 | }; | ||
88 | </script> | ||
89 | <style scoped lang="scss"> | ||
90 | @import "~@/styles/public.scss"; | ||
91 | </style> |
src/views/sqcx/sqcxjl/sqcxjldata.js
0 → 100644
1 | import filter from '@/utils/filter.js' | ||
2 | let vm = null | ||
3 | |||
4 | const sendThis = (_this) => { | ||
5 | vm = _this | ||
6 | } | ||
7 | class data extends filter { | ||
8 | constructor() { | ||
9 | super() | ||
10 | } | ||
11 | columns () { | ||
12 | return [ | ||
13 | { | ||
14 | label: '序号', | ||
15 | type: 'index', | ||
16 | width: '50' | ||
17 | }, | ||
18 | { | ||
19 | prop: "ywly", | ||
20 | label: "业务来源", | ||
21 | }, | ||
22 | { | ||
23 | prop: "lczt", | ||
24 | label: "流程状态", | ||
25 | }, | ||
26 | { | ||
27 | prop: "zbhj", | ||
28 | label: "在办环节", | ||
29 | }, | ||
30 | { | ||
31 | prop: "ywh", | ||
32 | label: "业务号", | ||
33 | }, | ||
34 | { | ||
35 | prop: "sqywmc", | ||
36 | label: "申请业务名称", | ||
37 | }, | ||
38 | { | ||
39 | prop: "qlr", | ||
40 | label: "权利人", | ||
41 | }, | ||
42 | { | ||
43 | prop: "ywr", | ||
44 | label: "义务人", | ||
45 | }, | ||
46 | { | ||
47 | prop: "zl", | ||
48 | label: "坐落", | ||
49 | }, | ||
50 | { | ||
51 | prop: "slsj", | ||
52 | label: "受理时间", | ||
53 | sortable: 'custom' | ||
54 | }, | ||
55 | { | ||
56 | prop: "slry", | ||
57 | label: "受理人员", | ||
58 | }, | ||
59 | { | ||
60 | prop: "zrsj", | ||
61 | label: "转入时间", | ||
62 | sortable: 'custom' | ||
63 | }, | ||
64 | { | ||
65 | label: '操作', | ||
66 | width: '80', | ||
67 | align: 'center', | ||
68 | fixed: 'right', | ||
69 | render: (h, scope) => { | ||
70 | return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.openDialog(scope) }}>编辑</el-button> | ||
71 | } | ||
72 | } | ||
73 | ] | ||
74 | } | ||
75 | |||
76 | ywlys(){ | ||
77 | return[ | ||
78 | { value: 1, label: "办事大厅" }, | ||
79 | { value: 2, label: "微信小程序" }, | ||
80 | { value: 3, label: "法院端" }, | ||
81 | { value: 4, label: "银行端" }, | ||
82 | ] | ||
83 | } | ||
84 | |||
85 | } | ||
86 | let datas = new data() | ||
87 | export { | ||
88 | datas, | ||
89 | sendThis | ||
90 | } |
-
Please register or sign in to post a comment