e922422b by xiaomiao

--no commit message

2 parents a409d338 39c11b72
Showing 147 changed files with 1130 additions and 1173 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 */
......
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 }
1 /* 1 /*
2 * @Description: 2 * @Description: 材料信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-16 14:04:42 4 * @LastEditTime: 2023-05-16 14:04:42
5 */ 5 */
......
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 }
...@@ -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-05-16 14:05:25 4 * @LastEditTime: 2023-05-16 14:05:25
5 */ 5 */
......
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 }
......
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 }
1 /* 1 /*
2 * @Description: 2 * @Description: 平台接口
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-16 15:56:15 4 * @LastEditTime: 2023-05-16 15:56:15
5 */ 5 */
......
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
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 }
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
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 }
......
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 16:07:10 4 * @LastEditTime: 2023-05-16 16:07:10
5 */ 5 */
......
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
...@@ -84,7 +100,7 @@ export function getStepFormInfo (data) { ...@@ -84,7 +100,7 @@ export function getStepFormInfo (data) {
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',
...@@ -103,128 +119,139 @@ export function stepExpandInfo (data) { ...@@ -103,128 +119,139 @@ export function stepExpandInfo (data) {
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',
130 method: 'post',
131 data
132 })
133 }
134
135 // 终止任务
136 export function stopTask (data) {
137 return request({
138 url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask',
115 method: 'post', 139 method: 'post',
116 data 140 data
117 }) 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: 申请列表删除
222 * @param {*} data
223 * @author: renchao
224 */
225 export function deleteSlbdcdy (data) {
199 return request({ 226 return request({
200 url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask', 227 url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteSlbdcdy',
201 method: 'post', 228 method: 'post',
202 data 229 data
203 }) 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
216 }) 243 })
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
229 }) 256 })
230 } 257 }
......
...@@ -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 }
......
...@@ -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 /*
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 }
......
...@@ -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({
......
1 /* 1 /*
2 * @Description: 2 * @Description: 业务申请
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:13:24 4 * @LastEditTime: 2023-05-17 10:13:24
5 */ 5 */
...@@ -8,63 +8,6 @@ import request from '@/utils/request' ...@@ -8,63 +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 * @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: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记) 11 * @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记)
69 * @param {*} data 12 * @param {*} data
70 * @author: renchao 13 * @author: renchao
...@@ -76,69 +19,6 @@ export function selectScBdcdy (data) { ...@@ -76,69 +19,6 @@ export function selectScBdcdy (data) {
76 data 19 data
77 }) 20 })
78 } 21 }
79
80 /**
81 * @description: 待办箱列表查询接口
82 * @param {*} data
83 * @author: renchao
84 */
85 export function searchTaskToDo (data) {
86 return request({
87 url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo',
88 method: 'post',
89 data
90 })
91 }
92 /**
93 * @description: 待办箱/不动产单元删除接口
94 * @param {*} data
95 * @author: renchao
96 */
97 export function deleteFlow (data) {
98 return request({
99 url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteFlow',
100 method: 'post',
101 data
102 })
103 }
104 /**
105 * @description: 业务办理-发起业务申请流程
106 * @param {*} data
107 * @author: renchao
108 */
109 export function startBusinessFlow (data) {
110 return request({
111 url: SERVER.SERVERAPI + '/rest/business/workFlow/startBusinessFlow',
112 method: 'post',
113 data
114 })
115 }
116
117 /**
118 * @description: 业务办理-发起补录申请流程
119 * @param {*} data
120 * @author: renchao
121 */
122 export function startRepairFlow (data) {
123 return request({
124 url: SERVER.SERVERAPI + '/rest/business/workFlow/startRepairFlow',
125 method: 'post',
126 data
127 })
128 }
129
130 /**
131 * @description: 已办箱列表查询接口
132 * @param {*} data
133 * @author: renchao
134 */
135 export function searchTaskDone (data) {
136 return request({
137 url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone',
138 method: 'post',
139 data
140 })
141 }
142 /** 22 /**
143 * @description: 业务办理-选择权利信息-根据条件进行列表查询 23 * @description: 业务办理-选择权利信息-根据条件进行列表查询
144 * @param {*} data 24 * @param {*} data
...@@ -179,55 +59,6 @@ export function selectCfdj (data) { ...@@ -179,55 +59,6 @@ export function selectCfdj (data) {
179 } 59 }
180 60
181 /** 61 /**
182 * @description: 业务办理-业务申请-添加收藏业务
183 * @param {*} bsmSqyw
184 * @author: renchao
185 */
186 export function addCollectBiz (bsmSqyw) {
187 return request({
188 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw,
189 method: 'post'
190 })
191 }
192
193 /**
194 * @description: 业务办理-业务申请-取消收藏业务
195 * @param {*} bsmSqyw
196 * @author: renchao
197 */
198 export function deleteCollectBiz (bsmSqyw) {
199 return request({
200 url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw,
201 method: 'post'
202 })
203 }
204 /**
205 * @description: 国有建设用地使用权/房屋使用权 -选择不动产单元
206 * @param {*} data
207 * @author: renchao
208 */
209 export function choiceBdcdy (data) {
210 return request({
211 url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy',
212 method: 'post',
213 data
214 })
215 }
216
217 /**
218 * @description: 申请列表删除
219 * @param {*} data
220 * @author: renchao
221 */
222 export function deleteSlbdcdy (data) {
223 return request({
224 url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteSlbdcdy',
225 method: 'post',
226 data
227 })
228 }
229
230 /**
231 * @description: 获取自然幢下其他户 62 * @description: 获取自然幢下其他户
232 * @param {*} data 63 * @param {*} data
233 * @author: renchao 64 * @author: renchao
...@@ -241,32 +72,6 @@ export function selectOtherH (data) { ...@@ -241,32 +72,6 @@ export function selectOtherH (data) {
241 } 72 }
242 73
243 /** 74 /**
244 * @description: 认领任务
245 * @param {*} bsmSlsq
246 * @param {*} bestepid
247 * @author: renchao
248 */
249 export function claimTask (bsmSlsq, bestepid) {
250 return request({
251 url: SERVER.SERVERAPI + '/rest/business/workFlow/claimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid,
252 method: 'get',
253 })
254 }
255
256 /**
257 * @description: 取消认领任务
258 * @param {*} bsmSlsq
259 * @param {*} bestepid
260 * @author: renchao
261 */
262 export function unClaimTask (bsmSlsq, bestepid) {
263 return request({
264 url: SERVER.SERVERAPI + '/rest/business/workFlow/unClaimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid,
265 method: 'get',
266 })
267 }
268
269 /**
270 * @description: 业务办理-选择农用地信息-根据条件进行列表查询 75 * @description: 业务办理-选择农用地信息-根据条件进行列表查询
271 * @param {*} data 76 * @param {*} data
272 * @author: renchao 77 * @author: renchao
...@@ -437,3 +242,15 @@ export function selectHQjdc (data) { ...@@ -437,3 +242,15 @@ export function selectHQjdc (data) {
437 data 242 data
438 }) 243 })
439 } 244 }
245 /**
246 * @description: 选择补录权利信息
247 * @param {*} data
248 * @author: renchao
249 */
250 export function selectRepairQlxx (data) {
251 return request({
252 url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx',
253 method: 'post',
254 data
255 })
256 }
......
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
......
...@@ -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 {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
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() {
......
...@@ -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: {
......
...@@ -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 {
......
...@@ -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,
......
...@@ -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',
......
...@@ -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,7 +44,7 @@ ...@@ -44,7 +44,7 @@
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
......
...@@ -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 {
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
33 </template> 33 </template>
34 34
35 <script> 35 <script>
36 import { getDjbfm } from "@/api/registerBook.js"; 36 import { getDjbfm } from "@/api/djbDetail.js";
37 37
38 export default { 38 export default {
39 data () { 39 data () {
......
...@@ -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 () {
......
...@@ -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";
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
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
......
...@@ -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],
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 16:42:17
5 -->
1 <template> 6 <template>
2 <div> 7 <div>
3 <el-form :model="ruleForm" ref="ruleForm" label-width="100px"> 8 <el-form :model="ruleForm" ref="ruleForm" label-width="100px">
...@@ -26,9 +31,9 @@ ...@@ -26,9 +31,9 @@
26 </template> 31 </template>
27 32
28 <script> 33 <script>
29 import { getUuid, judgeSort, realMove, findParents, removeTreeListItem } from '@/utils/operation' 34 import { getUuid, judgeSort, realMove, findParents, removeTreeListItem } from '@/utils/operation'
30 import { editDictNode, getChildDictList } from '@/api/user' 35 import { editDictNode, getChildDictList } from '@/api/dict'
31 export default { 36 export default {
32 props: { 37 props: {
33 formData: { 38 formData: {
34 type: Object, 39 type: Object,
...@@ -315,13 +320,13 @@ export default { ...@@ -315,13 +320,13 @@ export default {
315 this.keyList = id 320 this.keyList = id
316 } 321 }
317 } 322 }
318 } 323 }
319 </script> 324 </script>
320 <style rel="stylesheet/scss" lang="scss" scoped> 325 <style rel="stylesheet/scss" lang="scss" scoped>
321 @import "~@/styles/dialogBoxheader.scss"; 326 @import "~@/styles/dialogBoxheader.scss";
322 327
323 /deep/.el-radio { 328 /deep/.el-radio {
324 margin-right: 5px !important; 329 margin-right: 5px !important;
325 } 330 }
326 </style> 331 </style>
327 332
......
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,11 +38,11 @@ ...@@ -33,11 +38,11 @@
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
...@@ -109,8 +114,8 @@ export default { ...@@ -109,8 +114,8 @@ export default {
109 this.$popupDialog("字典信息", "system/dictionaries/components/editDialog", this.details) 114 this.$popupDialog("字典信息", "system/dictionaries/components/editDialog", this.details)
110 } 115 }
111 } 116 }
112 } 117 }
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 },
......
...@@ -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",
......
...@@ -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: {
......
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: {
......
...@@ -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"
......
...@@ -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 {
......
...@@ -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 // 引入左侧菜单
......
...@@ -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: {},
......
...@@ -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: {},
......
...@@ -146,7 +146,7 @@ ...@@ -146,7 +146,7 @@
146 </template> 146 </template>
147 <script> 147 <script>
148 import table from "@/utils/mixin/table" 148 import table from "@/utils/mixin/table"
149 import { getServerInfo } from "@/api/xtjk.js" 149 import { getServerInfo } from "@/api/view.js"
150 export default { 150 export default {
151 name: "zjjk", 151 name: "zjjk",
152 components: {}, 152 components: {},
......
...@@ -104,8 +104,8 @@ ...@@ -104,8 +104,8 @@
104 import table from "@/utils/mixin/table"; 104 import table from "@/utils/mixin/table";
105 import searchMin from "../components/mixin/index"; 105 import searchMin from "../components/mixin/index";
106 import { datas, sendThis } from "./dbxdata"; 106 import { datas, sendThis } from "./dbxdata";
107 import { searchTaskToDo, deleteFlow, claimTask } from "@/api/ywbl"; 107 import { searchTaskToDo } from "@/api/workflow/search.js";
108 import { judgeUserTaskPermission } from "@/api/fqsq"; 108 import { judgeUserTaskPermission, deleteFlow, claimTask } from "@/api/workFlow.js";
109 import { log } from 'bpmn-js-token-simulation'; 109 import { log } from 'bpmn-js-token-simulation';
110 export default { 110 export default {
111 name: "dbx", 111 name: "dbx",
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-11 10:01:58 4 * @LastEditTime: 2023-07-14 11:16:12
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -64,39 +64,32 @@ ...@@ -64,39 +64,32 @@
64 </el-row> 64 </el-row>
65 <el-row :gutter="10" v-if="ruleForm.fdcq2"> 65 <el-row :gutter="10" v-if="ruleForm.fdcq2">
66 <el-col :span="8"> 66 <el-col :span="8">
67 <el-form-item label="土地用途:">
68 <el-input disabled v-model="ruleForm.fdcq2.yt"></el-input>
69 </el-form-item>
70 </el-col>
71 <el-col :span="8">
72 <el-form-item label="土地使用起止时间:">
73 <el-input disabled v-model="ruleForm.fdcq2.tdsyqzsj"></el-input>
74 </el-form-item>
75 </el-col>
76 <el-col :span="8">
77 <el-form-item label="土地使用期限:"> 67 <el-form-item label="土地使用期限:">
78 <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input> 68 <el-input disabled v-model="ruleForm.fdcq2.tdsyqx"></el-input>
79 </el-form-item> 69 </el-form-item>
80 </el-col> 70 </el-col>
81 </el-row> 71 <!-- <el-col :span="8">
82 <el-row :gutter="10" v-if="ruleForm.qlxx">
83 <el-col :span="8">
84 <el-form-item label="房屋用途:"> 72 <el-form-item label="房屋用途:">
85 <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> 73 <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input>
86 </el-form-item> 74 </el-form-item>
75 </el-col> -->
76 <el-col :span="8">
77 <el-form-item label="规划用途名称:">
78 <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input>
79 </el-form-item>
87 </el-col> 80 </el-col>
88 <el-col :span="8"> 81 <el-col :span="8">
89 <el-form-item label="房屋性质:"> 82 <el-form-item label="房屋性质:">
90 <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input> 83 <el-input disabled v-model="ruleForm.fdcq2.fwxzmc"></el-input>
91 </el-form-item> 84 </el-form-item>
92 </el-col> 85 </el-col>
86 </el-row>
87 <el-row :gutter="10" v-if="ruleForm.qlxx">
93 <el-col :span="8"> 88 <el-col :span="8">
94 <el-form-item label="房屋结构:"> 89 <el-form-item label="房屋结构:">
95 <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input> 90 <el-input disabled v-model="ruleForm.fdcq2.fwjgmc"></el-input>
96 </el-form-item> 91 </el-form-item>
97 </el-col> 92 </el-col>
98 </el-row>
99 <el-row :gutter="10" v-if="ruleForm.fdcq2">
100 <el-col :span="8"> 93 <el-col :span="8">
101 <el-form-item label="所在层:"> 94 <el-form-item label="所在层:">
102 <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input> 95 <el-input disabled v-model="ruleForm.fdcq2.szc"></el-input>
...@@ -107,13 +100,13 @@ ...@@ -107,13 +100,13 @@
107 <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input> 100 <el-input disabled v-model="ruleForm.fdcq2.zcs"></el-input>
108 </el-form-item> 101 </el-form-item>
109 </el-col> 102 </el-col>
103 </el-row>
104 <el-row :gutter="10" v-if="ruleForm.fdcq2">
110 <el-col :span="8"> 105 <el-col :span="8">
111 <el-form-item label="竣工时间:"> 106 <el-form-item label="竣工时间:">
112 <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input> 107 <el-input disabled v-model="ruleForm.fdcq2.jgsj"></el-input>
113 </el-form-item> 108 </el-form-item>
114 </el-col> 109 </el-col>
115 </el-row>
116 <el-row :gutter="10">
117 <el-col :span="8"> 110 <el-col :span="8">
118 <el-form-item label="建筑面积:"> 111 <el-form-item label="建筑面积:">
119 <el-input disabled v-model="ruleForm.qlxx.mj"></el-input> 112 <el-input disabled v-model="ruleForm.qlxx.mj"></el-input>
...@@ -124,6 +117,9 @@ ...@@ -124,6 +117,9 @@
124 <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input> 117 <el-input disabled v-model="ruleForm.fdcq2.zyjzmj"></el-input>
125 </el-form-item> 118 </el-form-item>
126 </el-col> 119 </el-col>
120 </el-row>
121 <el-row :gutter="10">
122
127 <el-col :span="8"> 123 <el-col :span="8">
128 <el-form-item label="分摊建筑面积:"> 124 <el-form-item label="分摊建筑面积:">
129 <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input> 125 <el-input disabled v-model="ruleForm.fdcq2.ftjzmj"></el-input>
......
1 <!-- 1 <!--
2 * @Description: 受理信息 2 * @Description: 受理信息
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-11 10:05:03 4 * @LastEditTime: 2023-07-14 11:18:17
5 --> 5 -->
6 <template> 6 <template>
7 <div class="slxx"> 7 <div class="slxx">
...@@ -83,10 +83,15 @@ ...@@ -83,10 +83,15 @@
83 </el-col> 83 </el-col>
84 </el-row> 84 </el-row>
85 <el-row :gutter="10" v-if="ruleForm.qlxx"> 85 <el-row :gutter="10" v-if="ruleForm.qlxx">
86 <el-col :span="8"> 86 <!-- <el-col :span="8">
87 <el-form-item label="房屋用途:"> 87 <el-form-item label="房屋用途:">
88 <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input> 88 <el-input disabled v-model="ruleForm.qlxx.ytmc"></el-input>
89 </el-form-item> 89 </el-form-item>
90 </el-col> -->
91 <el-col :span="8">
92 <el-form-item label="规划用途名称:">
93 <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input>
94 </el-form-item>
90 </el-col> 95 </el-col>
91 <el-col :span="8"> 96 <el-col :span="8">
92 <el-form-item label="房屋性质:"> 97 <el-form-item label="房屋性质:">
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
60 </template> 60 </template>
61 61
62 <script> 62 <script>
63 import { getFdcqLSInfo } from "@/api/registerBook.js"; 63 import { getFdcqLSInfo } from "@/api/djbDetail.js";
64 import { datas } from "@/views/registerBook/qlxxFormData.js"; 64 import { datas } from "@/views/registerBook/qlxxFormData.js";
65 65
66 export default { 66 export default {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-11 10:09:49 4 * @LastEditTime: 2023-07-14 11:09:33
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -75,18 +75,16 @@ ...@@ -75,18 +75,16 @@
75 <el-input v-model="ruleForm.zdjbxx.zdmj"></el-input> 75 <el-input v-model="ruleForm.zdjbxx.zdmj"></el-input>
76 </el-form-item> 76 </el-form-item>
77 </el-col> 77 </el-col>
78 <el-col :span="8"> 78 <!-- <el-col :span="8">
79 <el-form-item label="土地用途:"> 79 <el-form-item label="土地用途:">
80 <el-input v-model="ruleForm.zdjbxx.ghytmc"></el-input> 80 <el-input v-model="ruleForm.zdjbxx.ghytmc"></el-input>
81 </el-form-item> 81 </el-form-item>
82 </el-col> 82 </el-col> -->
83 <el-col :span="8"> 83 <el-col :span="8">
84 <el-form-item label="权利设定方式:"> 84 <el-form-item label="权利设定方式:">
85 <el-input v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> 85 <el-input v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input>
86 </el-form-item> 86 </el-form-item>
87 </el-col> 87 </el-col>
88 </el-row>
89 <el-row :gutter="10">
90 <el-col :span="8"> 88 <el-col :span="8">
91 <el-form-item label="取得价格:"> 89 <el-form-item label="取得价格:">
92 <div style="display:flex"> 90 <div style="display:flex">
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-11 09:48:21 4 * @LastEditTime: 2023-07-14 11:06:27
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 受理信息 --> 7 <!-- 受理信息 -->
...@@ -75,66 +75,103 @@ ...@@ -75,66 +75,103 @@
75 </el-form-item> 75 </el-form-item>
76 </el-col> 76 </el-col>
77 <el-col :span="8"> 77 <el-col :span="8">
78 <el-form-item label="土地用途:"> 78 <el-form-item label="权利设定方式:">
79 <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> 79 <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input>
80 </el-form-item> 80 </el-form-item>
81 </el-col> 81 </el-col>
82 <el-col :span="8"> 82 <el-col :span="8">
83 <el-form-item label="权利设定方式:"> 83 <el-form-item label="面积单位:">
84 <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> 84 <el-input v-model="ruleForm.tdsyq.mjdw" :disabled="!ableOperation"></el-input>
85 </el-form-item> 85 </el-form-item>
86 </el-col> 86 </el-col>
87 </el-row> 87 </el-row>
88 <el-row :gutter="10"> 88 <el-row :gutter="10">
89 <el-col :span="8"> 89 <el-col :span="8">
90 <el-form-item label="农用地面积:"> 90 <el-form-item label="农用地面积:">
91 <div class="flex">
91 <el-input v-model="ruleForm.tdsyq.nydmj" :disabled="!ableOperation" 92 <el-input v-model="ruleForm.tdsyq.nydmj" :disabled="!ableOperation"
92 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 93 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
94 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
95 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
96 </el-option>
97 </el-select>
98 </div>
93 </el-form-item> 99 </el-form-item>
94 </el-col> 100 </el-col>
95 <el-col :span="8"> 101 <el-col :span="8">
96 <el-form-item label="耕地面积:"> 102 <el-form-item label="耕地面积:">
103 <div class="flex">
97 <el-input v-model="ruleForm.tdsyq.gdmj" :disabled="!ableOperation" 104 <el-input v-model="ruleForm.tdsyq.gdmj" :disabled="!ableOperation"
98 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 105 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
106 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
107 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
108 </el-option>
109 </el-select>
110 </div>
99 </el-form-item> 111 </el-form-item>
100 </el-col> 112 </el-col>
101 <el-col :span="8"> 113 <el-col :span="8">
102 <el-form-item label="林地面积:"> 114 <el-form-item label="林地面积:">
115 <div class="flex">
103 <el-input v-model="ruleForm.tdsyq.ldmj" :disabled="!ableOperation" 116 <el-input v-model="ruleForm.tdsyq.ldmj" :disabled="!ableOperation"
104 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 117 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
118 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
119 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
120 </el-option>
121 </el-select>
122 </div>
105 </el-form-item> 123 </el-form-item>
106 </el-col> 124 </el-col>
107 </el-row> 125 </el-row>
108 <el-row :gutter="10"> 126 <el-row :gutter="10">
109 <el-col :span="8"> 127 <el-col :span="8">
110 <el-form-item label="草地面积:"> 128 <el-form-item label="草地面积:">
129 <div class="flex">
111 <el-input v-model="ruleForm.tdsyq.cdmj" :disabled="!ableOperation" 130 <el-input v-model="ruleForm.tdsyq.cdmj" :disabled="!ableOperation"
112 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 131 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
132 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
133 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
134 </el-option>
135 </el-select>
136 </div>
113 </el-form-item> 137 </el-form-item>
114 </el-col> 138 </el-col>
115 <el-col :span="8"> 139 <el-col :span="8">
116 <el-form-item label="其他农用地面积:"> 140 <el-form-item label="其他农用地面积:">
141 <div class="flex">
117 <el-input v-model="ruleForm.tdsyq.qtnydmj" :disabled="!ableOperation" 142 <el-input v-model="ruleForm.tdsyq.qtnydmj" :disabled="!ableOperation"
118 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 143 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
144 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
145 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
146 </el-option>
147 </el-select>
148 </div>
119 </el-form-item> 149 </el-form-item>
120 </el-col> 150 </el-col>
121 <el-col :span="8"> 151 <el-col :span="8">
122 <el-form-item label="建筑使用面积:"> 152 <el-form-item label="建筑使用面积:">
153 <div class="flex">
123 <el-input v-model="ruleForm.tdsyq.jsydmj" :disabled="!ableOperation" 154 <el-input v-model="ruleForm.tdsyq.jsydmj" :disabled="!ableOperation"
124 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 155 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
156 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
157 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
158 </el-option>
159 </el-select>
160 </div>
125 </el-form-item> 161 </el-form-item>
126 </el-col> 162 </el-col>
127 </el-row> 163 </el-row>
128 <el-row :gutter="10"> 164 <el-row :gutter="10">
129 <el-col :span="8"> 165 <el-col :span="8">
130 <el-form-item label="未利用地面积:"> 166 <el-form-item label="未利用地面积:">
167 <div class="flex">
131 <el-input v-model="ruleForm.tdsyq.wlydmj" :disabled="!ableOperation" 168 <el-input v-model="ruleForm.tdsyq.wlydmj" :disabled="!ableOperation"
132 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> 169 oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input>
133 </el-form-item> 170 <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%">
134 </el-col> 171 <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode">
135 <el-col :span="8"> 172 </el-option>
136 <el-form-item label="面积单位:"> 173 </el-select>
137 <el-input v-model="ruleForm.tdsyq.mjdw" :disabled="!ableOperation"></el-input> 174 </div>
138 </el-form-item> 175 </el-form-item>
139 </el-col> 176 </el-col>
140 </el-row> 177 </el-row>
...@@ -243,6 +280,7 @@ ...@@ -243,6 +280,7 @@
243 }, 280 },
244 data () { 281 data () {
245 return { 282 return {
283 mjdw: '1',
246 value2: { 284 value2: {
247 id: "520000198407304275", 285 id: "520000198407304275",
248 user: "史平" 286 user: "史平"
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 16:31:05
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -125,7 +130,7 @@ ...@@ -125,7 +130,7 @@
125 import searchMin from "../components/mixin/index"; 130 import searchMin from "../components/mixin/index";
126 import table from "@/utils/mixin/table"; 131 import table from "@/utils/mixin/table";
127 import { datas, sendThis } from "./ybxdata"; 132 import { datas, sendThis } from "./ybxdata";
128 import { searchTaskDone } from "@/api/ywbl"; 133 import { searchTaskDone } from "@/api/workflow/search.js";
129 import searchBox from "../components/search.vue"; 134 import searchBox from "../components/search.vue";
130 export default { 135 export default {
131 name: "ybx", 136 name: "ybx",
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 14:47:30
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -74,7 +79,8 @@ ...@@ -74,7 +79,8 @@
74 import { ywPopupDialog } from "@/utils/popup.js"; 79 import { ywPopupDialog } from "@/utils/popup.js";
75 import { datas, sendThis } from "../javascript/cfdj.js"; 80 import { datas, sendThis } from "../javascript/cfdj.js";
76 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 81 import { defaultParameters } from "../javascript/publicDefaultPar.js";
77 import { selectCfdj, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js"; 82 import { selectCfdj } from "@/api/ywsq.js";
83 import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js";
78 export default { 84 export default {
79 props: { 85 props: {
80 isJump: { type: Boolean, default: false }, 86 isJump: { type: Boolean, default: false },
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 14:47:36
5 -->
1 <template> 6 <template>
2 <!-- 抵押权利信息查询 --> 7 <!-- 抵押权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -61,7 +66,8 @@ ...@@ -61,7 +66,8 @@
61 import { ywPopupDialog } from "@/utils/popup.js"; 66 import { ywPopupDialog } from "@/utils/popup.js";
62 import { datas, sendThis } from "../javascript/diyaq.js"; 67 import { datas, sendThis } from "../javascript/diyaq.js";
63 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 68 import { defaultParameters } from "../javascript/publicDefaultPar.js";
64 import { selectDiyaq, startBusinessFlow } from "@/api/ywbl.js"; 69 import { selectDiyaq } from "@/api/ywsq.js";
70 import { startBusinessFlow } from "@/api/workFlow.js";
65 export default { 71 export default {
66 mixins: [table, jump], 72 mixins: [table, jump],
67 props: { 73 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:23:28
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <el-tabs type="card" v-model="activeName" @tab-click="handleTabClick" v-if="!isJump"> 8 <el-tabs type="card" v-model="activeName" @tab-click="handleTabClick" v-if="!isJump">
...@@ -128,7 +133,8 @@ ...@@ -128,7 +133,8 @@
128 import { ywPopupDialog } from "@/utils/popup.js"; 133 import { ywPopupDialog } from "@/utils/popup.js";
129 import { datas, sendThis } from "../javascript/fwsyq.js"; 134 import { datas, sendThis } from "../javascript/fwsyq.js";
130 import jump from "@/views/ywbl/ywsq/components/mixin/jump"; 135 import jump from "@/views/ywbl/ywsq/components/mixin/jump";
131 import { selectScBdcdy, startBusinessFlow, choiceBdcdy, selectOtherH, selectZrz, selectDz } from "@/api/ywbl.js"; 136 import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js";
137 import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js";
132 export default { 138 export default {
133 mixins: [table, jump], 139 mixins: [table, jump],
134 props: { 140 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:23:44
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 国有建设用地使用权 --> 8 <!-- 表单部分 国有建设用地使用权 -->
...@@ -47,7 +52,8 @@ ...@@ -47,7 +52,8 @@
47 import { ywPopupDialog } from "@/utils/popup.js"; 52 import { ywPopupDialog } from "@/utils/popup.js";
48 import { datas, sendThis } from "../javascript/nydsyq100.js"; 53 import { datas, sendThis } from "../javascript/nydsyq100.js";
49 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 54 import { defaultParameters } from "../javascript/publicDefaultPar.js";
50 import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; 55 import { selectZdjbxx } from "@/api/ywsq.js";
56 import { startBusinessFlow } from "@/api/workFlow.js";
51 export default { 57 export default {
52 mixins: [table, jump], 58 mixins: [table, jump],
53 props: { 59 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:23:51
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -47,7 +52,8 @@ ...@@ -47,7 +52,8 @@
47 import { ywPopupDialog } from "@/utils/popup.js"; 52 import { ywPopupDialog } from "@/utils/popup.js";
48 import { datas, sendThis } from "../javascript/selectJsydsyq.js"; 53 import { datas, sendThis } from "../javascript/selectJsydsyq.js";
49 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 54 import { defaultParameters } from "../javascript/publicDefaultPar.js";
50 import { startBusinessFlow, selectNydsyqQlxx } from "@/api/ywbl.js"; 55 import { selectNydsyqQlxx } from "@/api/ywsq.js";
56 import { startBusinessFlow } from "@/api/workFlow.js";
51 export default { 57 export default {
52 mixins: [table, jump], 58 mixins: [table, jump],
53 props: { 59 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:26:40
5 -->
1 <template> 6 <template>
2 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -61,8 +66,9 @@ ...@@ -61,8 +66,9 @@
61 import { ywPopupDialog } from "@/utils/popup.js"; 66 import { ywPopupDialog } from "@/utils/popup.js";
62 import { datas, sendThis } from "../javascript/selecBdcql.js"; 67 import { datas, sendThis } from "../javascript/selecBdcql.js";
63 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 68 import { defaultParameters } from "../javascript/publicDefaultPar.js";
64 import { selectQlxx, startBusinessFlow } from "@/api/ywbl.js"; 69 import { selectQlxx } from "@/api/ywsq.js";
65 import { getQllxByBsmSqyw } from "@/api/system.js"; 70 import { startBusinessFlow } from "@/api/workFlow.js";
71 import { getQllxByBsmSqyw } from "@/api/sysSqdjyw.js";
66 export default { 72 export default {
67 mixins: [table, jump], 73 mixins: [table, jump],
68 props: { 74 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:26:46
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -55,9 +60,9 @@ ...@@ -55,9 +60,9 @@
55 import store from '@/store/index.js' 60 import store from '@/store/index.js'
56 import table from "@/utils/mixin/table"; 61 import table from "@/utils/mixin/table";
57 import { ywPopupDialog } from "@/utils/popup.js"; 62 import { ywPopupDialog } from "@/utils/popup.js";
58 import { startRepairFlow } from "@/api/ywbl.js"; 63 import { startRepairFlow } from "@/api/workFlow.js";
59 import { datas, sendThis } from "../javascript/selectDjbbl.js"; 64 import { datas, sendThis } from "../javascript/selectDjbbl.js";
60 import { selectRepairQlxx } from "@/api/selectQlxx.js"; 65 import { selectRepairQlxx } from "@/api/ywsq.js";
61 import jump from "../components/mixin/djbbljump"; 66 import jump from "../components/mixin/djbbljump";
62 export default { 67 export default {
63 name: "djbcx", 68 name: "djbcx",
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:26:51
5 -->
1 <template> 6 <template>
2 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -53,7 +58,8 @@ ...@@ -53,7 +58,8 @@
53 import { ywPopupDialog } from "@/utils/popup.js"; 58 import { ywPopupDialog } from "@/utils/popup.js";
54 import { datas, sendThis } from "../javascript/selectFwsyq.js"; 59 import { datas, sendThis } from "../javascript/selectFwsyq.js";
55 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 60 import { defaultParameters } from "../javascript/publicDefaultPar.js";
56 import { selectFwsyq, startBusinessFlow } from "@/api/ywbl.js"; 61 import { selectFwsyq } from "@/api/ywsq.js";
62 import { startBusinessFlow } from "@/api/workFlow.js";
57 export default { 63 export default {
58 mixins: [table, jump], 64 mixins: [table, jump],
59 props: { 65 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:26:55
5 -->
1 <template> 6 <template>
2 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -53,7 +58,8 @@ ...@@ -53,7 +58,8 @@
53 import { ywPopupDialog } from "@/utils/popup.js"; 58 import { ywPopupDialog } from "@/utils/popup.js";
54 import { datas, sendThis } from "../javascript/selectH.js"; 59 import { datas, sendThis } from "../javascript/selectH.js";
55 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 60 import { defaultParameters } from "../javascript/publicDefaultPar.js";
56 import { selectHQjdc, startBusinessFlow } from "@/api/ywbl.js"; 61 import { selectHQjdc } from "@/api/ywsq.js";
62 import { startBusinessFlow } from "@/api/workFlow.js";
57 export default { 63 export default {
58 mixins: [table, jump], 64 mixins: [table, jump],
59 props: { 65 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:27:00
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -61,7 +66,8 @@ ...@@ -61,7 +66,8 @@
61 import { ywPopupDialog } from "@/utils/popup.js"; 66 import { ywPopupDialog } from "@/utils/popup.js";
62 import { datas, sendThis } from "../javascript/selectJsydsyq.js"; 67 import { datas, sendThis } from "../javascript/selectJsydsyq.js";
63 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 68 import { defaultParameters } from "../javascript/publicDefaultPar.js";
64 import { startBusinessFlow, selectJsydQlxx } from "@/api/ywbl.js"; 69 import { selectJsydQlxx } from "@/api/ywsq.js";
70 import { startBusinessFlow } from "@/api/workFlow.js";
65 export default { 71 export default {
66 mixins: [table, jump], 72 mixins: [table, jump],
67 props: { 73 props: {
......
...@@ -144,7 +144,8 @@ ...@@ -144,7 +144,8 @@
144 import { ywPopupDialog } from "@/utils/popup.js"; 144 import { ywPopupDialog } from "@/utils/popup.js";
145 import { datas, datastwo, sendThis } from "../javascript/selectJsydsyqhbfg.js"; 145 import { datas, datastwo, sendThis } from "../javascript/selectJsydsyqhbfg.js";
146 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 146 import { defaultParameters } from "../javascript/publicDefaultPar.js";
147 import { startBusinessFlow, selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMergeLast } from "@/api/ywbl.js"; 147 import { selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMergeLast } from "@/api/ywsq.js";
148 import { startBusinessFlow } from "@/api/workFlow.js";
148 export default { 149 export default {
149 mixins: [table, jump], 150 mixins: [table, jump],
150 props: { 151 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:27:13
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 国有建设用地使用权 --> 8 <!-- 表单部分 国有建设用地使用权 -->
...@@ -51,7 +56,8 @@ ...@@ -51,7 +56,8 @@
51 import store from '@/store/index.js' 56 import store from '@/store/index.js'
52 import table from "@/utils/mixin/table"; 57 import table from "@/utils/mixin/table";
53 import { ywPopupDialog } from "@/utils/popup.js"; 58 import { ywPopupDialog } from "@/utils/popup.js";
54 import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; 59 import { selectZdjbxx } from "@/api/ywsq.js";
60 import { startBusinessFlow } from "@/api/workFlow.js";
55 import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; 61 import { datas, sendThis } from "../javascript/selectQjzdjbxx.js";
56 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 62 import { defaultParameters } from "../javascript/publicDefaultPar.js";
57 export default { 63 export default {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:27:16
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 表单部分 --> 8 <!-- 表单部分 -->
...@@ -61,7 +66,8 @@ ...@@ -61,7 +66,8 @@
61 import { ywPopupDialog } from "@/utils/popup.js"; 66 import { ywPopupDialog } from "@/utils/popup.js";
62 import { datas, sendThis } from "../javascript/selectTdsyq.js"; 67 import { datas, sendThis } from "../javascript/selectTdsyq.js";
63 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 68 import { defaultParameters } from "../javascript/publicDefaultPar.js";
64 import { startBusinessFlow, selectTdsyqQlxx } from "@/api/ywbl.js"; 69 import { selectTdsyqQlxx } from "@/api/ywsq.js";
70 import { startBusinessFlow } from "@/api/workFlow.js";
65 export default { 71 export default {
66 mixins: [table, jump], 72 mixins: [table, jump],
67 props: { 73 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:27:19
5 -->
1 <template> 6 <template>
2 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -53,7 +58,8 @@ ...@@ -53,7 +58,8 @@
53 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 58 import { defaultParameters } from "../javascript/publicDefaultPar.js";
54 import table from "@/utils/mixin/table"; 59 import table from "@/utils/mixin/table";
55 import jump from "./mixin/jump"; 60 import jump from "./mixin/jump";
56 import { selectYgdj200, startBusinessFlow } from "@/api/ywbl.js"; 61 import { selectYgdj200 } from "@/api/ywsq.js";
62 import { startBusinessFlow } from "@/api/workFlow.js";
57 export default { 63 export default {
58 mixins: [table, jump], 64 mixins: [table, jump],
59 props: { 65 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:27:26
5 -->
1 <template> 6 <template>
2 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -53,7 +58,8 @@ ...@@ -53,7 +58,8 @@
53 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 58 import { defaultParameters } from "../javascript/publicDefaultPar.js";
54 import table from "@/utils/mixin/table"; 59 import table from "@/utils/mixin/table";
55 import jump from "./mixin/jump"; 60 import jump from "./mixin/jump";
56 import { selectYgdy, startBusinessFlow } from "@/api/ywbl.js"; 61 import { selectYgdy } from "@/api/ywsq.js";
62 import { startBusinessFlow } from "@/api/workFlow.js";
57 export default { 63 export default {
58 mixins: [table, jump], 64 mixins: [table, jump],
59 props: { 65 props: {
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-07-13 15:27:34
5 -->
1 <template> 6 <template>
2 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
3 <div class="from-clues"> 8 <div class="from-clues">
...@@ -53,7 +58,8 @@ ...@@ -53,7 +58,8 @@
53 import { defaultParameters } from "../javascript/publicDefaultPar.js"; 58 import { defaultParameters } from "../javascript/publicDefaultPar.js";
54 import table from "@/utils/mixin/table"; 59 import table from "@/utils/mixin/table";
55 import jump from "./mixin/jump"; 60 import jump from "./mixin/jump";
56 import { selectHQjdc, startBusinessFlow } from "@/api/ywbl.js"; 61 import { selectHQjdc } from "@/api/ywsq.js";
62 import { startBusinessFlow } from "@/api/workFlow.js";
57 export default { 63 export default {
58 mixins: [table, jump], 64 mixins: [table, jump],
59 props: { 65 props: {
......
...@@ -91,7 +91,7 @@ ...@@ -91,7 +91,7 @@
91 </div> 91 </div>
92 </template> 92 </template>
93 <script> 93 <script>
94 import { getCollectBiz, getleftMenu, getNextNode, getRepairBiz, getTogetherBiz, addCollectBiz, deleteCollectBiz } from "@/api/ywbl" 94 import { getCollectBiz, getleftMenu, getNextNode, getRepairBiz, getTogetherBiz, addCollectBiz, deleteCollectBiz } from "@/api/businessApply.js"
95 export default { 95 export default {
96 data () { 96 data () {
97 return { 97 return {
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:36:52 4 * @LastEditTime: 2023-07-14 16:59:26
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,8 +38,8 @@ class data extends filter { ...@@ -38,8 +38,8 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a style='color:#3498db;' v-show={scope.row.qlblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 </div> 43 </div>
44 ) 44 )
45 } 45 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:36:58 4 * @LastEditTime: 2023-07-14 16:59:31
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,8 +38,9 @@ class data extends filter { ...@@ -38,8 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 44 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -49,7 +50,7 @@ class data extends filter { ...@@ -49,7 +50,7 @@ class data extends filter {
49 <span v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span v-show={scope.row.xzzt == 1}>,已限制</span>
50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
53 </div> 54 </div>
54 ) 55 )
55 } 56 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:01 4 * @LastEditTime: 2023-07-14 16:59:35
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,8 +38,9 @@ class data extends filter { ...@@ -38,8 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 44 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -49,7 +50,7 @@ class data extends filter { ...@@ -49,7 +50,7 @@ class data extends filter {
49 <span v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span v-show={scope.row.xzzt == 1}>,已限制</span>
50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
53 </div> 54 </div>
54 ) 55 )
55 } 56 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:05 4 * @LastEditTime: 2023-07-14 16:59:38
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -37,8 +37,9 @@ class data extends filter { ...@@ -37,8 +37,9 @@ class data extends filter {
37 render: (h, scope) => { 37 render: (h, scope) => {
38 return ( 38 return (
39 <div> 39 <div>
40 {/* <a v-on:click="doSomething"></a> */} 40 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 41 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
42 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
42 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -48,7 +49,7 @@ class data extends filter { ...@@ -48,7 +49,7 @@ class data extends filter {
48 <span v-show={scope.row.xzzt == 1}>,已限制</span> 49 <span v-show={scope.row.xzzt == 1}>,已限制</span>
49 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
50 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
51 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
52 </div> 53 </div>
53 ) 54 )
54 } 55 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:14 4 * @LastEditTime: 2023-07-14 16:59:43
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,8 +38,9 @@ class data extends filter { ...@@ -38,8 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a icon="el-icon-discover" style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a icon="el-icon-discover" style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
43 <span icon="el-icon-discover" v-show={scope.row.zjgcdyzt == 1}>在建工程抵押</span> 44 <span icon="el-icon-discover" v-show={scope.row.zjgcdyzt == 1}>在建工程抵押</span>
44 <span icon="el-icon-discover" v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span icon="el-icon-discover" v-show={scope.row.ycfzt == 1}>,已预查封</span>
45 <span icon="el-icon-discover" v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span icon="el-icon-discover" v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -49,7 +50,7 @@ class data extends filter { ...@@ -49,7 +50,7 @@ class data extends filter {
49 <span icon="el-icon-discover" v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span icon="el-icon-discover" v-show={scope.row.xzzt == 1}>,已限制</span>
50 <span icon="el-icon-discover" v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span icon="el-icon-discover" v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
51 <span icon="el-icon-discover" v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span icon="el-icon-discover" v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
52 <span icon="el-icon-discover" v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span icon="el-icon-discover" v-show={scope.row.dyzt == 1}>,已抵押</span> */}
53 </div> 54 </div>
54 ) 55 )
55 } 56 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:18 4 * @LastEditTime: 2023-07-14 16:59:46
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,18 +38,8 @@ class data extends filter { ...@@ -38,18 +38,8 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
46 <span v-show={scope.row.cfzt == 1}>,已查封</span>
47 <span v-show={scope.row.diyizt == 1}>,已地役</span>
48 <span v-show={scope.row.yyzt == 1}>,异议中</span>
49 <span v-show={scope.row.xzzt == 1}>,已限制</span>
50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
52 <span v-show={scope.row.dyzt == 1}>,已抵押</span>
53 </div> 43 </div>
54 ) 44 )
55 } 45 }
......
...@@ -33,9 +33,8 @@ class data extends filter { ...@@ -33,9 +33,8 @@ class data extends filter {
33 render: (h, scope) => { 33 render: (h, scope) => {
34 return ( 34 return (
35 <div> 35 <div>
36 {/* <a v-on:click="doSomething"></a> */} 36 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
37 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 37 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
38 <span v-show={scope.row.sfbl == 1}>,正在补录</span>
39 </div> 38 </div>
40 ) 39 )
41 } 40 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:22 4 * @LastEditTime: 2023-07-14 16:59:53
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -37,8 +37,9 @@ class data extends filter { ...@@ -37,8 +37,9 @@ class data extends filter {
37 render: (h, scope) => { 37 render: (h, scope) => {
38 return ( 38 return (
39 <div> 39 <div>
40 {/* <a v-on:click="doSomething"></a> */} 40 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 41 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
42 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
42 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -48,7 +49,7 @@ class data extends filter { ...@@ -48,7 +49,7 @@ class data extends filter {
48 <span v-show={scope.row.xzzt == 1}>,已限制</span> 49 <span v-show={scope.row.xzzt == 1}>,已限制</span>
49 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
50 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
51 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
52 </div> 53 </div>
53 ) 54 )
54 } 55 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-04-26 14:02:59 4 * @LastEditTime: 2023-07-14 16:59:57
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -36,8 +36,9 @@ class data extends filter { ...@@ -36,8 +36,9 @@ class data extends filter {
36 render: (h, scope) => { 36 render: (h, scope) => {
37 return ( 37 return (
38 <div> 38 <div>
39 {/* <a v-on:click="doSomething"></a> */} 39 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
40 <a style='color:#3498db;' v-show={scope.row.zt == 1} >正在办理</a> 40 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
41 {/* <a style='color:#3498db;' v-show={scope.row.zt == 1} >正在办理</a>
41 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 42 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
42 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -47,7 +48,7 @@ class data extends filter { ...@@ -47,7 +48,7 @@ class data extends filter {
47 <span v-show={scope.row.xzzt == 1}>,已限制</span> 48 <span v-show={scope.row.xzzt == 1}>,已限制</span>
48 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 49 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
49 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 50 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
50 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 51 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
51 </div> 52 </div>
52 ) 53 )
53 } 54 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:24 4 * @LastEditTime: 2023-07-14 17:00:00
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
8 8
...@@ -38,7 +38,9 @@ class data extends filter { ...@@ -38,7 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
42 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 44 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -48,7 +50,7 @@ class data extends filter { ...@@ -48,7 +50,7 @@ class data extends filter {
48 <span v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span v-show={scope.row.xzzt == 1}>,已限制</span>
49 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
50 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
51 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
52 </div> 54 </div>
53 ) 55 )
54 } 56 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-06-15 16:23:57 4 * @LastEditTime: 2023-07-14 17:00:04
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -33,7 +33,9 @@ class data extends filter { ...@@ -33,7 +33,9 @@ class data extends filter {
33 render: (h, scope) => { 33 render: (h, scope) => {
34 return ( 34 return (
35 <div> 35 <div>
36 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 36 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
37 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
38 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
37 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 39 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
38 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 40 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
39 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 41 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -43,7 +45,7 @@ class data extends filter { ...@@ -43,7 +45,7 @@ class data extends filter {
43 <span v-show={scope.row.xzzt == 1}>,已限制</span> 45 <span v-show={scope.row.xzzt == 1}>,已限制</span>
44 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 46 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
45 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 47 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
46 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 48 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
47 </div> 49 </div>
48 ) 50 )
49 } 51 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-04-26 13:57:47 4 * @LastEditTime: 2023-07-14 17:00:07
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -37,8 +37,9 @@ class data extends filter { ...@@ -37,8 +37,9 @@ class data extends filter {
37 render: (h, scope) => { 37 render: (h, scope) => {
38 return ( 38 return (
39 <div> 39 <div>
40 {/* <a v-on:click="doSomething"></a> */} 40 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 41 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
42 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
42 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -48,7 +49,7 @@ class data extends filter { ...@@ -48,7 +49,7 @@ class data extends filter {
48 <span v-show={scope.row.xzzt == 1}>,已限制</span> 49 <span v-show={scope.row.xzzt == 1}>,已限制</span>
49 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
50 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
51 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
52 </div> 53 </div>
53 ) 54 )
54 } 55 }
......
1 /* 1 /*
2 * @Description: 土地所有权对象处理 2 * @Description: 土地所有权对象处理
3 * @Autor: ssq 3 * @Autor: ssq
4 * @LastEditTime: 2023年06月28日 11:08:58 4 * @LastEditTime: 2023-07-14 17:00:11
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
8 8
...@@ -38,7 +38,9 @@ class data extends filter { ...@@ -38,7 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
42 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 44 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
43 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -48,7 +50,7 @@ class data extends filter { ...@@ -48,7 +50,7 @@ class data extends filter {
48 <span v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span v-show={scope.row.xzzt == 1}>,已限制</span>
49 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
50 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
51 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
52 </div> 54 </div>
53 ) 55 )
54 } 56 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:39 4 * @LastEditTime: 2023-07-14 17:00:15
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,8 +38,9 @@ class data extends filter { ...@@ -38,8 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 44 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -49,7 +50,7 @@ class data extends filter { ...@@ -49,7 +50,7 @@ class data extends filter {
49 <span v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span v-show={scope.row.xzzt == 1}>,已限制</span>
50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
53 </div> 54 </div>
54 ) 55 )
55 } 56 }
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-17 10:37:47 4 * @LastEditTime: 2023-07-14 17:00:21
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -38,8 +38,9 @@ class data extends filter { ...@@ -38,8 +38,9 @@ class data extends filter {
38 render: (h, scope) => { 38 render: (h, scope) => {
39 return ( 39 return (
40 <div> 40 <div>
41 {/* <a v-on:click="doSomething"></a> */} 41 <a style='color:#3498db;' v-show={scope.row.djblzt == 1}>{this.yWstatus(scope.row)}</a>
42 <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> 42 <span v-show={scope.row.djblzt != 1}>{this.yWstatus(scope.row)}</span>
43 {/* <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a>
43 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> 44 <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span>
44 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
45 <span v-show={scope.row.ycfzt == 1}>,已预查封</span> 46 <span v-show={scope.row.ycfzt == 1}>,已预查封</span>
...@@ -49,7 +50,7 @@ class data extends filter { ...@@ -49,7 +50,7 @@ class data extends filter {
49 <span v-show={scope.row.xzzt == 1}>,已限制</span> 50 <span v-show={scope.row.xzzt == 1}>,已限制</span>
50 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> 51 <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span>
51 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> 52 <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span>
52 <span v-show={scope.row.dyzt == 1}>,已抵押</span> 53 <span v-show={scope.row.dyzt == 1}>,已抵押</span> */}
53 </div> 54 </div>
54 ) 55 )
55 } 56 }
......
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
92 import { mapGetters } from "vuex"; 92 import { mapGetters } from "vuex";
93 import table from "@/utils/mixin/table"; 93 import table from "@/utils/mixin/table";
94 import { datas, sendThis } from "./djbcxdata"; 94 import { datas, sendThis } from "./djbcxdata";
95 import { getDjbBysearch } from "@/api/zhcx.js"; 95 import { getDjbBysearch } from "@/api/search.js";
96 96
97 export default { 97 export default {
98 name: "djbcx", 98 name: "djbcx",
......
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
83 import { mapGetters } from 'vuex' 83 import { mapGetters } from 'vuex'
84 import table from "@/utils/mixin/table"; 84 import table from "@/utils/mixin/table";
85 import { datas, sendThis } from "./jdcxdata"; 85 import { datas, sendThis } from "./jdcxdata";
86 import { getJdcxBysearch } from "@/api/zhcx.js" 86 import { getJdcxBysearch } from "@/api/search.js"
87 export default { 87 export default {
88 name: "jdcx", 88 name: "jdcx",
89 components: {}, 89 components: {},
...@@ -97,10 +97,6 @@ ...@@ -97,10 +97,6 @@
97 data () { 97 data () {
98 return { 98 return {
99 queryForm: { 99 queryForm: {
100 ywly: "",
101 qllx: "",
102 djlx: "",
103 ywh: "",
104 }, 100 },
105 tableData: { 101 tableData: {
106 total: 0, 102 total: 0,
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
50 <script> 50 <script>
51 import table from "@/utils/mixin/table"; 51 import table from "@/utils/mixin/table";
52 import { datas, sendThis } from "./lpcxdata"; 52 import { datas, sendThis } from "./lpcxdata";
53 import { getLpZrz } from "@/api/lpb.js"; 53 import { getLpZrz } from "@/api/lpcx.js";
54 export default { 54 export default {
55 name: "lpcx", 55 name: "lpcx",
56 components: {}, 56 components: {},
......
...@@ -50,8 +50,8 @@ ...@@ -50,8 +50,8 @@
50 <script> 50 <script>
51 import table from "@/utils/mixin/table"; 51 import table from "@/utils/mixin/table";
52 import { datas, sendThis } from "./zslqcx"; 52 import { datas, sendThis } from "./zslqcx";
53 import { getBdcqzReceiveList } from "@/api/zhcx" 53 import { getBdcqzReceiveList } from "@/api/search.js"
54 import { bdcqzPreview } from "@/api/bdcqz" 54 import { bdcqzPreview } from "@/api/bdcqz.js"
55 export default { 55 export default {
56 components: {}, 56 components: {},
57 mixins: [table], 57 mixins: [table],
......
...@@ -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 "./zxgcdycx"; 50 import { datas, sendThis } from "./zxgcdycx";
51 import { getZjgcdyList } from "@/api/zhcx" 51 import { getZjgcdyList } from "@/api/search.js"
52 export default { 52 export default {
53 components: {}, 53 components: {},
54 mixins: [table], 54 mixins: [table],
......
...@@ -59,7 +59,8 @@ ...@@ -59,7 +59,8 @@
59 </template> 59 </template>
60 60
61 <script> 61 <script>
62 import { getZsStartNo, getSysSerialSingle, getZsEndNo, zsff, getZsglInfo } from "@/api/zsgl.js" 62 import { getZsStartNo, getZsEndNo, zsff, getZsglInfo } from "@/api/zsgl.js"
63 import { getSysSerialSingle } from "@/api/sysSerial.js"
63 export default { 64 export default {
64 props: { 65 props: {
65 formData: { 66 formData: {
......
...@@ -67,7 +67,8 @@ ...@@ -67,7 +67,8 @@
67 67
68 <script> 68 <script>
69 import store from '@/store/index.js' 69 import store from '@/store/index.js'
70 import { getSysSerialSingle, zsrk, getZsglInfo } from "@/api/zsgl.js" 70 import { zsrk, getZsglInfo } from "@/api/zsgl.js"
71 import { getSysSerialSingle } from "@/api/sysSerial.js"
71 export default { 72 export default {
72 props: { 73 props: {
73 formData: { 74 formData: {
......