--no commit message
Showing
147 changed files
with
989 additions
and
988 deletions
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: 不动产权证 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-16 14:04:18 | 4 | * @LastEditTime: 2023-05-16 14:04:18 |
5 | */ | 5 | */ |
... | @@ -130,4 +130,4 @@ export function bdcqzPreview (data) { | ... | @@ -130,4 +130,4 @@ export function bdcqzPreview (data) { |
130 | data, | 130 | data, |
131 | responseType: 'blob' | 131 | responseType: 'blob' |
132 | }) | 132 | }) |
133 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
133 | } | ... | ... |
src/api/businessApply.js
0 → 100644
1 | /* | ||
2 | * @Description: 业务办理 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:13:24 | ||
5 | */ | ||
6 | |||
7 | import request from '@/utils/request' | ||
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
9 | |||
10 | /** | ||
11 | * @description: 业务办理-获取收藏业务集合 | ||
12 | * @author: renchao | ||
13 | */ | ||
14 | export function getCollectBiz () { | ||
15 | return request({ | ||
16 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getCollectBiz', | ||
17 | method: 'post' | ||
18 | }) | ||
19 | } | ||
20 | |||
21 | |||
22 | /** | ||
23 | * @description: 业务办理-获取左侧菜单 | ||
24 | * @author: renchao | ||
25 | */ | ||
26 | export function getleftMenu () { | ||
27 | return request({ | ||
28 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getleftMenu', | ||
29 | method: 'post' | ||
30 | }) | ||
31 | } | ||
32 | |||
33 | /** | ||
34 | * @description: 登记簿补录 | ||
35 | * @author: renchao | ||
36 | */ | ||
37 | export function getRepairBiz () { | ||
38 | return request({ | ||
39 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getRepairBiz', | ||
40 | method: 'post' | ||
41 | }) | ||
42 | } | ||
43 | |||
44 | /** | ||
45 | * @description: 一并申请业务 | ||
46 | * @author: renchao | ||
47 | */ | ||
48 | export function getTogetherBiz () { | ||
49 | return request({ | ||
50 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getTogetherBiz', | ||
51 | method: 'post' | ||
52 | }) | ||
53 | } | ||
54 | |||
55 | /** | ||
56 | * @description: 业务办理-获取下个节点内容 | ||
57 | * @param {*} bsmSqyw | ||
58 | * @author: renchao | ||
59 | */ | ||
60 | export function getNextNode (bsmSqyw) { | ||
61 | return request({ | ||
62 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw, | ||
63 | method: 'post' | ||
64 | }) | ||
65 | } | ||
66 | |||
67 | /** | ||
68 | * @description: 业务办理-业务申请-添加收藏业务 | ||
69 | * @param {*} bsmSqyw | ||
70 | * @author: renchao | ||
71 | */ | ||
72 | export function addCollectBiz (bsmSqyw) { | ||
73 | return request({ | ||
74 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw, | ||
75 | method: 'post' | ||
76 | }) | ||
77 | } | ||
78 | |||
79 | /** | ||
80 | * @description: 业务办理-业务申请-取消收藏业务 | ||
81 | * @param {*} bsmSqyw | ||
82 | * @author: renchao | ||
83 | */ | ||
84 | export function deleteCollectBiz (bsmSqyw) { | ||
85 | return request({ | ||
86 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, | ||
87 | method: 'post' | ||
88 | }) | ||
89 | } |
src/api/dict.js
0 → 100644
1 | /* | ||
2 | * @Description: 字典接口 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-16 16:06:51 | ||
5 | */ | ||
6 | import request from '@/utils/request' | ||
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
8 | |||
9 | |||
10 | /** | ||
11 | * @description: 获取全部字典数据 | ||
12 | * @author: renchao | ||
13 | */ | ||
14 | export function getAllDict () { | ||
15 | return request({ | ||
16 | url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict', | ||
17 | method: 'post' | ||
18 | }) | ||
19 | } | ||
20 | export function getQlxxDictList (data) { | ||
21 | return request({ | ||
22 | url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList', | ||
23 | method: 'post', | ||
24 | data | ||
25 | }) | ||
26 | } | ||
27 | |||
28 | /** | ||
29 | * @description: 获取字典子级列表 | ||
30 | * @param {*} bsmDict | ||
31 | * @author: renchao | ||
32 | */ | ||
33 | export function getChildDictList (bsmDict) { | ||
34 | return request({ | ||
35 | url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList', | ||
36 | method: 'get', | ||
37 | params: { | ||
38 | bsmDict: bsmDict | ||
39 | } | ||
40 | }) | ||
41 | } | ||
42 | |||
43 | /** | ||
44 | * @description: 编辑字典数据 | ||
45 | * @param {*} data | ||
46 | * @author: renchao | ||
47 | */ | ||
48 | export function editDictNode (data) { | ||
49 | return request({ | ||
50 | url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode', | ||
51 | method: 'post', | ||
52 | data | ||
53 | }) | ||
54 | } | ||
55 | |||
56 | |||
57 | /** | ||
58 | * @description: 刷新字典缓存 | ||
59 | * @author: renchao | ||
60 | */ | ||
61 | export function refreshDictCache () { | ||
62 | return request({ | ||
63 | url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache', | ||
64 | method: 'get' | ||
65 | }) | ||
66 | } |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-16 13:36:44 | 4 | * @LastEditTime: 2023-05-16 13:36:44 |
5 | */ | 5 | */ |
... | @@ -8,3 +8,16 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap | ... | @@ -8,3 +8,16 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap |
8 | export function uploadUrl () { | 8 | export function uploadUrl () { |
9 | return process.env.VUE_APP_BASE_API + SERVER.SERVERAPI + '/file/upload' | 9 | return process.env.VUE_APP_BASE_API + SERVER.SERVERAPI + '/file/upload' |
10 | } | 10 | } |
11 | |||
12 | /** | ||
13 | * @description: 上传单个文件 | ||
14 | * @param {*} data | ||
15 | * @author: renchao | ||
16 | */ | ||
17 | export function upload (data) { | ||
18 | return request({ | ||
19 | url: SERVER.SERVERAPI + '/rest/file/upload', | ||
20 | method: 'post', | ||
21 | data | ||
22 | }) | ||
23 | } | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: 楼盘表查询 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-12 13:26:37 | 4 | * @LastEditTime: 2023-07-12 13:26:37 |
5 | */ | 5 | */ |
... | @@ -71,16 +71,3 @@ export function getLpbTj(zrzbsm) { | ... | @@ -71,16 +71,3 @@ export function getLpbTj(zrzbsm) { |
71 | method: "get", | 71 | method: "get", |
72 | }); | 72 | }); |
73 | } | 73 | } |
74 | |||
75 | /** | ||
76 | * @description:楼盘查询- 根据bsmSlsq查询自然幢标识码 | ||
77 | * @param {*} data | ||
78 | * @author: renchao | ||
79 | */ | ||
80 | export function getZrzbsm(bsm) { | ||
81 | return request({ | ||
82 | url: SERVER.SERVERAPI + "/rest/zhcx/search/getZrzbsmList?bsmSlsq=" + bsm, | ||
83 | method: "post", | ||
84 | data: bsm, | ||
85 | }); | ||
86 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-16 13:49:57 | 4 | * @LastEditTime: 2023-05-16 14:01:26 |
5 | */ | 5 | */ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | |||
8 | /** | 9 | /** |
9 | * @description: 获取自然幢下其他户 | 10 | * @description: 获取审批意见 |
10 | * @param {*} data | 11 | * @param {*} data |
11 | * @author: renchao | 12 | * @author: renchao |
12 | */ | 13 | */ |
13 | export function selectOtherH (data) { | 14 | export function getSpyjList (data) { |
14 | return request({ | 15 | return request({ |
15 | url: 'ywbl/ywsq/selectOtherH', | 16 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getSpyjList', |
16 | method: 'post', | 17 | method: 'post', |
17 | data | 18 | data |
18 | }) | 19 | }) |
19 | } | 20 | } |
21 | |||
20 | /** | 22 | /** |
21 | * @description: 业务办理-选择抵押权信息-根据条件进行列表查询 | 23 | * @description: 保存审批意见 |
22 | * @param {*} data | 24 | * @param {*} data |
23 | * @author: renchao | 25 | * @author: renchao |
24 | */ | 26 | */ |
25 | export function selectDiyaq (data) { | 27 | export function saveSpyj (data) { |
26 | return request({ | 28 | return request({ |
27 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq', | 29 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyj', |
28 | method: 'post', | 30 | method: 'post', |
29 | data | 31 | data |
30 | }) | 32 | }) |
31 | } | 33 | } |
32 | /** | 34 | /** |
33 | * @description: 业务办理-选择查封信息-根据条件进行列表查询 | 35 | * @description: 根据受理申请保存审批意见 |
34 | * @param {*} data | 36 | * @param {*} data |
35 | * @author: renchao | 37 | * @author: renchao |
36 | */ | 38 | */ |
37 | export function selectCfdj (data) { | 39 | export function saveSpyjBySlsq (data) { |
38 | return request({ | 40 | return request({ |
39 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj', | 41 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyjBySlsq', |
40 | method: 'post', | 42 | method: 'post', |
41 | data | 43 | data |
42 | }) | 44 | }) |
43 | } | 45 | } |
44 | 46 | ||
45 | /** | 47 | /** |
46 | * @description: 业务办理-业务申请-添加收藏业务 | 48 | * @description: 获取用户常用意见 |
47 | * @param {*} bsmSqyw | 49 | * @param {*} data |
48 | * @author: renchao | 50 | * @author: renchao |
49 | */ | 51 | */ |
50 | export function deleteCollectBiz (bsmSqyw) { | 52 | export function getUserCommonOpinion (data) { |
51 | return request({ | 53 | return request({ |
52 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, | 54 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getUserCommonOpinion', |
53 | method: 'post' | 55 | method: 'post', |
56 | data | ||
54 | }) | 57 | }) |
55 | } | 58 | } |
59 | |||
56 | /** | 60 | /** |
57 | * @description: 国有建设用地使用权/房屋使用权 -选择不动产单元 | 61 | * @description: 新增用户常用意见 |
58 | * @param {*} data | 62 | * @param {*} params |
59 | * @author: renchao | 63 | * @author: renchao |
60 | */ | 64 | */ |
61 | export function choiceBdcdy (data) { | 65 | export function addUserCommonOpinion (params) { |
62 | return request({ | 66 | return request({ |
63 | url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy', | 67 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/addUserCommonOpinion', |
64 | method: 'post', | 68 | method: 'get', |
65 | data | 69 | params |
66 | }) | 70 | }) |
67 | } | 71 | } |
68 | 72 | ||
69 | /** | 73 | /** |
70 | * @description: 选择补录权利信息 | 74 | * @description: 删除常用意见 |
71 | * @param {*} data | 75 | * @param {*} params |
72 | * @author: renchao | 76 | * @author: renchao |
73 | */ | 77 | */ |
74 | export function selectRepairQlxx (data) { | 78 | export function delUserCommonOpinion (params) { |
75 | return request({ | 79 | return request({ |
76 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx', | 80 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/delUserCommonOpinion', |
77 | method: 'post', | 81 | method: 'get', |
78 | data | 82 | params |
79 | }) | 83 | }) |
80 | } | 84 | } | ... | ... |
src/api/print.js
0 → 100644
1 | /* | ||
2 | * @Description: 模板管理 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-16 16:02:32 | ||
5 | */ | ||
6 | |||
7 | import request from '@/utils/request' | ||
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
9 | |||
10 | /** | ||
11 | * @description: 获取打印模板列表 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
15 | export function selectPrintTemplateList (data) { | ||
16 | return request({ | ||
17 | url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList', | ||
18 | method: 'post', | ||
19 | data | ||
20 | }) | ||
21 | } | ||
22 | |||
23 | /** | ||
24 | * @description: 新增打印模板列表 | ||
25 | * @param {*} data | ||
26 | * @author: renchao | ||
27 | */ | ||
28 | export function addPrintTemplate (data) { | ||
29 | return request({ | ||
30 | url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate', | ||
31 | method: 'post', | ||
32 | data | ||
33 | }) | ||
34 | } | ||
35 | |||
36 | /** | ||
37 | * @description: 编辑打印模板列表 | ||
38 | * @param {*} data | ||
39 | * @author: renchao | ||
40 | */ | ||
41 | export function editPrintTemplate (data) { | ||
42 | return request({ | ||
43 | url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate', | ||
44 | method: 'post', | ||
45 | data | ||
46 | }) | ||
47 | } | ||
48 | |||
49 | /** | ||
50 | * @description: 删除打印模板列表 | ||
51 | * @param {*} params | ||
52 | * @author: renchao | ||
53 | */ | ||
54 | export function delPrintTemplate (params) { | ||
55 | return request({ | ||
56 | url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate', | ||
57 | method: 'get', | ||
58 | params: params | ||
59 | }) | ||
60 | } | ||
61 | |||
62 | /** | ||
63 | * @description: 根据模板编号获取打印模板 | ||
64 | * @param {*} params | ||
65 | * @author: renchao | ||
66 | */ | ||
67 | export function getPrintTemplateByCode (params) { | ||
68 | return request({ | ||
69 | url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode', | ||
70 | method: 'get', | ||
71 | params: params | ||
72 | }) | ||
73 | } |
src/api/search.js
0 → 100644
1 | /* | ||
2 | * @Description: 综合查询 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:23:50 | ||
5 | */ | ||
6 | import request from '@/utils/request' | ||
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
8 | |||
9 | |||
10 | /** | ||
11 | * @description: 根据条件进行列表查询 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
15 | export function getDjbBysearch (data) { | ||
16 | return request({ | ||
17 | url: SERVER.SERVERAPI + '/rest/zhcx/search/qlxx/getDjbBysearch', | ||
18 | method: 'post', | ||
19 | data: data | ||
20 | }) | ||
21 | } | ||
22 | /** | ||
23 | * @description: 进度查询列表 | ||
24 | * @param {*} data | ||
25 | * @author: renchao | ||
26 | */ | ||
27 | export function getJdcxBysearch (data) { | ||
28 | return request({ | ||
29 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getJdcxBysearch', | ||
30 | method: 'post', | ||
31 | data | ||
32 | }) | ||
33 | } | ||
34 | |||
35 | /** | ||
36 | * @description: 证书领取查询 | ||
37 | * @param {*} data | ||
38 | * @author: renchao | ||
39 | */ | ||
40 | export function getBdcqzReceiveList (data) { | ||
41 | return request({ | ||
42 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getBdcqzReceiveList', | ||
43 | method: 'post', | ||
44 | data | ||
45 | }) | ||
46 | } | ||
47 | |||
48 | /** | ||
49 | * @description: 在建工程抵押查询 | ||
50 | * @param {*} data | ||
51 | * @author: renchao | ||
52 | */ | ||
53 | export function getZjgcdyList (data) { | ||
54 | return request({ | ||
55 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getZjgcdyList', | ||
56 | method: 'post', | ||
57 | data | ||
58 | }) | ||
59 | } | ||
60 | |||
61 | /** | ||
62 | * @description:楼盘查询- 根据bsmSlsq查询自然幢标识码 | ||
63 | * @param {*} data | ||
64 | * @author: renchao | ||
65 | */ | ||
66 | export function getZrzbsmList(bsm) { | ||
67 | return request({ | ||
68 | url: SERVER.SERVERAPI + "/rest/zhcx/search/getZrzbsmList?bsmSlsq=" + bsm, | ||
69 | method: "post", | ||
70 | data: bsm, | ||
71 | }); | ||
72 | } | ||
73 | |||
74 | |||
75 |
src/api/sysNotice.js
0 → 100644
1 | /* | ||
2 | * @Description: 系统通知 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-16 16:02:32 | ||
5 | */ | ||
6 | |||
7 | import request from '@/utils/request' | ||
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
9 | |||
10 | /** | ||
11 | * @description: 新增系统通知 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
15 | export function addSysNotice (data) { | ||
16 | return request({ | ||
17 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/addSysNotice', | ||
18 | method: 'post', | ||
19 | data | ||
20 | }) | ||
21 | } | ||
22 | |||
23 | /** | ||
24 | * @description: 编辑系统通知 | ||
25 | * @param {*} data | ||
26 | * @author: renchao | ||
27 | */ | ||
28 | export function updateSysNotice (data) { | ||
29 | return request({ | ||
30 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/updateSysNotice', | ||
31 | method: 'post', | ||
32 | data | ||
33 | }) | ||
34 | } | ||
35 | |||
36 | // 获取通知列表 | ||
37 | /** | ||
38 | * @description: | ||
39 | * @param {*} data | ||
40 | * @author: renchao | ||
41 | */ | ||
42 | export function getSysNoticeList (data) { | ||
43 | return request({ | ||
44 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysNoticeList', | ||
45 | method: 'post', | ||
46 | data | ||
47 | }) | ||
48 | } | ||
49 | |||
50 | /** | ||
51 | * @description: 获取法律法规列表 | ||
52 | * @param {*} data | ||
53 | * @author: renchao | ||
54 | */ | ||
55 | export function getSysPolicyList (data) { | ||
56 | return request({ | ||
57 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysPolicyList', | ||
58 | method: 'post', | ||
59 | data | ||
60 | }) | ||
61 | } | ||
62 | |||
63 | /** | ||
64 | * @description: 删除系统通知 | ||
65 | * @param {*} params | ||
66 | * @author: renchao | ||
67 | */ | ||
68 | export function deleteSysNotice (params) { | ||
69 | return request({ | ||
70 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/deleteSysNotice', | ||
71 | method: 'get', | ||
72 | params: params | ||
73 | }) | ||
74 | } | ||
75 | |||
76 | /** | ||
77 | * @description: 发布通知 | ||
78 | * @param {*} params | ||
79 | * @author: renchao | ||
80 | */ | ||
81 | export function publishNotice (params) { | ||
82 | return request({ | ||
83 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/publishNotice', | ||
84 | method: 'get', | ||
85 | params: params | ||
86 | }) | ||
87 | } | ||
88 | |||
89 | /** | ||
90 | * @description: 取消发布通知 | ||
91 | * @param {*} params | ||
92 | * @author: renchao | ||
93 | */ | ||
94 | export function unPublishNotice (params) { | ||
95 | return request({ | ||
96 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/unPublishNotice', | ||
97 | method: 'get', | ||
98 | params: params | ||
99 | }) | ||
100 | } | ||
101 | |||
102 | /** | ||
103 | * @description: 设置已读状态 | ||
104 | * @param {*} params | ||
105 | * @author: renchao | ||
106 | */ | ||
107 | export function setReadStatus (params) { | ||
108 | return request({ | ||
109 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/setReadStatus', | ||
110 | method: 'get', | ||
111 | params: params | ||
112 | }) | ||
113 | } | ||
114 | |||
115 | /** | ||
116 | * @description: 一键设置已读 | ||
117 | * @author: renchao | ||
118 | */ | ||
119 | export function setAllRead () { | ||
120 | return request({ | ||
121 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/setAllRead', | ||
122 | method: 'get' | ||
123 | }) | ||
124 | } |
src/api/sysPushRecord.js
0 → 100644
1 | /* | ||
2 | * @Description: 数据推送 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:23:50 | ||
5 | */ | ||
6 | import request from '@/utils/request' | ||
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
8 | |||
9 | |||
10 | // 数据上报推送查询 | ||
11 | export function list (data) { | ||
12 | return request({ | ||
13 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/list', | ||
14 | method: 'post', | ||
15 | data | ||
16 | }) | ||
17 | } | ||
18 | |||
19 | // 数据上报推送 | ||
20 | export function push (data) { | ||
21 | return request({ | ||
22 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/push', | ||
23 | method: 'post', | ||
24 | data | ||
25 | }) | ||
26 | } | ||
27 | |||
28 | // 数据上报推送 | ||
29 | export function detail (bsm) { | ||
30 | return request({ | ||
31 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/detail?bsm=' + bsm, | ||
32 | method: 'get' | ||
33 | }) | ||
34 | } | ||
35 | |||
36 | |||
37 |
src/api/sysSerial.js
0 → 100644
1 | /* | ||
2 | * @Description: 系统序列号设置 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:24:24 | ||
5 | */ | ||
6 | import request from '@/utils/request' | ||
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
8 | /** | ||
9 | * @description: 证书管理-获取序列号 | ||
10 | * @param {*} params | ||
11 | * @author: renchao | ||
12 | */ | ||
13 | export function getSysSerialSingle (params) { | ||
14 | return request({ | ||
15 | url: SERVER.SERVERAPI + '/rest/system/sysSerial/getSysSerialSingle', | ||
16 | method: 'get', | ||
17 | params: params | ||
18 | }) | ||
19 | } |
1 | /* | 1 | /* |
2 | * @Description: 系统管理 | 2 | * @Description: 申请登记业务规则 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-16 16:02:32 | 4 | * @LastEditTime: 2023-05-16 16:02:32 |
5 | */ | 5 | */ |
... | @@ -8,19 +8,6 @@ import request from '@/utils/request' | ... | @@ -8,19 +8,6 @@ import request from '@/utils/request' |
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
9 | 9 | ||
10 | /** | 10 | /** |
11 | * @description: 上传单个文件 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
15 | export function upload (data) { | ||
16 | return request({ | ||
17 | url: SERVER.SERVERAPI + '/rest/file/upload', | ||
18 | method: 'post', | ||
19 | data | ||
20 | }) | ||
21 | } | ||
22 | |||
23 | /** | ||
24 | * @description: 申请业务规则API-根据条件进行列表查询 | 11 | * @description: 申请业务规则API-根据条件进行列表查询 |
25 | * @param {*} data | 12 | * @param {*} data |
26 | * @author: renchao | 13 | * @author: renchao |
... | @@ -81,222 +68,3 @@ export function saveSqdjyw (data) { | ... | @@ -81,222 +68,3 @@ export function saveSqdjyw (data) { |
81 | data | 68 | data |
82 | }) | 69 | }) |
83 | } | 70 | } |
84 | |||
85 | |||
86 | /** | ||
87 | * @description: 其他及附记模板-列表详情 | ||
88 | * @param {*} data | ||
89 | * @author: renchao | ||
90 | */ | ||
91 | export function sysSqywmbszSearch (data) { | ||
92 | return request({ | ||
93 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search', | ||
94 | method: 'post', | ||
95 | data | ||
96 | }) | ||
97 | } | ||
98 | |||
99 | /** | ||
100 | * @description: 其他及附记模板-读取明细 | ||
101 | * @param {*} id | ||
102 | * @author: renchao | ||
103 | */ | ||
104 | export function getSysSqywmbszDetailById (id) { | ||
105 | return request({ | ||
106 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, | ||
107 | method: 'get' | ||
108 | }) | ||
109 | } | ||
110 | /** | ||
111 | * @description: 其他及附记模板-修改申请业务模板设置 | ||
112 | * @param {*} data | ||
113 | * @author: renchao | ||
114 | */ | ||
115 | export function updateSysSqywmbsz (data) { | ||
116 | return request({ | ||
117 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz', | ||
118 | method: 'put', | ||
119 | data | ||
120 | }) | ||
121 | } | ||
122 | |||
123 | /** | ||
124 | * @description: 新增系统通知 | ||
125 | * @param {*} data | ||
126 | * @author: renchao | ||
127 | */ | ||
128 | export function addSysNotice (data) { | ||
129 | return request({ | ||
130 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/addSysNotice', | ||
131 | method: 'post', | ||
132 | data | ||
133 | }) | ||
134 | } | ||
135 | |||
136 | /** | ||
137 | * @description: 编辑系统通知 | ||
138 | * @param {*} data | ||
139 | * @author: renchao | ||
140 | */ | ||
141 | export function updateSysNotice (data) { | ||
142 | return request({ | ||
143 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/updateSysNotice', | ||
144 | method: 'post', | ||
145 | data | ||
146 | }) | ||
147 | } | ||
148 | |||
149 | // 获取通知列表 | ||
150 | /** | ||
151 | * @description: | ||
152 | * @param {*} data | ||
153 | * @author: renchao | ||
154 | */ | ||
155 | export function getSysNoticeList (data) { | ||
156 | return request({ | ||
157 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysNoticeList', | ||
158 | method: 'post', | ||
159 | data | ||
160 | }) | ||
161 | } | ||
162 | |||
163 | /** | ||
164 | * @description: 获取法律法规列表 | ||
165 | * @param {*} data | ||
166 | * @author: renchao | ||
167 | */ | ||
168 | export function getSysPolicyList (data) { | ||
169 | return request({ | ||
170 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/getSysPolicyList', | ||
171 | method: 'post', | ||
172 | data | ||
173 | }) | ||
174 | } | ||
175 | |||
176 | /** | ||
177 | * @description: 删除系统通知 | ||
178 | * @param {*} params | ||
179 | * @author: renchao | ||
180 | */ | ||
181 | export function deleteSysNotice (params) { | ||
182 | return request({ | ||
183 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/deleteSysNotice', | ||
184 | method: 'get', | ||
185 | params: params | ||
186 | }) | ||
187 | } | ||
188 | |||
189 | /** | ||
190 | * @description: 发布通知 | ||
191 | * @param {*} params | ||
192 | * @author: renchao | ||
193 | */ | ||
194 | export function publishNotice (params) { | ||
195 | return request({ | ||
196 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/publishNotice', | ||
197 | method: 'get', | ||
198 | params: params | ||
199 | }) | ||
200 | } | ||
201 | |||
202 | /** | ||
203 | * @description: 取消发布通知 | ||
204 | * @param {*} params | ||
205 | * @author: renchao | ||
206 | */ | ||
207 | export function unPublishNotice (params) { | ||
208 | return request({ | ||
209 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/unPublishNotice', | ||
210 | method: 'get', | ||
211 | params: params | ||
212 | }) | ||
213 | } | ||
214 | |||
215 | /** | ||
216 | * @description: 设置已读状态 | ||
217 | * @param {*} params | ||
218 | * @author: renchao | ||
219 | */ | ||
220 | export function setReadStatus (params) { | ||
221 | return request({ | ||
222 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/setReadStatus', | ||
223 | method: 'get', | ||
224 | params: params | ||
225 | }) | ||
226 | } | ||
227 | |||
228 | /** | ||
229 | * @description: 一键设置已读 | ||
230 | * @author: renchao | ||
231 | */ | ||
232 | export function setAllRead () { | ||
233 | return request({ | ||
234 | url: SERVER.SERVERAPI + '/rest/system/sysNotice/setAllRead', | ||
235 | method: 'get' | ||
236 | }) | ||
237 | } | ||
238 | |||
239 | /** | ||
240 | * @description: 获取打印模板列表 | ||
241 | * @param {*} data | ||
242 | * @author: renchao | ||
243 | */ | ||
244 | export function selectPrintTemplateList (data) { | ||
245 | return request({ | ||
246 | url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList', | ||
247 | method: 'post', | ||
248 | data | ||
249 | }) | ||
250 | } | ||
251 | |||
252 | /** | ||
253 | * @description: 新增打印模板列表 | ||
254 | * @param {*} data | ||
255 | * @author: renchao | ||
256 | */ | ||
257 | export function addPrintTemplate (data) { | ||
258 | return request({ | ||
259 | url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate', | ||
260 | method: 'post', | ||
261 | data | ||
262 | }) | ||
263 | } | ||
264 | |||
265 | /** | ||
266 | * @description: 编辑打印模板列表 | ||
267 | * @param {*} data | ||
268 | * @author: renchao | ||
269 | */ | ||
270 | export function editPrintTemplate (data) { | ||
271 | return request({ | ||
272 | url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate', | ||
273 | method: 'post', | ||
274 | data | ||
275 | }) | ||
276 | } | ||
277 | |||
278 | /** | ||
279 | * @description: 删除打印模板列表 | ||
280 | * @param {*} params | ||
281 | * @author: renchao | ||
282 | */ | ||
283 | export function delPrintTemplate (params) { | ||
284 | return request({ | ||
285 | url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate', | ||
286 | method: 'get', | ||
287 | params: params | ||
288 | }) | ||
289 | } | ||
290 | |||
291 | /** | ||
292 | * @description: 根据模板编号获取打印模板 | ||
293 | * @param {*} params | ||
294 | * @author: renchao | ||
295 | */ | ||
296 | export function getPrintTemplateByCode (params) { | ||
297 | return request({ | ||
298 | url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode', | ||
299 | method: 'get', | ||
300 | params: params | ||
301 | }) | ||
302 | } | ... | ... |
src/api/sysSqywmbsz.js
0 → 100644
1 | /* | ||
2 | * @Description: 申请业务模板设置 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-16 16:02:32 | ||
5 | */ | ||
6 | |||
7 | import request from '@/utils/request' | ||
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
9 | |||
10 | /** | ||
11 | * @description: 其他及附记模板-列表详情 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
15 | export function sysSqywmbszSearch (data) { | ||
16 | return request({ | ||
17 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search', | ||
18 | method: 'post', | ||
19 | data | ||
20 | }) | ||
21 | } | ||
22 | |||
23 | /** | ||
24 | * @description: 其他及附记模板-读取明细 | ||
25 | * @param {*} id | ||
26 | * @author: renchao | ||
27 | */ | ||
28 | export function getSysSqywmbszDetailById (id) { | ||
29 | return request({ | ||
30 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, | ||
31 | method: 'get' | ||
32 | }) | ||
33 | } | ||
34 | /** | ||
35 | * @description: 其他及附记模板-修改申请业务模板设置 | ||
36 | * @param {*} data | ||
37 | * @author: renchao | ||
38 | */ | ||
39 | export function updateSysSqywmbsz (data) { | ||
40 | return request({ | ||
41 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz', | ||
42 | method: 'put', | ||
43 | data | ||
44 | }) | ||
45 | } |
... | @@ -28,61 +28,3 @@ export function getMenuInfo () { | ... | @@ -28,61 +28,3 @@ export function getMenuInfo () { |
28 | method: 'get', | 28 | method: 'get', |
29 | }) | 29 | }) |
30 | } | 30 | } |
31 | |||
32 | /** | ||
33 | * @description: 获取全部字典数据 | ||
34 | * @author: renchao | ||
35 | */ | ||
36 | export function getAllDict () { | ||
37 | return request({ | ||
38 | url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict', | ||
39 | method: 'post' | ||
40 | }) | ||
41 | } | ||
42 | export function getQlxxDictList (data) { | ||
43 | return request({ | ||
44 | url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList', | ||
45 | method: 'post', | ||
46 | data | ||
47 | }) | ||
48 | } | ||
49 | |||
50 | /** | ||
51 | * @description: 获取字典子级列表 | ||
52 | * @param {*} bsmDict | ||
53 | * @author: renchao | ||
54 | */ | ||
55 | export function getChildDictList (bsmDict) { | ||
56 | return request({ | ||
57 | url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList', | ||
58 | method: 'get', | ||
59 | params: { | ||
60 | bsmDict: bsmDict | ||
61 | } | ||
62 | }) | ||
63 | } | ||
64 | |||
65 | /** | ||
66 | * @description: 编辑字典数据 | ||
67 | * @param {*} data | ||
68 | * @author: renchao | ||
69 | */ | ||
70 | export function editDictNode (data) { | ||
71 | return request({ | ||
72 | url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode', | ||
73 | method: 'post', | ||
74 | data | ||
75 | }) | ||
76 | } | ||
77 | |||
78 | |||
79 | /** | ||
80 | * @description: 刷新字典缓存 | ||
81 | * @author: renchao | ||
82 | */ | ||
83 | export function refreshDictCache () { | ||
84 | return request({ | ||
85 | url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache', | ||
86 | method: 'get' | ||
87 | }) | ||
88 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-16 14:01:26 | 4 | * @LastEditTime: 2023-05-17 10:24:24 |
5 | */ | 5 | */ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | /** | 8 | /** |
9 | * @description: 流程图 | ||
10 | * @param {*} bsmSlsq | ||
11 | * @param {*} bestepid | ||
12 | * @author: renchao | ||
13 | */ | ||
14 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
15 | return request({ | ||
16 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
17 | method: 'get', | ||
18 | params: { | ||
19 | bsmSlsq: bsmSlsq, | ||
20 | bestepid: bestepid | ||
21 | } | ||
22 | }) | ||
23 | } | ||
24 | /** | ||
9 | * @description: 转出 | 25 | * @description: 转出 |
10 | * @param {*} data | 26 | * @param {*} data |
11 | * @author: renchao | 27 | * @author: renchao |
12 | */ | 28 | */ |
13 | export function completeTask (data) { | 29 | export function completeTask (data) { |
14 | return request({ | 30 | return request({ |
15 | url: SERVER.SERVERAPI + '/rest/business/workFlow/completeTask', | 31 | url: SERVER.SERVERAPI + '/rest/business/workFlow/completeTask', |
16 | method: 'post', | 32 | method: 'post', |
17 | data | 33 | data |
18 | }) | 34 | }) |
19 | } | 35 | } |
20 | /** | 36 | /** |
21 | * @description: 回退表格数据 | 37 | * @description: 回退表格数据 |
... | @@ -23,11 +39,11 @@ export function completeTask (data) { | ... | @@ -23,11 +39,11 @@ export function completeTask (data) { |
23 | * @author: renchao | 39 | * @author: renchao |
24 | */ | 40 | */ |
25 | export function getTaskBackNode (params) { | 41 | export function getTaskBackNode (params) { |
26 | return request({ | 42 | return request({ |
27 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getTaskBackNode', | 43 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getTaskBackNode', |
28 | method: 'get', | 44 | method: 'get', |
29 | params: params | 45 | params: params |
30 | }) | 46 | }) |
31 | } | 47 | } |
32 | /** | 48 | /** |
33 | * @description: 退回确认接口 | 49 | * @description: 退回确认接口 |
... | @@ -35,11 +51,11 @@ export function getTaskBackNode (params) { | ... | @@ -35,11 +51,11 @@ export function getTaskBackNode (params) { |
35 | * @author: renchao | 51 | * @author: renchao |
36 | */ | 52 | */ |
37 | export function sendBackTask (data) { | 53 | export function sendBackTask (data) { |
38 | return request({ | 54 | return request({ |
39 | url: SERVER.SERVERAPI + '/rest/business/workFlow/sendBackTask', | 55 | url: SERVER.SERVERAPI + '/rest/business/workFlow/sendBackTask', |
40 | method: 'post', | 56 | method: 'post', |
41 | data | 57 | data |
42 | }) | 58 | }) |
43 | } | 59 | } |
44 | /** | 60 | /** |
45 | * @description: 获取左侧列表 | 61 | * @description: 获取左侧列表 |
... | @@ -47,11 +63,11 @@ export function sendBackTask (data) { | ... | @@ -47,11 +63,11 @@ export function sendBackTask (data) { |
47 | * @author: renchao | 63 | * @author: renchao |
48 | */ | 64 | */ |
49 | export function leftMenu (data) { | 65 | export function leftMenu (data) { |
50 | return request({ | 66 | return request({ |
51 | url: SERVER.SERVERAPI + '/rest/business/workFlow/leftMenu', | 67 | url: SERVER.SERVERAPI + '/rest/business/workFlow/leftMenu', |
52 | method: 'post', | 68 | method: 'post', |
53 | data | 69 | data |
54 | }) | 70 | }) |
55 | } | 71 | } |
56 | 72 | ||
57 | /** | 73 | /** |
... | @@ -60,11 +76,11 @@ export function leftMenu (data) { | ... | @@ -60,11 +76,11 @@ export function leftMenu (data) { |
60 | * @author: renchao | 76 | * @author: renchao |
61 | */ | 77 | */ |
62 | export function getNextLinkInfo (params) { | 78 | export function getNextLinkInfo (params) { |
63 | return request({ | 79 | return request({ |
64 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getNextLinkInfo', | 80 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getNextLinkInfo', |
65 | method: 'get', | 81 | method: 'get', |
66 | params: params | 82 | params: params |
67 | }); | 83 | }); |
68 | } | 84 | } |
69 | 85 | ||
70 | /** | 86 | /** |
... | @@ -73,22 +89,22 @@ export function getNextLinkInfo (params) { | ... | @@ -73,22 +89,22 @@ export function getNextLinkInfo (params) { |
73 | * @author: renchao | 89 | * @author: renchao |
74 | */ | 90 | */ |
75 | export function getStepFormInfo (data) { | 91 | export function getStepFormInfo (data) { |
76 | return request({ | 92 | return request({ |
77 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getStepFormInfo', | 93 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getStepFormInfo', |
78 | method: 'post', | 94 | method: 'post', |
79 | data | 95 | data |
80 | }); | 96 | }); |
81 | } | 97 | } |
82 | /** | 98 | /** |
83 | * @description: 获取单元对应的环节表单信息 | 99 | * @description: 获取单元对应的环节表单信息 |
84 | * @param {*} data | 100 | * @param {*} data |
85 | * @author: renchao | 101 | * @author: renchao |
86 | */ | 102 | */ |
87 | export function getBlYbxStepFormInfo (data) { | 103 | export function getBlYbxStepFormInfo (data) { |
88 | return request({ | 104 | return request({ |
89 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getBlYbxStepFormInfo', | 105 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getBlYbxStepFormInfo', |
90 | method: 'post', | 106 | method: 'post', |
91 | data | 107 | data |
92 | }); | 108 | }); |
93 | } | 109 | } |
94 | /** | 110 | /** |
... | @@ -97,134 +113,145 @@ export function getStepFormInfo (data) { | ... | @@ -97,134 +113,145 @@ export function getStepFormInfo (data) { |
97 | * @author: renchao | 113 | * @author: renchao |
98 | */ | 114 | */ |
99 | export function stepExpandInfo (data) { | 115 | export function stepExpandInfo (data) { |
100 | return request({ | 116 | return request({ |
101 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stepExpandInfo', | 117 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stepExpandInfo', |
102 | method: 'post', | 118 | method: 'post', |
103 | data | 119 | data |
104 | }) | 120 | }) |
105 | } | 121 | } |
106 | |||
107 | /** | 122 | /** |
108 | * @description: 获取审批意见 | 123 | * @description: 登簿接口 |
109 | * @param {*} data | 124 | * @param {*} data |
110 | * @author: renchao | 125 | * @author: renchao |
111 | */ | 126 | */ |
112 | export function getSpyjList (data) { | 127 | export function record (data) { |
113 | return request({ | 128 | return request({ |
114 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getSpyjList', | 129 | url: SERVER.SERVERAPI + '/rest/business/workFlow/record', |
115 | method: 'post', | 130 | method: 'post', |
116 | data | 131 | data |
117 | }) | 132 | }) |
133 | } | ||
134 | |||
135 | // 终止任务 | ||
136 | export function stopTask (data) { | ||
137 | return request({ | ||
138 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask', | ||
139 | method: 'post', | ||
140 | data | ||
141 | }) | ||
118 | } | 142 | } |
119 | 143 | ||
120 | /** | 144 | /** |
121 | * @description: 保存审批意见 | 145 | * @description: 获取用户任务权限 |
122 | * @param {*} data | 146 | * @param {*} params |
123 | * @author: renchao | 147 | * @author: renchao |
124 | */ | 148 | */ |
125 | export function saveSpyj (data) { | 149 | export function judgeUserTaskPermission (params) { |
126 | return request({ | 150 | return request({ |
127 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyj', | 151 | url: SERVER.SERVERAPI + '/rest/business/workFlow/judgeUserTaskPermission', |
128 | method: 'post', | 152 | method: 'get', |
129 | data | 153 | params |
130 | }) | 154 | }) |
131 | } | 155 | } |
156 | |||
132 | /** | 157 | /** |
133 | * @description: 根据受理申请保存审批意见 | 158 | * @description: 获取申请书数据 |
134 | * @param {*} data | 159 | * @param {*} data |
135 | * @author: renchao | 160 | * @author: renchao |
136 | */ | 161 | */ |
137 | export function saveSpyjBySlsq (data) { | 162 | export function getPrintApplicationInfo (data) { |
138 | return request({ | 163 | return request({ |
139 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyjBySlsq', | 164 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getPrintApplicationInfo', |
140 | method: 'post', | 165 | method: 'post', |
141 | data | 166 | data |
142 | }) | 167 | }) |
143 | } | 168 | } |
144 | 169 | ||
145 | /** | 170 | /** |
146 | * @description: 获取用户常用意见 | 171 | * @description: 国有建设用地使用权/房屋使用权 -选择不动产单元 |
147 | * @param {*} data | 172 | * @param {*} data |
148 | * @author: renchao | 173 | * @author: renchao |
149 | */ | 174 | */ |
150 | export function getUserCommonOpinion (data) { | 175 | export function choiceBdcdy (data) { |
151 | return request({ | 176 | return request({ |
152 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getUserCommonOpinion', | 177 | url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy', |
153 | method: 'post', | 178 | method: 'post', |
154 | data | 179 | data |
155 | }) | 180 | }) |
156 | } | 181 | } |
157 | |||
158 | /** | 182 | /** |
159 | * @description: 新增用户常用意见 | 183 | * @description: 待办箱/不动产单元删除接口 |
160 | * @param {*} params | 184 | * @param {*} data |
161 | * @author: renchao | 185 | * @author: renchao |
162 | */ | 186 | */ |
163 | export function addUserCommonOpinion (params) { | 187 | export function deleteFlow (data) { |
164 | return request({ | 188 | return request({ |
165 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/addUserCommonOpinion', | 189 | url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteFlow', |
166 | method: 'get', | 190 | method: 'post', |
167 | params | 191 | data |
168 | }) | 192 | }) |
169 | } | 193 | } |
170 | |||
171 | /** | 194 | /** |
172 | * @description: 删除常用意见 | 195 | * @description: 业务办理-发起业务申请流程 |
173 | * @param {*} params | 196 | * @param {*} data |
174 | * @author: renchao | 197 | * @author: renchao |
175 | */ | 198 | */ |
176 | export function delUserCommonOpinion (params) { | 199 | export function startBusinessFlow (data) { |
177 | return request({ | 200 | return request({ |
178 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/delUserCommonOpinion', | 201 | url: SERVER.SERVERAPI + '/rest/business/workFlow/startBusinessFlow', |
179 | method: 'get', | 202 | method: 'post', |
180 | params | 203 | data |
181 | }) | 204 | }) |
182 | } | 205 | } |
183 | 206 | ||
184 | /** | 207 | /** |
185 | * @description: 登簿接口 | 208 | * @description: 业务办理-发起补录申请流程 |
186 | * @param {*} data | 209 | * @param {*} data |
187 | * @author: renchao | 210 | * @author: renchao |
188 | */ | 211 | */ |
189 | export function record (data) { | 212 | export function startRepairFlow (data) { |
190 | return request({ | 213 | return request({ |
191 | url: SERVER.SERVERAPI + '/rest/business/workFlow/record', | 214 | url: SERVER.SERVERAPI + '/rest/business/workFlow/startRepairFlow', |
192 | method: 'post', | 215 | method: 'post', |
193 | data | 216 | data |
194 | }) | 217 | }) |
195 | } | 218 | } |
196 | 219 | ||
197 | // 终止任务 | 220 | /** |
198 | export function stopTask (data) { | 221 | * @description: 申请列表删除 |
199 | return request({ | 222 | * @param {*} data |
200 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask', | 223 | * @author: renchao |
201 | method: 'post', | 224 | */ |
202 | data | 225 | export function deleteSlbdcdy (data) { |
203 | }) | 226 | return request({ |
227 | url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteSlbdcdy', | ||
228 | method: 'post', | ||
229 | data | ||
230 | }) | ||
204 | } | 231 | } |
205 | 232 | ||
206 | /** | 233 | /** |
207 | * @description: 获取用户任务权限 | 234 | * @description: 认领任务 |
208 | * @param {*} params | 235 | * @param {*} bsmSlsq |
236 | * @param {*} bestepid | ||
209 | * @author: renchao | 237 | * @author: renchao |
210 | */ | 238 | */ |
211 | export function judgeUserTaskPermission (params) { | 239 | export function claimTask (bsmSlsq, bestepid) { |
212 | return request({ | 240 | return request({ |
213 | url: SERVER.SERVERAPI + '/rest/business/workFlow/judgeUserTaskPermission', | 241 | url: SERVER.SERVERAPI + '/rest/business/workFlow/claimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid, |
214 | method: 'get', | 242 | method: 'get', |
215 | params | 243 | }) |
216 | }) | ||
217 | } | 244 | } |
218 | 245 | ||
219 | /** | 246 | /** |
220 | * @description: 获取申请书数据 | 247 | * @description: 取消认领任务 |
221 | * @param {*} data | 248 | * @param {*} bsmSlsq |
249 | * @param {*} bestepid | ||
222 | * @author: renchao | 250 | * @author: renchao |
223 | */ | 251 | */ |
224 | export function getPrintApplicationInfo (data) { | 252 | export function unClaimTask (bsmSlsq, bestepid) { |
225 | return request({ | 253 | return request({ |
226 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getPrintApplicationInfo', | 254 | url: SERVER.SERVERAPI + '/rest/business/workFlow/unClaimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid, |
227 | method: 'post', | 255 | method: 'get', |
228 | data | 256 | }) |
229 | }) | ||
230 | } | 257 | } | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:30:47 | 4 | * @LastEditTime: 2023-05-17 10:30:47 |
5 | */ | 5 | */ |
... | @@ -56,20 +56,3 @@ export function saveData (data, djlx) { | ... | @@ -56,20 +56,3 @@ export function saveData (data, djlx) { |
56 | data | 56 | data |
57 | }) | 57 | }) |
58 | } | 58 | } |
59 | |||
60 | /** | ||
61 | * @description: 流程图 | ||
62 | * @param {*} bsmSlsq | ||
63 | * @param {*} bestepid | ||
64 | * @author: renchao | ||
65 | */ | ||
66 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
67 | return request({ | ||
68 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
69 | method: 'get', | ||
70 | params: { | ||
71 | bsmSlsq: bsmSlsq, | ||
72 | bestepid: bestepid | ||
73 | } | ||
74 | }) | ||
75 | } | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:31:23 | 4 | * @LastEditTime: 2023-05-17 10:31:23 |
5 | */ | 5 | */ |
... | @@ -50,20 +50,3 @@ export function saveData (data) { | ... | @@ -50,20 +50,3 @@ export function saveData (data) { |
50 | data | 50 | data |
51 | }) | 51 | }) |
52 | } | 52 | } |
53 | |||
54 | /** | ||
55 | * @description: 流程图 | ||
56 | * @param {*} bsmSlsq | ||
57 | * @param {*} bestepid | ||
58 | * @author: renchao | ||
59 | */ | ||
60 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
61 | return request({ | ||
62 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
63 | method: 'get', | ||
64 | params: { | ||
65 | bsmSlsq: bsmSlsq, | ||
66 | bestepid: bestepid | ||
67 | } | ||
68 | }) | ||
69 | } | ... | ... |
src/api/workflow/search.js
0 → 100644
1 | /* | ||
2 | * @Description: 待办已办箱 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:13:24 | ||
5 | */ | ||
6 | |||
7 | import request from '@/utils/request' | ||
8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
9 | |||
10 | |||
11 | /** | ||
12 | * @description: 待办箱列表查询接口 | ||
13 | * @param {*} data | ||
14 | * @author: renchao | ||
15 | */ | ||
16 | export function searchTaskToDo (data) { | ||
17 | return request({ | ||
18 | url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo', | ||
19 | method: 'post', | ||
20 | data | ||
21 | }) | ||
22 | } | ||
23 | |||
24 | /** | ||
25 | * @description: 已办箱列表查询接口 | ||
26 | * @param {*} data | ||
27 | * @author: renchao | ||
28 | */ | ||
29 | export function searchTaskDone (data) { | ||
30 | return request({ | ||
31 | url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone', | ||
32 | method: 'post', | ||
33 | data | ||
34 | }) | ||
35 | } |
... | @@ -50,20 +50,3 @@ export function saveData (data) { | ... | @@ -50,20 +50,3 @@ export function saveData (data) { |
50 | data | 50 | data |
51 | }) | 51 | }) |
52 | } | 52 | } |
53 | |||
54 | /** | ||
55 | * @description: 流程图 | ||
56 | * @param {*} bsmSlsq | ||
57 | * @param {*} bestepid | ||
58 | * @author: renchao | ||
59 | */ | ||
60 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
61 | return request({ | ||
62 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
63 | method: 'get', | ||
64 | params: { | ||
65 | bsmSlsq: bsmSlsq, | ||
66 | bestepid: bestepid | ||
67 | } | ||
68 | }) | ||
69 | } | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:32:45 | 4 | * @LastEditTime: 2023-05-17 10:32:45 |
5 | */ | 5 | */ |
... | @@ -67,18 +67,6 @@ export function saveBatchData (data, djlx) { | ... | @@ -67,18 +67,6 @@ export function saveBatchData (data, djlx) { |
67 | data | 67 | data |
68 | }) | 68 | }) |
69 | } | 69 | } |
70 | |||
71 | // 流程图 | ||
72 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
73 | return request({ | ||
74 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
75 | method: 'get', | ||
76 | params: { | ||
77 | bsmSlsq: bsmSlsq, | ||
78 | bestepid: bestepid | ||
79 | } | ||
80 | }) | ||
81 | } | ||
82 | // 上传单个文件 | 70 | // 上传单个文件 |
83 | export function sjClmxUpload (data) { | 71 | export function sjClmxUpload (data) { |
84 | return request({ | 72 | return request({ | ... | ... |
This diff is collapsed.
Click to expand it.
src/api/zhcx.js
deleted
100644 → 0
1 | /* | ||
2 | * @Description: 综合查询-登记簿查询 | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-17 10:23:50 | ||
5 | */ | ||
6 | import request from '@/utils/request' | ||
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
8 | |||
9 | |||
10 | /** | ||
11 | * @description: 根据条件进行列表查询 | ||
12 | * @param {*} data | ||
13 | * @author: renchao | ||
14 | */ | ||
15 | export function getDjbBysearch (data) { | ||
16 | return request({ | ||
17 | url: SERVER.SERVERAPI + '/rest/zhcx/search/qlxx/getDjbBysearch', | ||
18 | method: 'post', | ||
19 | data: data | ||
20 | }) | ||
21 | } | ||
22 | |||
23 | /** | ||
24 | * @description: 获取登记封面 | ||
25 | * @param {*} qlbsm | ||
26 | * @author: renchao | ||
27 | */ | ||
28 | export function getDjbfm (qlbsm) { | ||
29 | return request({ | ||
30 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/djbfm/' + qlbsm, | ||
31 | method: 'get' | ||
32 | }) | ||
33 | } | ||
34 | |||
35 | /** | ||
36 | * @description: 获取登记目录 | ||
37 | * @param {*} data | ||
38 | * @author: renchao | ||
39 | */ | ||
40 | export function getBdcqldjmlByBdcdyid (data) { | ||
41 | return request({ | ||
42 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getBdcqldjmlByBdcdyid', | ||
43 | method: 'get', | ||
44 | params: data | ||
45 | }) | ||
46 | } | ||
47 | |||
48 | /** | ||
49 | * @description: 获取宗地信息 | ||
50 | * @param {*} qlbsm | ||
51 | * @author: renchao | ||
52 | */ | ||
53 | export function getZdjbxx (qlbsm) { | ||
54 | return request({ | ||
55 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/zdjbxx/' + qlbsm, | ||
56 | method: 'get' | ||
57 | }) | ||
58 | } | ||
59 | |||
60 | /** | ||
61 | * @description: 获取宗地信息 | ||
62 | * @param {*} data | ||
63 | * @author: renchao | ||
64 | */ | ||
65 | export function getZdjjxxBybdcdyid (data) { | ||
66 | return request({ | ||
67 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getZdjjxxBybdcdyid', | ||
68 | method: 'get', | ||
69 | params: data | ||
70 | }) | ||
71 | } | ||
72 | |||
73 | /** | ||
74 | * @description: 获取宗地信息 | ||
75 | * @param {*} data | ||
76 | * @author: renchao | ||
77 | */ | ||
78 | export function getZdjjxxBySLdy (data) { | ||
79 | return request({ | ||
80 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getZdjjxxBybdcdyid', | ||
81 | method: 'get', | ||
82 | params: data | ||
83 | }) | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | * @description: 获取不动产权利及其他事项 | ||
88 | * @param {*} data | ||
89 | * @author: renchao | ||
90 | */ | ||
91 | export function getBdcqljqtsx (data) { | ||
92 | return request({ | ||
93 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getBdcqljqtsx', | ||
94 | method: 'get', | ||
95 | params: data | ||
96 | }) | ||
97 | } | ||
98 | |||
99 | /** | ||
100 | * @description: 获取不动产权利及其他事项页面信息 | ||
101 | * @param {*} qlbsm | ||
102 | * @author: renchao | ||
103 | */ | ||
104 | export function getQlname (qlbsm) { | ||
105 | return request({ | ||
106 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/qlname/' + qlbsm, | ||
107 | method: 'get' | ||
108 | }) | ||
109 | } | ||
110 | |||
111 | /** | ||
112 | * @description: 获取权利详细信息 | ||
113 | * @param {*} qlbsm | ||
114 | * @author: renchao | ||
115 | */ | ||
116 | export function getDetail (qlbsm) { | ||
117 | return request({ | ||
118 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/detail/' + qlbsm, | ||
119 | method: 'get' | ||
120 | }) | ||
121 | } | ||
122 | |||
123 | /** | ||
124 | * @description: 获取建设用地使用权 | ||
125 | * @param {*} data | ||
126 | * @author: renchao | ||
127 | */ | ||
128 | export function getJsydsyqList (data) { | ||
129 | return request({ | ||
130 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getJsydsyqList', | ||
131 | method: 'post', | ||
132 | data | ||
133 | }) | ||
134 | } | ||
135 | /** | ||
136 | * @description: 获取抵押权 | ||
137 | * @param {*} data | ||
138 | * @author: renchao | ||
139 | */ | ||
140 | export function getDiyaqList (data) { | ||
141 | return request({ | ||
142 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyaqList', | ||
143 | method: 'post', | ||
144 | data | ||
145 | }) | ||
146 | } | ||
147 | /** | ||
148 | * @description: 获取地役权 | ||
149 | * @param {*} data | ||
150 | * @author: renchao | ||
151 | */ | ||
152 | export function getDiyiqList (data) { | ||
153 | return request({ | ||
154 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyiqList', | ||
155 | method: 'post', | ||
156 | data | ||
157 | }) | ||
158 | } | ||
159 | /** | ||
160 | * @description: 获取预告登记 | ||
161 | * @param {*} data | ||
162 | * @author: renchao | ||
163 | */ | ||
164 | export function getYgdjList (data) { | ||
165 | return request({ | ||
166 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYgdjList', | ||
167 | method: 'post', | ||
168 | data | ||
169 | }) | ||
170 | } | ||
171 | /** | ||
172 | * @description: 获取异议登记 | ||
173 | * @param {*} data | ||
174 | * @author: renchao | ||
175 | */ | ||
176 | export function getYydjList (data) { | ||
177 | return request({ | ||
178 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYydjList', | ||
179 | method: 'post', | ||
180 | data | ||
181 | }) | ||
182 | } | ||
183 | /** | ||
184 | * @description: 获取查封登记 | ||
185 | * @param {*} data | ||
186 | * @author: renchao | ||
187 | */ | ||
188 | export function getCfdjList (data) { | ||
189 | return request({ | ||
190 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getCfdjList', | ||
191 | method: 'post', | ||
192 | data | ||
193 | }) | ||
194 | } | ||
195 | /** | ||
196 | * @description: 进度查询列表 | ||
197 | * @param {*} data | ||
198 | * @author: renchao | ||
199 | */ | ||
200 | export function getJdcxBysearch (data) { | ||
201 | return request({ | ||
202 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getJdcxBysearch', | ||
203 | method: 'post', | ||
204 | data | ||
205 | }) | ||
206 | } | ||
207 | |||
208 | /** | ||
209 | * @description: 证书领取查询 | ||
210 | * @param {*} data | ||
211 | * @author: renchao | ||
212 | */ | ||
213 | export function getBdcqzReceiveList (data) { | ||
214 | return request({ | ||
215 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getBdcqzReceiveList', | ||
216 | method: 'post', | ||
217 | data | ||
218 | }) | ||
219 | } | ||
220 | |||
221 | /** | ||
222 | * @description: 在建工程抵押查询 | ||
223 | * @param {*} data | ||
224 | * @author: renchao | ||
225 | */ | ||
226 | export function getZjgcdyList (data) { | ||
227 | return request({ | ||
228 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getZjgcdyList', | ||
229 | method: 'post', | ||
230 | data | ||
231 | }) | ||
232 | } | ||
233 | |||
234 | // 数据上报推送查询 | ||
235 | export function getSjsbPushList (data) { | ||
236 | return request({ | ||
237 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/list', | ||
238 | method: 'post', | ||
239 | data | ||
240 | }) | ||
241 | } | ||
242 | |||
243 | // 数据上报推送 | ||
244 | export function pushSjsbRecord (data) { | ||
245 | return request({ | ||
246 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/push', | ||
247 | method: 'post', | ||
248 | data | ||
249 | }) | ||
250 | } | ||
251 | |||
252 | // 数据上报推送 | ||
253 | export function detail (bsm) { | ||
254 | return request({ | ||
255 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/detail?bsm=' + bsm, | ||
256 | method: 'get' | ||
257 | }) | ||
258 | } | ||
259 | |||
260 | |||
261 |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: 证书管理 |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:24:24 | 4 | * @LastEditTime: 2023-05-17 10:24:24 |
5 | */ | 5 | */ |
6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
8 | /** | 8 | |
9 | * @description: 证书管理-获取序列号 | ||
10 | * @param {*} params | ||
11 | * @author: renchao | ||
12 | */ | ||
13 | export function getSysSerialSingle (params) { | ||
14 | return request({ | ||
15 | url: SERVER.SERVERAPI + '/rest/system/sysSerial/getSysSerialSingle', | ||
16 | method: 'get', | ||
17 | params: params | ||
18 | }) | ||
19 | } | ||
20 | /** | 9 | /** |
21 | * @description: 证书管理-证书入库列表 | 10 | * @description: 证书管理-证书入库列表 |
22 | * @param {*} data | 11 | * @param {*} data |
... | @@ -162,4 +151,4 @@ export function getZsglInfo (params) { | ... | @@ -162,4 +151,4 @@ export function getZsglInfo (params) { |
162 | method: 'get', | 151 | method: 'get', |
163 | params | 152 | params |
164 | }) | 153 | }) |
165 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
154 | } | ... | ... |
... | @@ -127,7 +127,7 @@ | ... | @@ -127,7 +127,7 @@ |
127 | // 单选 | 127 | // 单选 |
128 | singleElection (row) { | 128 | singleElection (row) { |
129 | this.selected = this.data.indexOf(row); | 129 | this.selected = this.data.indexOf(row); |
130 | this.$emit('row-click', row) | 130 | // this.$emit('row-click', row) |
131 | }, | 131 | }, |
132 | 132 | ||
133 | tableRowClassName ({ row, rowIndex }) { | 133 | tableRowClassName ({ row, rowIndex }) { | ... | ... |
... | @@ -89,7 +89,7 @@ import lineItem from "./lineItem.vue"; | ... | @@ -89,7 +89,7 @@ import lineItem from "./lineItem.vue"; |
89 | import ImportGeo from './tx/importGeo' | 89 | import ImportGeo from './tx/importGeo' |
90 | port geoUtils from "@/components/lineTree/tx/js/geoUtils"; | 90 | port geoUtils from "@/components/lineTree/tx/js/geoUtils"; |
91 | rt featureUpdate from "@/libs/map/featureUpdate"; | 91 | rt featureUpdate from "@/libs/map/featureUpdate"; |
92 | ort { deleteLjz, deleteZdy } from "@api/lpb" | 92 | ort { deleteLjz, deleteZdy } from "@api/lpcx.js" |
93 | exportTemJson from '@/api/json/exportTemplate.json' | 93 | exportTemJson from '@/api/json/exportTemplate.json' |
94 | mport sxdr from '@/components/sxdr/sxdr' | 94 | mport sxdr from '@/components/sxdr/sxdr' |
95 | port default { | 95 | port default { |
... | @@ -99,7 +99,7 @@ import ImportGeo from './tx/importGeo' | ... | @@ -99,7 +99,7 @@ import ImportGeo from './tx/importGeo' |
99 | e: Array, | 99 | e: Array, |
100 | ault: () => { | 100 | ault: () => { |
101 | turn[]; | 101 | turn[]; |
102 | 102 | ||
103 | : { | 103 | : { |
104 | e: Number, | 104 | e: Number, |
105 | ault: 16, | 105 | ault: 16, |
... | @@ -209,7 +209,7 @@ import ImportGeo from './tx/importGeo' | ... | @@ -209,7 +209,7 @@ import ImportGeo from './tx/importGeo' |
209 | f(res.success) { | 209 | f(res.success) { |
210 | this.loading() | 210 | this.loading() |
211 | } | 211 | } |
212 | 212 | ||
213 | , | 213 | , |
214 | 变菜单数据 | 214 | 变菜单数据 |
215 | Visible(data) { | 215 | Visible(data) { | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:34:47 | 4 | * @LastEditTime: 2023-05-17 10:34:47 |
5 | */ | 5 | */ |
6 | import { getAllDict } from '@/api/user' | 6 | import { getAllDict } from '@/api/dict' |
7 | const state = { | 7 | const state = { |
8 | dictData: {}, | 8 | dictData: {}, |
9 | addDict: false, | 9 | addDict: false, | ... | ... |
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-04-25 17:05:49 | 4 | * @LastEditTime: 2023-07-14 16:24:26 |
5 | */ | 5 | */ |
6 | import store from '@/store' | 6 | import store from '@/store' |
7 | // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 | 7 | // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 |
... | @@ -44,4 +44,29 @@ export default class filter { | ... | @@ -44,4 +44,29 @@ export default class filter { |
44 | getDictData (val) { | 44 | getDictData (val) { |
45 | return store.getters.dictData[val] | 45 | return store.getters.dictData[val] |
46 | } | 46 | } |
47 | // 状态 | ||
48 | yWstatus (row) { | ||
49 | let text = ""; | ||
50 | // 定义策略对象 | ||
51 | const strategies = { | ||
52 | djblzt: "正在办理", | ||
53 | zjgcdyzt: ",在建工程抵押", | ||
54 | ycfzt: ",已预查封", | ||
55 | cfzt: ",已查封", | ||
56 | diyizt: ",已地役", | ||
57 | yyzt: ",异议中", | ||
58 | xzzt: ",已限制", | ||
59 | ygmmzt: ",已预告买卖", | ||
60 | ygdyzt: ",已预告抵押", | ||
61 | dyzt: ",已抵押" | ||
62 | }; | ||
63 | |||
64 | for (let key in row) { | ||
65 | if (row[key] === 1 && strategies[key]) { | ||
66 | text += strategies[key]; | ||
67 | } | ||
68 | } | ||
69 | |||
70 | return text; | ||
71 | } | ||
47 | } | 72 | } |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
16 | </div> | 16 | </div> |
17 | </template> | 17 | </template> |
18 | <script> | 18 | <script> |
19 | import { deleteFlow } from "@/api/ywbl.js" | 19 | import { deleteFlow } from "@/api/workFlow.js" |
20 | import store from '@/store/index.js' | 20 | import store from '@/store/index.js' |
21 | export default { | 21 | export default { |
22 | components: {}, | 22 | components: {}, | ... | ... |
... | @@ -60,11 +60,10 @@ | ... | @@ -60,11 +60,10 @@ |
60 | </template> | 60 | </template> |
61 | <script> | 61 | <script> |
62 | import { mapGetters } from "vuex"; | 62 | import { mapGetters } from "vuex"; |
63 | import { leftMenu } from "@/api/fqsq.js"; | 63 | import { leftMenu, deleteSlbdcdy } from "@/api/workFlow.js"; |
64 | import { deleteRepairRecord } from "@/api/djbbl.js"; | 64 | import { deleteRepairRecord } from "@/api/djbbl.js"; |
65 | import { leftMenubl } from "@/api/djbbl.js"; | 65 | import { leftMenubl } from "@/api/djbbl.js"; |
66 | import { deleteSlbdcdy } from "@/api/ywbl.js"; | 66 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
67 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | ||
68 | import { loadTreeData, getNode } from "./djbFrameData.js"; | 67 | import { loadTreeData, getNode } from "./djbFrameData.js"; |
69 | export default { | 68 | export default { |
70 | data() { | 69 | data() { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:41:45 | 4 | * @LastEditTime: 2023-05-17 10:41:45 |
5 | --> | 5 | --> |
... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
21 | </template> | 21 | </template> |
22 | 22 | ||
23 | <script> | 23 | <script> |
24 | import { stopTask } from "@/api/fqsq.js"; | 24 | import { stopTask } from "@/api/workFlow.js"; |
25 | export default { | 25 | export default { |
26 | props: { | 26 | props: { |
27 | formData: { | 27 | formData: { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:41:57 | 4 | * @LastEditTime: 2023-05-17 10:41:57 |
5 | --> | 5 | --> |
... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
46 | 46 | ||
47 | <script> | 47 | <script> |
48 | 48 | ||
49 | import { getTaskBackNode, sendBackTask } from "@/api/fqsq.js" | 49 | import { getTaskBackNode, sendBackTask } from "@/api/workFlow.js" |
50 | import { popupCacel } from "@/utils/popup.js"; | 50 | import { popupCacel } from "@/utils/popup.js"; |
51 | 51 | ||
52 | export default { | 52 | export default { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:42:01 | 4 | * @LastEditTime: 2023-05-17 10:42:01 |
5 | --> | 5 | --> |
... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
24 | </template> | 24 | </template> |
25 | 25 | ||
26 | <script> | 26 | <script> |
27 | import { completeTask, getNextLinkInfo } from "@/api/fqsq.js" | 27 | import { completeTask, getNextLinkInfo } from "@/api/workFlow.js" |
28 | export default { | 28 | export default { |
29 | components: { | 29 | components: { |
30 | }, | 30 | }, | ... | ... |
... | @@ -3,9 +3,7 @@ | ... | @@ -3,9 +3,7 @@ |
3 | * @Autor: miaofang | 3 | * @Autor: miaofang |
4 | * @LastEditTime: 2023-06-14 15:01:31 | 4 | * @LastEditTime: 2023-06-14 15:01:31 |
5 | */ | 5 | */ |
6 | import { getWorkFlowImage } from "@/api/workflow/jsydsyqFlow.js"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
7 | import { getPrintTemplateByCode } from "@/api/system"; | ||
8 | import { getPrintApplicationInfo } from "@/api/fqsq"; | ||
9 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; | 7 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; |
10 | import { uploadUndo } from "@/api/clxx"; | 8 | import { uploadUndo } from "@/api/clxx"; |
11 | import { deleteFlow } from "@/api/djbbl"; | 9 | import { deleteFlow } from "@/api/djbbl"; |
... | @@ -15,7 +13,10 @@ import { | ... | @@ -15,7 +13,10 @@ import { |
15 | record, | 13 | record, |
16 | completeTask, | 14 | completeTask, |
17 | getNextLinkInfo, | 15 | getNextLinkInfo, |
18 | } from "@/api/fqsq.js"; | 16 | getWorkFlowImage, |
17 | getPrintApplicationInfo, | ||
18 | unClaimTask | ||
19 | } from "@/api/workFlow.js"; | ||
19 | import { mapGetters } from 'vuex' | 20 | import { mapGetters } from 'vuex' |
20 | import { log } from "bpmn-js-token-simulation"; | 21 | import { log } from "bpmn-js-token-simulation"; |
21 | export default { | 22 | export default { | ... | ... |
... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
69 | <script> | 69 | <script> |
70 | import WorkFlow from "./mixin/index"; | 70 | import WorkFlow from "./mixin/index"; |
71 | import { getForm } from "./flowform"; | 71 | import { getForm } from "./flowform"; |
72 | import { getStepFormInfo } from "@/api/fqsq.js"; | 72 | import { getStepFormInfo } from "@/api/workFlow.js"; |
73 | import NoticeBar from "@/components/NoticeBar/index"; | 73 | import NoticeBar from "@/components/NoticeBar/index"; |
74 | import ProcessViewer from "./components/processViewer.vue"; | 74 | import ProcessViewer from "./components/processViewer.vue"; |
75 | // 引入左侧菜单 | 75 | // 引入左侧菜单 |
... | @@ -83,7 +83,7 @@ | ... | @@ -83,7 +83,7 @@ |
83 | // 获取权利类型数组 | 83 | // 获取权利类型数组 |
84 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; | 84 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; |
85 | 85 | ||
86 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 86 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
87 | export default { | 87 | export default { |
88 | components: { | 88 | components: { |
89 | selectBdc, | 89 | selectBdc, | ... | ... |
... | @@ -73,7 +73,7 @@ | ... | @@ -73,7 +73,7 @@ |
73 | <script> | 73 | <script> |
74 | import WorkFlow from "./mixin/index"; | 74 | import WorkFlow from "./mixin/index"; |
75 | import { getForm } from "./flowform"; | 75 | import { getForm } from "./flowform"; |
76 | import { getBlYbxStepFormInfo } from "@/api/fqsq.js"; | 76 | import { getBlYbxStepFormInfo } from "@/api/workFlow.js"; |
77 | import NoticeBar from "@/components/NoticeBar/index"; | 77 | import NoticeBar from "@/components/NoticeBar/index"; |
78 | import ProcessViewer from "./components/processViewer.vue"; | 78 | import ProcessViewer from "./components/processViewer.vue"; |
79 | // 引入左侧菜单 | 79 | // 引入左侧菜单 |
... | @@ -87,7 +87,7 @@ import { addRepairRecord } from "@/api/djbbl.js"; | ... | @@ -87,7 +87,7 @@ import { addRepairRecord } from "@/api/djbbl.js"; |
87 | // 获取权利类型数组 | 87 | // 获取权利类型数组 |
88 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; | 88 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; |
89 | 89 | ||
90 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 90 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
91 | export default { | 91 | export default { |
92 | components: { | 92 | components: { |
93 | selectBdc, | 93 | selectBdc, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-12 09:23:03 | 4 | * @LastEditTime: 2023-07-12 09:23:03 |
5 | --> | 5 | --> |
... | @@ -112,7 +112,7 @@ | ... | @@ -112,7 +112,7 @@ |
112 | import * as G2 from '@antv/g2' | 112 | import * as G2 from '@antv/g2' |
113 | import vueSeamlessScroll from "vue-seamless-scroll" | 113 | import vueSeamlessScroll from "vue-seamless-scroll" |
114 | import { getHomeNoticeList, getHomeTodoList, getHomeDoneList, getHomeFrequentProjects } from "@/api/home.js"; | 114 | import { getHomeNoticeList, getHomeTodoList, getHomeDoneList, getHomeFrequentProjects } from "@/api/home.js"; |
115 | import { setReadStatus } from '@/api/system' | 115 | import { setReadStatus } from '@/api/sysNotice' |
116 | import addDialog from "./components/addProject.vue"; | 116 | import addDialog from "./components/addProject.vue"; |
117 | export default { | 117 | export default { |
118 | name: 'home', | 118 | name: 'home', |
... | @@ -363,4 +363,4 @@ | ... | @@ -363,4 +363,4 @@ |
363 | padding: 3px 10px 5px 10px; | 363 | padding: 3px 10px 5px 10px; |
364 | overflow: hidden; | 364 | overflow: hidden; |
365 | } | 365 | } |
366 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
366 | </style> | ... | ... |
... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
58 | </template> | 58 | </template> |
59 | 59 | ||
60 | <script> | 60 | <script> |
61 | import { addSysInterface, editSysInterface} from "@/api/jkfw.js" | 61 | import { addSysInterface, editSysInterface} from "@/api/ptjk.js" |
62 | export default { | 62 | export default { |
63 | components: { | 63 | components: { |
64 | }, | 64 | }, | ... | ... |
... | @@ -44,10 +44,10 @@ | ... | @@ -44,10 +44,10 @@ |
44 | 44 | ||
45 | <script> | 45 | <script> |
46 | import vueJsonEditor from 'vue-json-editor' | 46 | import vueJsonEditor from 'vue-json-editor' |
47 | import {interfaceRetrieve } from "@/api/jkfw.js" | 47 | import {interfaceRetrieve } from "@/api/ptjk.js" |
48 | export default { | 48 | export default { |
49 | components: { | 49 | components: { |
50 | vueJsonEditor | 50 | vueJsonEditor |
51 | }, | 51 | }, |
52 | computed: { | 52 | computed: { |
53 | }, | 53 | }, |
... | @@ -95,7 +95,7 @@ export default { | ... | @@ -95,7 +95,7 @@ export default { |
95 | //关闭弹窗 | 95 | //关闭弹窗 |
96 | closeDialog () { | 96 | closeDialog () { |
97 | this.$emit("input", false); | 97 | this.$emit("input", false); |
98 | this.interfaceParams = {} | 98 | this.interfaceParams = {} |
99 | this.returnMessage = {} | 99 | this.returnMessage = {} |
100 | this.hasJsonFlag = true | 100 | this.hasJsonFlag = true |
101 | }, | 101 | }, | ... | ... |
... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
40 | import { mapGetters } from 'vuex' | 40 | import { mapGetters } from 'vuex' |
41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
42 | import { datas, sendThis } from "./ptjkdata" | 42 | import { datas, sendThis } from "./ptjkdata" |
43 | import { getSysInterfaceList } from '@/api/jkfw' | 43 | import { getSysInterfaceList } from '@/api/ptjk.js' |
44 | import addDialog from "./components/addDialog.vue" | 44 | import addDialog from "./components/addDialog.vue" |
45 | import retrieveDialog from "./components/retrieveDialog.vue" | 45 | import retrieveDialog from "./components/retrieveDialog.vue" |
46 | export default { | 46 | export default { | ... | ... |
... | @@ -194,7 +194,7 @@ | ... | @@ -194,7 +194,7 @@ |
194 | <script> | 194 | <script> |
195 | import lpbContent from "./lpbContent/index"; | 195 | import lpbContent from "./lpbContent/index"; |
196 | import selectZrzH from "../ywbl/ywsq/components/selectZrzH"; | 196 | import selectZrzH from "../ywbl/ywsq/components/selectZrzH"; |
197 | import { getLpbFwytAndQlxz, getLpbQsxtj, getLpbTj } from "@/api/lpb"; | 197 | import { getLpbFwytAndQlxz, getLpbQsxtj, getLpbTj } from "@/api/lpcx.js"; |
198 | export default { | 198 | export default { |
199 | name: "lpb", | 199 | name: "lpb", |
200 | props: { | 200 | props: { | ... | ... |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
30 | </div> | 30 | </div> |
31 | </template> | 31 | </template> |
32 | <script> | 32 | <script> |
33 | import { getLpb } from "@/api/lpb"; | 33 | import { getLpb } from "@/api/lpcx.js"; |
34 | import chCpn from "./ch.vue"; | 34 | import chCpn from "./ch.vue"; |
35 | import zdyCpn from "./zdys.vue"; | 35 | import zdyCpn from "./zdys.vue"; |
36 | import ljzsCpn from "./ljzs.vue"; | 36 | import ljzsCpn from "./ljzs.vue"; | ... | ... |
... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
23 | </template> | 23 | </template> |
24 | 24 | ||
25 | <script> | 25 | <script> |
26 | import { getBdcqldjmlByBdcdyid } from "@/api/registerBook.js"; | 26 | import { getBdcqldjmlByBdcdyid } from "@/api/djbDetail.js"; |
27 | export default { | 27 | export default { |
28 | data() { | 28 | data() { |
29 | return { | 29 | return { | ... | ... |
... | @@ -49,7 +49,7 @@ | ... | @@ -49,7 +49,7 @@ |
49 | </template> | 49 | </template> |
50 | 50 | ||
51 | <script> | 51 | <script> |
52 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 52 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
53 | export default { | 53 | export default { |
54 | name: "bdcqljqtsx", | 54 | name: "bdcqljqtsx", |
55 | data() { | 55 | data() { | ... | ... |
... | @@ -60,7 +60,7 @@ | ... | @@ -60,7 +60,7 @@ |
60 | <script> | 60 | <script> |
61 | import { datas } from "./qlxxFormData.js"; | 61 | import { datas } from "./qlxxFormData.js"; |
62 | import { getSjlx } from "@/utils/dictionary.js"; | 62 | import { getSjlx } from "@/utils/dictionary.js"; |
63 | import { getCfdjList } from "@/api/registerBook.js"; | 63 | import { getCfdjList } from "@/api/djbDetail.js"; |
64 | export default { | 64 | export default { |
65 | data () { | 65 | data () { |
66 | return { | 66 | return { | ... | ... |
... | @@ -70,7 +70,7 @@ | ... | @@ -70,7 +70,7 @@ |
70 | <script> | 70 | <script> |
71 | import { datas } from "./qlxxFormData.js"; | 71 | import { datas } from "./qlxxFormData.js"; |
72 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 72 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
73 | import { getDiyaqList } from "@/api/registerBook.js"; | 73 | import { getDiyaqList } from "@/api/djbDetail.js"; |
74 | export default { | 74 | export default { |
75 | data () { | 75 | data () { |
76 | return { | 76 | return { | ... | ... |
... | @@ -64,7 +64,7 @@ | ... | @@ -64,7 +64,7 @@ |
64 | <script> | 64 | <script> |
65 | import { datas } from "./qlxxFormData.js"; | 65 | import { datas } from "./qlxxFormData.js"; |
66 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 66 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
67 | import { getDiyiqList } from "@/api/registerBook.js"; | 67 | import { getDiyiqList } from "@/api/djbDetail.js"; |
68 | export default { | 68 | export default { |
69 | data () { | 69 | data () { |
70 | return { | 70 | return { | ... | ... |
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | </div> | 11 | </div> |
12 | </template> | 12 | </template> |
13 | <script> | 13 | <script> |
14 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 14 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
15 | import { loadTreeData, getNode } from "./djbFrameData.js"; | 15 | import { loadTreeData, getNode } from "./djbFrameData.js"; |
16 | export default { | 16 | export default { |
17 | data () { | 17 | data () { | ... | ... |
... | @@ -11,12 +11,12 @@ | ... | @@ -11,12 +11,12 @@ |
11 | </div> | 11 | </div> |
12 | </template> | 12 | </template> |
13 | <script> | 13 | <script> |
14 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 14 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
15 | import { loadTreeData, getNode } from "./djbFrameData.js"; | 15 | import { loadTreeData, getNode } from "./djbFrameData.js"; |
16 | import { searchTaskToDo } from "@/api/ywbl"; | 16 | import { searchTaskToDo } from "@/api/workflow/search.js"; |
17 | import { | 17 | import { |
18 | leftMenu | 18 | leftMenu |
19 | } from "@/api/fqsq.js"; | 19 | } from "@/api/workFlow.js"; |
20 | export default { | 20 | export default { |
21 | data () { | 21 | data () { |
22 | return { | 22 | return { | ... | ... |
... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
59 | <script> | 59 | <script> |
60 | import { datas } from "./qlxxFormData.js"; | 60 | import { datas } from "./qlxxFormData.js"; |
61 | import { getSjlx } from "@/utils/dictionary.js"; | 61 | import { getSjlx } from "@/utils/dictionary.js"; |
62 | import { getJsydsyqList } from "@/api/registerBook.js"; | 62 | import { getJsydsyqList } from "@/api/djbDetail.js"; |
63 | export default { | 63 | export default { |
64 | data () { | 64 | data () { |
65 | return { | 65 | return { | ... | ... |
... | @@ -70,7 +70,7 @@ | ... | @@ -70,7 +70,7 @@ |
70 | <script> | 70 | <script> |
71 | import { datas } from "./qlxxFormData.js"; | 71 | import { datas } from "./qlxxFormData.js"; |
72 | import { getSjlx } from "@/utils/dictionary.js"; | 72 | import { getSjlx } from "@/utils/dictionary.js"; |
73 | import { getFdcq2List } from "@/api/registerBook.js"; | 73 | import { getFdcq2List } from "@/api/djbDetail.js"; |
74 | export default { | 74 | export default { |
75 | data () { | 75 | data () { |
76 | return { | 76 | return { | ... | ... |
... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
59 | <script> | 59 | <script> |
60 | import { datas } from "./qlxxFormData.js"; | 60 | import { datas } from "./qlxxFormData.js"; |
61 | import { getSjlx } from "@/utils/dictionary.js"; | 61 | import { getSjlx } from "@/utils/dictionary.js"; |
62 | import { getJsydsyqList } from "@/api/registerBook.js"; | 62 | import { getJsydsyqList } from "@/api/djbDetail.js"; |
63 | export default { | 63 | export default { |
64 | data () { | 64 | data () { |
65 | return { | 65 | return { | ... | ... |
... | @@ -96,7 +96,7 @@ | ... | @@ -96,7 +96,7 @@ |
96 | <script> | 96 | <script> |
97 | import { datas } from "./qlxxFormData.js"; | 97 | import { datas } from "./qlxxFormData.js"; |
98 | import { getSjlx } from "@/utils/dictionary.js"; | 98 | import { getSjlx } from "@/utils/dictionary.js"; |
99 | import { getNydsyqList } from "@/api/registerBook.js"; | 99 | import { getNydsyqList } from "@/api/djbDetail.js"; |
100 | export default { | 100 | export default { |
101 | data () { | 101 | data () { |
102 | return { | 102 | return { | ... | ... |
... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
59 | <script> | 59 | <script> |
60 | import { datas } from "./qlxxFormData.js"; | 60 | import { datas } from "./qlxxFormData.js"; |
61 | import { getSjlx } from "@/utils/dictionary.js"; | 61 | import { getSjlx } from "@/utils/dictionary.js"; |
62 | import { getTdsyqList } from "@/api/registerBook.js"; | 62 | import { getTdsyqList } from "@/api/djbDetail.js"; |
63 | export default { | 63 | export default { |
64 | data () { | 64 | data () { |
65 | return { | 65 | return { | ... | ... |
... | @@ -57,7 +57,7 @@ | ... | @@ -57,7 +57,7 @@ |
57 | 57 | ||
58 | <script> | 58 | <script> |
59 | import { datas } from "./qlxxFormData.js"; | 59 | import { datas } from "./qlxxFormData.js"; |
60 | import { getYgdjList } from "@/api/registerBook.js"; | 60 | import { getYgdjList } from "@/api/djbDetail.js"; |
61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
62 | export default { | 62 | export default { |
63 | data () { | 63 | data () { | ... | ... |
... | @@ -57,7 +57,7 @@ | ... | @@ -57,7 +57,7 @@ |
57 | 57 | ||
58 | <script> | 58 | <script> |
59 | import { datas } from "./qlxxFormData.js"; | 59 | import { datas } from "./qlxxFormData.js"; |
60 | import { getYydjList } from "@/api/registerBook.js"; | 60 | import { getYydjList } from "@/api/djbDetail.js"; |
61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
62 | export default { | 62 | export default { |
63 | data () { | 63 | data () { | ... | ... |
... | @@ -133,7 +133,7 @@ | ... | @@ -133,7 +133,7 @@ |
133 | 133 | ||
134 | <script> | 134 | <script> |
135 | import store from '@/store/index.js' | 135 | import store from '@/store/index.js' |
136 | import { getZdjjxxBybdcdyid } from "@/api/registerBook.js"; | 136 | import { getZdjjxxBybdcdyid } from "@/api/djbDetail.js"; |
137 | 137 | ||
138 | export default { | 138 | export default { |
139 | data () { | 139 | data () { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-26 15:40:23 | 4 | * @LastEditTime: 2023-05-26 15:40:23 |
5 | --> | 5 | --> |
... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
16 | </div> | 16 | </div> |
17 | </template> | 17 | </template> |
18 | <script> | 18 | <script> |
19 | import { pushSjsbRecord } from "@/api/zhcx.js"; | 19 | import { push } from "@/api/sysPushRecord.js"; |
20 | export default { | 20 | export default { |
21 | props: { | 21 | props: { |
22 | formData: { | 22 | formData: { |
... | @@ -29,7 +29,7 @@ | ... | @@ -29,7 +29,7 @@ |
29 | methods: { | 29 | methods: { |
30 | pushRecord () { | 30 | pushRecord () { |
31 | this.$startLoading() | 31 | this.$startLoading() |
32 | pushSjsbRecord(this.formData).then((res) => { | 32 | push(this.formData).then((res) => { |
33 | this.$endLoading() | 33 | this.$endLoading() |
34 | if (res.code === 200) { | 34 | if (res.code === 200) { |
35 | this.$message.success("推送成功"); | 35 | this.$message.success("推送成功"); | ... | ... |
... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
32 | import { mapGetters } from "vuex"; | 32 | import { mapGetters } from "vuex"; |
33 | import table from "@/utils/mixin/table"; | 33 | import table from "@/utils/mixin/table"; |
34 | import { datas, sendThis } from "./djbcxdata"; | 34 | import { datas, sendThis } from "./djbcxdata"; |
35 | import { getSjsbPushList, detail } from "@/api/zhcx.js"; | 35 | import { list, detail } from "@/api/sysPushRecord.js"; |
36 | 36 | ||
37 | export default { | 37 | export default { |
38 | name: "djbcx", | 38 | name: "djbcx", |
... | @@ -67,7 +67,7 @@ | ... | @@ -67,7 +67,7 @@ |
67 | // 初始化数据 | 67 | // 初始化数据 |
68 | queryClick () { | 68 | queryClick () { |
69 | this.$startLoading() | 69 | this.$startLoading() |
70 | getSjsbPushList({ ...this.queryForm, ...this.pageData }).then((res) => { | 70 | list({ ...this.queryForm, ...this.pageData }).then((res) => { |
71 | this.$endLoading() | 71 | this.$endLoading() |
72 | if (res.code === 200) { | 72 | if (res.code === 200) { |
73 | let { total, records } = res.result; | 73 | let { total, records } = res.result; | ... | ... |
... | @@ -53,8 +53,8 @@ | ... | @@ -53,8 +53,8 @@ |
53 | </template> | 53 | </template> |
54 | 54 | ||
55 | <script> | 55 | <script> |
56 | import { addFwmxCxjgXx, getFwmxInfo,printJtcfInfo } from "@/api/sqcx"; | 56 | import { addFwmxCxjgXx, getFwmxInfo,printJtcfInfo } from "@/api/jtfc.js"; |
57 | import { getPrintTemplateByCode } from "@/api/system"; | 57 | import { getPrintTemplateByCode } from "@/api/print"; |
58 | import { datas, sendThis } from "./dydjbdata"; | 58 | import { datas, sendThis } from "./dydjbdata"; |
59 | import { getLodop } from "@/utils/LodopFuncs" | 59 | import { getLodop } from "@/utils/LodopFuncs" |
60 | import dydjbInfo from "./dydjbInfo.vue"; | 60 | import dydjbInfo from "./dydjbInfo.vue"; | ... | ... |
... | @@ -33,10 +33,10 @@ | ... | @@ -33,10 +33,10 @@ |
33 | </div> | 33 | </div> |
34 | </div> | 34 | </div> |
35 | </template> | 35 | </template> |
36 | 36 | ||
37 | <script> | 37 | <script> |
38 | import { datas, sendThis } from "./infodata"; | 38 | import { datas, sendThis } from "./infodata"; |
39 | import { getFwmxInfo } from "@/api/sqcx"; | 39 | import { getFwmxInfo } from "@/api/jtfc.js"; |
40 | export default { | 40 | export default { |
41 | props: { | 41 | props: { |
42 | formData: { | 42 | formData: { |
... | @@ -103,4 +103,3 @@ export default { | ... | @@ -103,4 +103,3 @@ export default { |
103 | height: 30px; | 103 | height: 30px; |
104 | } | 104 | } |
105 | </style> | 105 | </style> |
106 | |||
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -48,7 +48,7 @@ import { mapGetters } from "vuex"; | ... | @@ -48,7 +48,7 @@ import { mapGetters } from "vuex"; |
48 | import table from "@/utils/mixin/table"; | 48 | import table from "@/utils/mixin/table"; |
49 | import { datas, sendThis } from "./dydjbdata"; | 49 | import { datas, sendThis } from "./dydjbdata"; |
50 | import addDydjb from "./components/addDydjb.vue"; | 50 | import addDydjb from "./components/addDydjb.vue"; |
51 | import { getSqcxPage } from "@/api/sqcx"; | 51 | import { getSqcxPage } from "@/api/jtfc.js"; |
52 | export default { | 52 | export default { |
53 | name: "dydjb", | 53 | name: "dydjb", |
54 | components: { addDydjb }, | 54 | components: { addDydjb }, | ... | ... |
... | @@ -119,8 +119,8 @@ | ... | @@ -119,8 +119,8 @@ |
119 | import { getLodop } from "@/utils/LodopFuncs" | 119 | import { getLodop } from "@/utils/LodopFuncs" |
120 | import printView from "./printView.vue"; | 120 | import printView from "./printView.vue"; |
121 | import { getIdCardInfo } from '@/utils/operation.js' | 121 | import { getIdCardInfo } from '@/utils/operation.js' |
122 | import { getPrintTemplateByCode } from "@/api/system"; | 122 | import { getPrintTemplateByCode } from "@/api/print"; |
123 | import { addJtfcCxjgXx, getJtfcInfo, printJtcfInfo } from "@/api/sqcx"; | 123 | import { addJtfcCxjgXx, getJtfcInfo, printJtcfInfo } from "@/api/jtfc.js"; |
124 | export default { | 124 | export default { |
125 | components: { | 125 | components: { |
126 | printView | 126 | printView | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-06-28 14:45:20 | 4 | * @LastEditTime: 2023-06-28 14:45:20 |
5 | --> | 5 | --> |
... | @@ -48,7 +48,7 @@ | ... | @@ -48,7 +48,7 @@ |
48 | <script> | 48 | <script> |
49 | import table from "@/utils/mixin/table"; | 49 | import table from "@/utils/mixin/table"; |
50 | import { datas, sendThis } from "./jtfcdata"; | 50 | import { datas, sendThis } from "./jtfcdata"; |
51 | import { getSqcxPage } from "@/api/sqcx"; | 51 | import { getSqcxPage } from "@/api/jtfc.js"; |
52 | export default { | 52 | export default { |
53 | name: "jtfc", | 53 | name: "jtfc", |
54 | mixins: [table], | 54 | mixins: [table], | ... | ... |
... | @@ -110,7 +110,7 @@ | ... | @@ -110,7 +110,7 @@ |
110 | </template> | 110 | </template> |
111 | 111 | ||
112 | <script> | 112 | <script> |
113 | import { getJtfcInfo } from "@/api/sqcx"; | 113 | import { getJtfcInfo } from "@/api/jtfc.js"; |
114 | import { datas, sendThis } from "./sqcxjlInfodata"; | 114 | import { datas, sendThis } from "./sqcxjlInfodata"; |
115 | 115 | ||
116 | export default { | 116 | export default { | ... | ... |
... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
69 | <script> | 69 | <script> |
70 | import table from "@/utils/mixin/table"; | 70 | import table from "@/utils/mixin/table"; |
71 | import { datas, sendThis } from "./sqcxjldata"; | 71 | import { datas, sendThis } from "./sqcxjldata"; |
72 | import { getSqcxPage } from "@/api/sqcx"; | 72 | import { getSqcxPage } from "@/api/jtfc.js"; |
73 | export default { | 73 | export default { |
74 | name: "sqcxjl", | 74 | name: "sqcxjl", |
75 | mixins: [table], | 75 | mixins: [table], | ... | ... |
This diff is collapsed.
Click to expand it.
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-07-13 16:31:56 | ||
5 | --> | ||
1 | <template> | 6 | <template> |
2 | <div class="from-clues"> | 7 | <div class="from-clues"> |
3 | <!-- 表单部分 --> | 8 | <!-- 表单部分 --> |
... | @@ -33,84 +38,84 @@ | ... | @@ -33,84 +38,84 @@ |
33 | </div> | 38 | </div> |
34 | </template> | 39 | </template> |
35 | <script> | 40 | <script> |
36 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
37 | import { getQlxxDictList, getChildDictList, refreshDictCache } from "@/api/user.js" | 42 | import { getQlxxDictList, getChildDictList, refreshDictCache } from "@/api/dict.js" |
38 | import { datas, sendThis } from "./dictionaries" | 43 | import { datas, sendThis } from "./dictionaries" |
39 | import editDialog from "./components/editDialog.vue" | 44 | import editDialog from "./components/editDialog.vue" |
40 | export default { | 45 | export default { |
41 | name: "dictionaries", | 46 | name: "dictionaries", |
42 | components: { | 47 | components: { |
43 | editDialog | 48 | editDialog |
44 | }, | 49 | }, |
45 | mixins: [table], | 50 | mixins: [table], |
46 | mounted () { | 51 | mounted () { |
47 | sendThis(this); | 52 | sendThis(this); |
48 | }, | 53 | }, |
49 | data () { | 54 | data () { |
50 | return { | 55 | return { |
51 | details: { | 56 | details: { |
52 | bsmDict: '', | 57 | bsmDict: '', |
53 | isenable: 1, | 58 | isenable: 1, |
54 | rowData: {} | 59 | rowData: {} |
55 | }, | 60 | }, |
56 | ruleForm: { | 61 | ruleForm: { |
57 | dcode: '', | 62 | dcode: '', |
58 | dname: '' | 63 | dname: '' |
59 | }, | 64 | }, |
60 | tableData: { | 65 | tableData: { |
61 | total: 0, | 66 | total: 0, |
62 | columns: datas.columns(), | 67 | columns: datas.columns(), |
63 | data: [] | 68 | data: [] |
69 | } | ||
64 | } | 70 | } |
65 | } | ||
66 | }, | ||
67 | methods: { | ||
68 | // 初始化数据 | ||
69 | queryClick () { | ||
70 | this.$startLoading(); | ||
71 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { | ||
72 | this.$endLoading(); | ||
73 | let { records, total } = res.result | ||
74 | this.tableData.data = records ? records : [] | ||
75 | this.tableData.total = total ? total : 0 | ||
76 | }) | ||
77 | }, | 71 | }, |
78 | handleRefresh () { | 72 | methods: { |
79 | this.$confirm('是否确认刷新', '提示', { | 73 | // 初始化数据 |
80 | confirmButtonText: '确定', | 74 | queryClick () { |
81 | cancelButtonText: '取消', | 75 | this.$startLoading(); |
82 | type: 'warning' | 76 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { |
83 | }).then(() => { | 77 | this.$endLoading(); |
84 | this.$startLoading() | 78 | let { records, total } = res.result |
85 | refreshDictCache().then(res => { | 79 | this.tableData.data = records ? records : [] |
86 | if (res.code == 200) { | 80 | this.tableData.total = total ? total : 0 |
87 | let refech = this.$store.dispatch('dict/generateDic') | ||
88 | this.$endLoading() | ||
89 | refech && this.$message({ | ||
90 | message: '刷新成功', | ||
91 | type: 'success' | ||
92 | }); | ||
93 | } else { | ||
94 | this.$message.error(res.message) | ||
95 | } | ||
96 | }) | 81 | }) |
97 | }).catch(() => { | 82 | }, |
98 | this.$message({ | 83 | handleRefresh () { |
99 | type: 'info', | 84 | this.$confirm('是否确认刷新', '提示', { |
100 | message: '取消刷新' | 85 | confirmButtonText: '确定', |
86 | cancelButtonText: '取消', | ||
87 | type: 'warning' | ||
88 | }).then(() => { | ||
89 | this.$startLoading() | ||
90 | refreshDictCache().then(res => { | ||
91 | if (res.code == 200) { | ||
92 | let refech = this.$store.dispatch('dict/generateDic') | ||
93 | this.$endLoading() | ||
94 | refech && this.$message({ | ||
95 | message: '刷新成功', | ||
96 | type: 'success' | ||
97 | }); | ||
98 | } else { | ||
99 | this.$message.error(res.message) | ||
100 | } | ||
101 | }) | ||
102 | }).catch(() => { | ||
103 | this.$message({ | ||
104 | type: 'info', | ||
105 | message: '取消刷新' | ||
106 | }); | ||
101 | }); | 107 | }); |
102 | }); | 108 | }, |
103 | }, | 109 | // 修改 |
104 | // 修改 | 110 | editClick (row, val) { |
105 | editClick (row, val) { | 111 | this.details.rowData = row |
106 | this.details.rowData = row | 112 | this.details.isenable = val |
107 | this.details.isenable = val | 113 | this.details.bsmDict = row.bsmDict |
108 | this.details.bsmDict = row.bsmDict | 114 | this.$popupDialog("字典信息", "system/dictionaries/components/editDialog", this.details) |
109 | this.$popupDialog("字典信息", "system/dictionaries/components/editDialog", this.details) | 115 | } |
110 | } | 116 | } |
111 | } | 117 | } |
112 | } | ||
113 | </script> | 118 | </script> |
114 | <style scoped lang="scss"> | 119 | <style scoped lang="scss"> |
115 | @import "~@/styles/public.scss"; | 120 | @import "~@/styles/public.scss"; |
116 | </style> | 121 | </style> | ... | ... |
1 | <!-- | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-07-13 16:42:26 | ||
5 | --> | ||
1 | <template> | 6 | <template> |
2 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> | 7 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> |
3 | <el-row> | 8 | <el-row> |
... | @@ -40,7 +45,7 @@ | ... | @@ -40,7 +45,7 @@ |
40 | import { getLodop } from "@/utils/LodopFuncs" | 45 | import { getLodop } from "@/utils/LodopFuncs" |
41 | import { mapGetters } from 'vuex' | 46 | import { mapGetters } from 'vuex' |
42 | import store from '@/store/index.js' | 47 | import store from '@/store/index.js' |
43 | import { addPrintTemplate, editPrintTemplate } from "@/api/system.js" | 48 | import { addPrintTemplate, editPrintTemplate } from "@/api/print.js" |
44 | export default { | 49 | export default { |
45 | computed: { | 50 | computed: { |
46 | ...mapGetters(['dictData']), | 51 | ...mapGetters(['dictData']), | ... | ... |
... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
28 | import { getLodop } from "@/utils/LodopFuncs" | 28 | import { getLodop } from "@/utils/LodopFuncs" |
29 | import table from "@/utils/mixin/table" | 29 | import table from "@/utils/mixin/table" |
30 | import { datas, sendThis } from "./dymbgl" | 30 | import { datas, sendThis } from "./dymbgl" |
31 | import { selectPrintTemplateList, delPrintTemplate } from "@/api/system.js" | 31 | import { selectPrintTemplateList, delPrintTemplate } from "@/api/print.js" |
32 | export default { | 32 | export default { |
33 | name: "dymbgl", | 33 | name: "dymbgl", |
34 | mixins: [table], | 34 | mixins: [table], | ... | ... |
... | @@ -25,8 +25,8 @@ | ... | @@ -25,8 +25,8 @@ |
25 | </template> | 25 | </template> |
26 | 26 | ||
27 | <script> | 27 | <script> |
28 | import { addSysNotice } from "@/api/system.js" | 28 | import { addSysNotice } from "@/api/sysNotice.js" |
29 | import { upload } from "@/api/system.js" | 29 | import { upload } from "@/api/file.js" |
30 | export default { | 30 | export default { |
31 | props: { | 31 | props: { |
32 | value: { type: Boolean, default: false }, | 32 | value: { type: Boolean, default: false }, |
... | @@ -93,4 +93,4 @@ export default { | ... | @@ -93,4 +93,4 @@ export default { |
93 | </script> | 93 | </script> |
94 | <style scoped lang="scss"> | 94 | <style scoped lang="scss"> |
95 | 95 | ||
96 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
96 | </style> | ... | ... |
... | @@ -31,7 +31,7 @@ | ... | @@ -31,7 +31,7 @@ |
31 | <script> | 31 | <script> |
32 | import table from "@/utils/mixin/table"; | 32 | import table from "@/utils/mixin/table"; |
33 | import { datas, sendThis } from "./flfgdata"; | 33 | import { datas, sendThis } from "./flfgdata"; |
34 | import { getSysPolicyList, deleteSysNotice } from "@/api/system.js" | 34 | import { getSysPolicyList, deleteSysNotice } from "@/api/sysNotice.js" |
35 | import addDialog from "./components/addDialog.vue"; | 35 | import addDialog from "./components/addDialog.vue"; |
36 | export default { | 36 | export default { |
37 | name: "flfg", | 37 | name: "flfg", | ... | ... |
... | @@ -117,7 +117,7 @@ | ... | @@ -117,7 +117,7 @@ |
117 | </template> | 117 | </template> |
118 | 118 | ||
119 | <script> | 119 | <script> |
120 | import { updateSysSqywmbsz, getSysSqywmbszDetailById } from '@/api/system' | 120 | import { updateSysSqywmbsz, getSysSqywmbszDetailById } from '@/api/sysSqywmbsz' |
121 | export default { | 121 | export default { |
122 | props: { | 122 | props: { |
123 | formData: { | 123 | formData: { | ... | ... |
... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
32 | </template> | 32 | </template> |
33 | <script> | 33 | <script> |
34 | import { mapGetters } from 'vuex' | 34 | import { mapGetters } from 'vuex' |
35 | import { sysSqywmbszSearch } from '@/api/system' | 35 | import { sysSqywmbszSearch } from '@/api/sysSqywmbsz' |
36 | import table from "@/utils/mixin/table" | 36 | import table from "@/utils/mixin/table" |
37 | import { datas, sendThis } from "./qtjfjmb" | 37 | import { datas, sendThis } from "./qtjfjmb" |
38 | export default { | 38 | export default { | ... | ... |
... | @@ -127,7 +127,7 @@ import { uploadUrl } from '@/api/file' | ... | @@ -127,7 +127,7 @@ import { uploadUrl } from '@/api/file' |
127 | import djqxsd from './djqxsd.vue' | 127 | import djqxsd from './djqxsd.vue' |
128 | import clgzsd from './clgzsd.vue' | 128 | import clgzsd from './clgzsd.vue' |
129 | import dyztsd from './dyztsd.vue' | 129 | import dyztsd from './dyztsd.vue' |
130 | import { getSqdjywDetail, saveSqdjyw } from '@/api/system' | 130 | import { getSqdjywDetail, saveSqdjyw } from '@/api/sysSqdjyw' |
131 | export default { | 131 | export default { |
132 | components: { | 132 | components: { |
133 | djqxsd, | 133 | djqxsd, | ... | ... |
... | @@ -136,7 +136,7 @@ | ... | @@ -136,7 +136,7 @@ |
136 | <script> | 136 | <script> |
137 | import { uploadUrl } from '@/api/file' | 137 | import { uploadUrl } from '@/api/file' |
138 | import { upward, down } from "@/utils/operation"; | 138 | import { upward, down } from "@/utils/operation"; |
139 | import { getDjlxInfo, getSqdjywDetail, saveSqdjyw } from "@/api/system.js"; | 139 | import { getDjlxInfo, getSqdjywDetail, saveSqdjyw } from "@/api/sysSqdjyw.js"; |
140 | import { datas, sendThis } from "./sqywDetail"; | 140 | import { datas, sendThis } from "./sqywDetail"; |
141 | export default { | 141 | export default { |
142 | name: "componentDialog", | 142 | name: "componentDialog", | ... | ... |
... | @@ -40,7 +40,7 @@ import table from "@/utils/mixin/table"; | ... | @@ -40,7 +40,7 @@ import table from "@/utils/mixin/table"; |
40 | import editDialog from "./components/editDialog.vue"; | 40 | import editDialog from "./components/editDialog.vue"; |
41 | import componentDialog from "./sqywDetail.vue"; | 41 | import componentDialog from "./sqywDetail.vue"; |
42 | import { datas, sendThis } from "./sqywgzdata"; | 42 | import { datas, sendThis } from "./sqywgzdata"; |
43 | import { getSysSqdjywBysearch, getDjlxInfo } from "@/api/system.js"; | 43 | import { getSysSqdjywBysearch, getDjlxInfo } from "@/api/sysSqdjyw.js"; |
44 | export default { | 44 | export default { |
45 | name: "djbcx", | 45 | name: "djbcx", |
46 | components: { | 46 | components: { | ... | ... |
... | @@ -54,8 +54,8 @@ | ... | @@ -54,8 +54,8 @@ |
54 | </el-form> | 54 | </el-form> |
55 | </template> | 55 | </template> |
56 | <script> | 56 | <script> |
57 | import { addSysNotice, updateSysNotice } from "@/api/system.js"; | 57 | import { addSysNotice, updateSysNotice } from "@/api/sysNotice.js"; |
58 | import { upload } from "@/api/system.js"; | 58 | import { upload } from "@/api/file.js"; |
59 | import { quillEditor } from "vue-quill-editor"; | 59 | import { quillEditor } from "vue-quill-editor"; |
60 | export default { | 60 | export default { |
61 | props: { | 61 | props: { | ... | ... |
... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
39 | <script> | 39 | <script> |
40 | import table from "@/utils/mixin/table"; | 40 | import table from "@/utils/mixin/table"; |
41 | import { datas, sendThis } from "./xttzdata"; | 41 | import { datas, sendThis } from "./xttzdata"; |
42 | import { getSysNoticeList, deleteSysNotice, publishNotice, unPublishNotice } from "@/api/system.js" | 42 | import { getSysNoticeList, deleteSysNotice, publishNotice, unPublishNotice } from "@/api/sysNotice.js" |
43 | import addDialog from "./components/addDialog.vue"; | 43 | import addDialog from "./components/addDialog.vue"; |
44 | export default { | 44 | export default { |
45 | name: "xttz", | 45 | name: "xttz", | ... | ... |
... | @@ -31,7 +31,7 @@ | ... | @@ -31,7 +31,7 @@ |
31 | <script> | 31 | <script> |
32 | import table from "@/utils/mixin/table"; | 32 | import table from "@/utils/mixin/table"; |
33 | import { datas, sendThis } from "./xttzviewdata"; | 33 | import { datas, sendThis } from "./xttzviewdata"; |
34 | import { getSysNoticeList, setReadStatus, setAllRead } from "@/api/system.js" | 34 | import { getSysNoticeList, setReadStatus, setAllRead } from "@/api/sysNotice.js" |
35 | import addDialog from "./components/addDialog.vue"; | 35 | import addDialog from "./components/addDialog.vue"; |
36 | export default { | 36 | export default { |
37 | name: "xttzview", | 37 | name: "xttzview", | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:40:02 | 4 | * @LastEditTime: 2023-05-17 10:40:02 |
5 | --> | 5 | --> |
... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
28 | </template> | 28 | </template> |
29 | <script> | 29 | <script> |
30 | import store from '@/store/index.js' | 30 | import store from '@/store/index.js' |
31 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/fqsq.js" | 31 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/opinion.js" |
32 | export default { | 32 | export default { |
33 | components: {}, | 33 | components: {}, |
34 | props: { | 34 | props: { |
... | @@ -164,4 +164,4 @@ | ... | @@ -164,4 +164,4 @@ |
164 | display: flex; | 164 | display: flex; |
165 | justify-content: flex-end; | 165 | justify-content: flex-end; |
166 | } | 166 | } |
167 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
167 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-07 13:12:58 | 4 | * @LastEditTime: 2023-07-14 16:05:30 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> | 7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> |
... | @@ -97,7 +97,7 @@ | ... | @@ -97,7 +97,7 @@ |
97 | handleClick (e) { | 97 | handleClick (e) { |
98 | this.bdcqz = this.headTabBdcqz[e.index - 0] | 98 | this.bdcqz = this.headTabBdcqz[e.index - 0] |
99 | this.activeName = this.headTabBdcqz.bsmBdcqz | 99 | this.activeName = this.headTabBdcqz.bsmBdcqz |
100 | if (this.activeName == '1') { | 100 | if (this.bdcqz.bdcqzlx == 1) { |
101 | this.drawTextOnImage() | 101 | this.drawTextOnImage() |
102 | } else { | 102 | } else { |
103 | this.drawTextzmImage() | 103 | this.drawTextzmImage() | ... | ... |
... | @@ -40,8 +40,7 @@ | ... | @@ -40,8 +40,7 @@ |
40 | </template> | 40 | </template> |
41 | <script> | 41 | <script> |
42 | import { mapGetters } from 'vuex' | 42 | import { mapGetters } from 'vuex' |
43 | import { leftMenu } from "@/api/fqsq.js" | 43 | import { leftMenu, deleteSlbdcdy } from "@/api/workFlow.js" |
44 | import { deleteSlbdcdy } from "@/api/ywbl.js"; | ||
45 | export default { | 44 | export default { |
46 | data () { | 45 | data () { |
47 | return { | 46 | return { | ... | ... |
... | @@ -53,8 +53,7 @@ | ... | @@ -53,8 +53,7 @@ |
53 | </template> | 53 | </template> |
54 | <script> | 54 | <script> |
55 | import { mapGetters } from 'vuex' | 55 | import { mapGetters } from 'vuex' |
56 | import { leftMenu } from "@/api/fqsq.js" | 56 | import { leftMenu, deleteFlow } from "@/api/workFlow.js" |
57 | import { deleteFlow } from "@/api/ywbl.js"; | ||
58 | export default { | 57 | export default { |
59 | data () { | 58 | data () { |
60 | return { | 59 | return { | ... | ... |
... | @@ -48,7 +48,7 @@ | ... | @@ -48,7 +48,7 @@ |
48 | </div> | 48 | </div> |
49 | </template> | 49 | </template> |
50 | <script> | 50 | <script> |
51 | import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/fqsq.js"; | 51 | import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/opinion.js"; |
52 | import { mapGetters } from 'vuex' | 52 | import { mapGetters } from 'vuex' |
53 | export default { | 53 | export default { |
54 | computed: { | 54 | computed: { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:41:45 | 4 | * @LastEditTime: 2023-05-17 10:41:45 |
5 | --> | 5 | --> |
... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
21 | </template> | 21 | </template> |
22 | 22 | ||
23 | <script> | 23 | <script> |
24 | import { stopTask } from "@/api/fqsq.js"; | 24 | import { stopTask } from "@/api/workFlow.js"; |
25 | export default { | 25 | export default { |
26 | props: { | 26 | props: { |
27 | formData: { | 27 | formData: { | ... | ... |
... | @@ -73,7 +73,7 @@ | ... | @@ -73,7 +73,7 @@ |
73 | </el-date-picker> | 73 | </el-date-picker> |
74 | </template> | 74 | </template> |
75 | </el-table-column> | 75 | </el-table-column> |
76 | <el-table-column prop="syqx" label="土地使用期限" min-width="100"> | 76 | <el-table-column prop="tdsyqx" label="土地使用期限" min-width="100"> |
77 | <template slot-scope="scope"> | 77 | <template slot-scope="scope"> |
78 | <el-input | 78 | <el-input |
79 | class="item" | 79 | class="item" | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:41:57 | 4 | * @LastEditTime: 2023-05-17 10:41:57 |
5 | --> | 5 | --> |
... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
46 | 46 | ||
47 | <script> | 47 | <script> |
48 | 48 | ||
49 | import { getTaskBackNode, sendBackTask } from "@/api/fqsq.js" | 49 | import { getTaskBackNode, sendBackTask } from "@/api/workFlow.js" |
50 | import { popupCacel } from "@/utils/popup.js"; | 50 | import { popupCacel } from "@/utils/popup.js"; |
51 | 51 | ||
52 | export default { | 52 | export default { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:42:01 | 4 | * @LastEditTime: 2023-05-17 10:42:01 |
5 | --> | 5 | --> |
... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
24 | </template> | 24 | </template> |
25 | 25 | ||
26 | <script> | 26 | <script> |
27 | import { completeTask, getNextLinkInfo } from "@/api/fqsq.js" | 27 | import { completeTask, getNextLinkInfo } from "@/api/workFlow.js" |
28 | export default { | 28 | export default { |
29 | components: { | 29 | components: { |
30 | }, | 30 | }, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-06-01 09:48:15 | 4 | * @LastEditTime: 2023-07-14 16:01:33 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <canvas id="mxcad"> | 7 | <canvas id="mxcad"> |
... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
17 | // 创建控件对象 | 17 | // 创建控件对象 |
18 | Mx.MxFun.createMxObject({ | 18 | Mx.MxFun.createMxObject({ |
19 | canvasId: "mxcad", // canvas元素的id | 19 | canvasId: "mxcad", // canvas元素的id |
20 | cadFile: "/buf/hhhh.dwg", // http方式(预览): 加载public/demo文件夹下转换后的图纸 | 20 | cadFile: "buf/hhhh.dwg", // http方式(预览): 加载public/demo文件夹下转换后的图纸 |
21 | // cadFile: "test2.dwg", // socket通信方式请直接提供图纸名称 如:text.dwg | 21 | // cadFile: "test2.dwg", // socket通信方式请直接提供图纸名称 如:text.dwg |
22 | callback: (mxDraw, { | 22 | callback: (mxDraw, { |
23 | canvas, | 23 | canvas, | ... | ... |
... | @@ -3,20 +3,21 @@ | ... | @@ -3,20 +3,21 @@ |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 11:06:42 | 4 | * @LastEditTime: 2023-07-13 11:06:42 |
5 | */ | 5 | */ |
6 | import { getWorkFlowImage } from "@/api/workflow/jsydsyqFlow.js"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
7 | import { getPrintTemplateByCode } from "@/api/system"; | ||
8 | import { getPrintApplicationInfo } from "@/api/fqsq"; | ||
9 | import { uploadUndo } from "@/api/clxx"; | 7 | import { uploadUndo } from "@/api/clxx"; |
10 | import { deleteFlow } from "@/api/ywbl"; | ||
11 | import { getLodop } from "@/utils/LodopFuncs" | 8 | import { getLodop } from "@/utils/LodopFuncs" |
12 | import { | 9 | import { |
13 | stepExpandInfo, | 10 | stepExpandInfo, |
14 | record, | 11 | record, |
15 | completeTask, | 12 | completeTask, |
16 | getNextLinkInfo, | 13 | getNextLinkInfo, |
17 | } from "@/api/fqsq.js"; | 14 | getWorkFlowImage, |
15 | getPrintApplicationInfo, | ||
16 | deleteFlow, | ||
17 | unClaimTask | ||
18 | } from "@/api/workFlow.js"; | ||
18 | import { mapGetters } from 'vuex' | 19 | import { mapGetters } from 'vuex' |
19 | import { getZrzbsm } from "@/api/lpb"; | 20 | import { getZrzbsmList } from "@/api/search.js"; |
20 | import { ywPopupDialog } from "@/utils/popup.js"; | 21 | import { ywPopupDialog } from "@/utils/popup.js"; |
21 | export default { | 22 | export default { |
22 | data () { | 23 | data () { |
... | @@ -139,7 +140,7 @@ export default { | ... | @@ -139,7 +140,7 @@ export default { |
139 | ) | 140 | ) |
140 | break; | 141 | break; |
141 | case "B8": | 142 | case "B8": |
142 | getZrzbsm(this.bsmSlsq).then((res) => { | 143 | getZrzbsmList(this.bsmSlsq).then((res) => { |
143 | if (res.code === 200) { | 144 | if (res.code === 200) { |
144 | this.$popupDialog('楼盘表', 'lpb/index', { | 145 | this.$popupDialog('楼盘表', 'lpb/index', { |
145 | bsm: res.result[0] | 146 | bsm: res.result[0] | ... | ... |
... | @@ -60,10 +60,9 @@ | ... | @@ -60,10 +60,9 @@ |
60 | <script> | 60 | <script> |
61 | import WorkFlow from "./mixin/index" | 61 | import WorkFlow from "./mixin/index" |
62 | import publicFlow from "./mixin/public.js" | 62 | import publicFlow from "./mixin/public.js" |
63 | import { getStepFormInfo } from "@/api/fqsq.js" | 63 | import { getStepFormInfo, unClaimTask } from "@/api/workFlow.js" |
64 | import { getForm } from "./flowform" | 64 | import { getForm } from "./flowform" |
65 | import NoticeBar from "@/components/NoticeBar/index" | 65 | import NoticeBar from "@/components/NoticeBar/index" |
66 | import { unClaimTask } from "@/api/ywbl.js" | ||
67 | import ProcessViewer from "./components/processViewer.vue" | 66 | import ProcessViewer from "./components/processViewer.vue" |
68 | // 引入左侧菜单 | 67 | // 引入左侧菜单 |
69 | import ordinaryMenu from "./components/leftmenu/ordinaryMenu.vue" | 68 | import ordinaryMenu from "./components/leftmenu/ordinaryMenu.vue" | ... | ... |
... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
53 | <script> | 53 | <script> |
54 | import WorkFlow from "./mixin/index" | 54 | import WorkFlow from "./mixin/index" |
55 | import publicFlow from "./mixin/public.js" | 55 | import publicFlow from "./mixin/public.js" |
56 | import { getStepFormInfo } from "@/api/fqsq.js" | 56 | import { getStepFormInfo } from "@/api/workFlow.js" |
57 | import { getForm } from "./flowform" | 57 | import { getForm } from "./flowform" |
58 | import NoticeBar from "@/components/NoticeBar/index"; | 58 | import NoticeBar from "@/components/NoticeBar/index"; |
59 | // 引入左侧菜单 | 59 | // 引入左侧菜单 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-04-13 10:32:28 | 4 | * @LastEditTime: 2023-04-13 10:32:28 |
5 | --> | 5 | --> |
... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
40 | <script> | 40 | <script> |
41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
42 | import { datas, sendThis } from "./cwrzdata" | 42 | import { datas, sendThis } from "./cwrzdata" |
43 | import { getErrorLogList } from "@/api/xtjk.js" | 43 | import { getErrorLogList } from "@/api/view.js" |
44 | export default { | 44 | export default { |
45 | name: "cwrz", | 45 | name: "cwrz", |
46 | components: {}, | 46 | components: {}, | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-04-13 10:31:33 | 4 | * @LastEditTime: 2023-04-13 10:31:33 |
5 | --> | 5 | --> |
... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
40 | <script> | 40 | <script> |
41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
42 | import { datas, sendThis } from "./czrzdata" | 42 | import { datas, sendThis } from "./czrzdata" |
43 | import { getOperationLogList } from "@/api/xtjk.js" | 43 | import { getOperationLogList } from "@/api/view.js" |
44 | export default { | 44 | export default { |
45 | name: "czrz", | 45 | name: "czrz", |
46 | components: {}, | 46 | components: {}, | ... | ... |
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
-
Please register or sign in to post a comment