Merge branch 'dev'
Showing
67 changed files
with
1006 additions
and
1063 deletions
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-16 13:36:44 | 4 | * @LastEditTime: 2023-05-16 13:36:44 |
| 5 | */ | 5 | */ |
| ... | @@ -8,3 +8,16 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap | ... | @@ -8,3 +8,16 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap |
| 8 | export function uploadUrl () { | 8 | export function uploadUrl () { |
| 9 | return process.env.VUE_APP_BASE_API + SERVER.SERVERAPI + '/file/upload' | 9 | return process.env.VUE_APP_BASE_API + SERVER.SERVERAPI + '/file/upload' |
| 10 | } | 10 | } |
| 11 | |||
| 12 | /** | ||
| 13 | * @description: 上传单个文件 | ||
| 14 | * @param {*} data | ||
| 15 | * @author: renchao | ||
| 16 | */ | ||
| 17 | export function upload (data) { | ||
| 18 | return request({ | ||
| 19 | url: SERVER.SERVERAPI + '/rest/file/upload', | ||
| 20 | method: 'post', | ||
| 21 | data | ||
| 22 | }) | ||
| 23 | } | ... | ... |
src/api/opinion.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-16 14:01:26 | ||
| 5 | */ | ||
| 6 | import request from '@/utils/request' | ||
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 8 | |||
| 9 | /** | ||
| 10 | * @description: 获取审批意见 | ||
| 11 | * @param {*} data | ||
| 12 | * @author: renchao | ||
| 13 | */ | ||
| 14 | export function getSpyjList (data) { | ||
| 15 | return request({ | ||
| 16 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getSpyjList', | ||
| 17 | method: 'post', | ||
| 18 | data | ||
| 19 | }) | ||
| 20 | } | ||
| 21 | |||
| 22 | /** | ||
| 23 | * @description: 保存审批意见 | ||
| 24 | * @param {*} data | ||
| 25 | * @author: renchao | ||
| 26 | */ | ||
| 27 | export function saveSpyj (data) { | ||
| 28 | return request({ | ||
| 29 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyj', | ||
| 30 | method: 'post', | ||
| 31 | data | ||
| 32 | }) | ||
| 33 | } | ||
| 34 | /** | ||
| 35 | * @description: 根据受理申请保存审批意见 | ||
| 36 | * @param {*} data | ||
| 37 | * @author: renchao | ||
| 38 | */ | ||
| 39 | export function saveSpyjBySlsq (data) { | ||
| 40 | return request({ | ||
| 41 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyjBySlsq', | ||
| 42 | method: 'post', | ||
| 43 | data | ||
| 44 | }) | ||
| 45 | } | ||
| 46 | |||
| 47 | /** | ||
| 48 | * @description: 获取用户常用意见 | ||
| 49 | * @param {*} data | ||
| 50 | * @author: renchao | ||
| 51 | */ | ||
| 52 | export function getUserCommonOpinion (data) { | ||
| 53 | return request({ | ||
| 54 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getUserCommonOpinion', | ||
| 55 | method: 'post', | ||
| 56 | data | ||
| 57 | }) | ||
| 58 | } | ||
| 59 | |||
| 60 | /** | ||
| 61 | * @description: 新增用户常用意见 | ||
| 62 | * @param {*} params | ||
| 63 | * @author: renchao | ||
| 64 | */ | ||
| 65 | export function addUserCommonOpinion (params) { | ||
| 66 | return request({ | ||
| 67 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/addUserCommonOpinion', | ||
| 68 | method: 'get', | ||
| 69 | params | ||
| 70 | }) | ||
| 71 | } | ||
| 72 | |||
| 73 | /** | ||
| 74 | * @description: 删除常用意见 | ||
| 75 | * @param {*} params | ||
| 76 | * @author: renchao | ||
| 77 | */ | ||
| 78 | export function delUserCommonOpinion (params) { | ||
| 79 | return request({ | ||
| 80 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/delUserCommonOpinion', | ||
| 81 | method: 'get', | ||
| 82 | params | ||
| 83 | }) | ||
| 84 | } |
| ... | @@ -53,18 +53,6 @@ export function deleteCollectBiz (bsmSqyw) { | ... | @@ -53,18 +53,6 @@ export function deleteCollectBiz (bsmSqyw) { |
| 53 | method: 'post' | 53 | method: 'post' |
| 54 | }) | 54 | }) |
| 55 | } | 55 | } |
| 56 | /** | ||
| 57 | * @description: 国有建设用地使用权/房屋使用权 -选择不动产单元 | ||
| 58 | * @param {*} data | ||
| 59 | * @author: renchao | ||
| 60 | */ | ||
| 61 | export function choiceBdcdy (data) { | ||
| 62 | return request({ | ||
| 63 | url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy', | ||
| 64 | method: 'post', | ||
| 65 | data | ||
| 66 | }) | ||
| 67 | } | ||
| 68 | 56 | ||
| 69 | /** | 57 | /** |
| 70 | * @description: 选择补录权利信息 | 58 | * @description: 选择补录权利信息 | ... | ... |
src/api/sysSqdjyw.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 申请登记业务规则 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-16 16:02:32 | ||
| 5 | */ | ||
| 6 | |||
| 7 | import request from '@/utils/request' | ||
| 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 9 | |||
| 10 | /** | ||
| 11 | * @description: 申请业务规则API-根据条件进行列表查询 | ||
| 12 | * @param {*} data | ||
| 13 | * @author: renchao | ||
| 14 | */ | ||
| 15 | export function getSysSqdjywBysearch (data) { | ||
| 16 | return request({ | ||
| 17 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSysSqdjywBysearch', | ||
| 18 | method: 'post', | ||
| 19 | data | ||
| 20 | }) | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @description: 获取登记类型信息-申请业务规则 | ||
| 25 | * @param {*} id | ||
| 26 | * @author: renchao | ||
| 27 | */ | ||
| 28 | export function getDjlxInfo (id) { | ||
| 29 | return request({ | ||
| 30 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id, | ||
| 31 | method: 'post' | ||
| 32 | }) | ||
| 33 | } | ||
| 34 | |||
| 35 | /** | ||
| 36 | * @description: 获取登记类型信息-申请业务规则 | ||
| 37 | * @param {*} id | ||
| 38 | * @author: renchao | ||
| 39 | */ | ||
| 40 | export function getQllxByBsmSqyw (id) { | ||
| 41 | return request({ | ||
| 42 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getQllxByBsmSqyw?bsmSqyw=' + id, | ||
| 43 | method: 'post' | ||
| 44 | }) | ||
| 45 | } | ||
| 46 | |||
| 47 | |||
| 48 | /** | ||
| 49 | * @description: 读取申请登记业务信息-申请业务规则 | ||
| 50 | * @param {*} bsmSqyw | ||
| 51 | * @author: renchao | ||
| 52 | */ | ||
| 53 | export function getSqdjywDetail (bsmSqyw) { | ||
| 54 | return request({ | ||
| 55 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw, | ||
| 56 | method: 'get' | ||
| 57 | }) | ||
| 58 | } | ||
| 59 | /** | ||
| 60 | * @description: 保存登记业务信息-申请业务规则 | ||
| 61 | * @param {*} data | ||
| 62 | * @author: renchao | ||
| 63 | */ | ||
| 64 | export function saveSqdjyw (data) { | ||
| 65 | return request({ | ||
| 66 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/saveSqdjyw', | ||
| 67 | method: 'post', | ||
| 68 | data | ||
| 69 | }) | ||
| 70 | } |
| ... | @@ -8,82 +8,6 @@ import request from '@/utils/request' | ... | @@ -8,82 +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-根据条件进行列表查询 | ||
| 25 | * @param {*} data | ||
| 26 | * @author: renchao | ||
| 27 | */ | ||
| 28 | export function getSysSqdjywBysearch (data) { | ||
| 29 | return request({ | ||
| 30 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSysSqdjywBysearch', | ||
| 31 | method: 'post', | ||
| 32 | data | ||
| 33 | }) | ||
| 34 | } | ||
| 35 | |||
| 36 | /** | ||
| 37 | * @description: 获取登记类型信息-申请业务规则 | ||
| 38 | * @param {*} id | ||
| 39 | * @author: renchao | ||
| 40 | */ | ||
| 41 | export function getDjlxInfo (id) { | ||
| 42 | return request({ | ||
| 43 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getDjlxInfo?parentid=' + id, | ||
| 44 | method: 'post' | ||
| 45 | }) | ||
| 46 | } | ||
| 47 | |||
| 48 | /** | ||
| 49 | * @description: 获取登记类型信息-申请业务规则 | ||
| 50 | * @param {*} id | ||
| 51 | * @author: renchao | ||
| 52 | */ | ||
| 53 | export function getQllxByBsmSqyw (id) { | ||
| 54 | return request({ | ||
| 55 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getQllxByBsmSqyw?bsmSqyw=' + id, | ||
| 56 | method: 'post' | ||
| 57 | }) | ||
| 58 | } | ||
| 59 | |||
| 60 | |||
| 61 | /** | ||
| 62 | * @description: 读取申请登记业务信息-申请业务规则 | ||
| 63 | * @param {*} bsmSqyw | ||
| 64 | * @author: renchao | ||
| 65 | */ | ||
| 66 | export function getSqdjywDetail (bsmSqyw) { | ||
| 67 | return request({ | ||
| 68 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/getSqdjywDetail?bsmSqyw=' + bsmSqyw, | ||
| 69 | method: 'get' | ||
| 70 | }) | ||
| 71 | } | ||
| 72 | /** | ||
| 73 | * @description: 保存登记业务信息-申请业务规则 | ||
| 74 | * @param {*} data | ||
| 75 | * @author: renchao | ||
| 76 | */ | ||
| 77 | export function saveSqdjyw (data) { | ||
| 78 | return request({ | ||
| 79 | url: SERVER.SERVERAPI + '/rest/system/sysSqdjyw/saveSqdjyw', | ||
| 80 | method: 'post', | ||
| 81 | data | ||
| 82 | }) | ||
| 83 | } | ||
| 84 | |||
| 85 | |||
| 86 | /** | ||
| 87 | * @description: 其他及附记模板-列表详情 | 11 | * @description: 其他及附记模板-列表详情 |
| 88 | * @param {*} data | 12 | * @param {*} data |
| 89 | * @author: renchao | 13 | * @author: renchao |
| ... | @@ -148,7 +72,7 @@ export function updateSysNotice (data) { | ... | @@ -148,7 +72,7 @@ export function updateSysNotice (data) { |
| 148 | 72 | ||
| 149 | // 获取通知列表 | 73 | // 获取通知列表 |
| 150 | /** | 74 | /** |
| 151 | * @description: | 75 | * @description: |
| 152 | * @param {*} data | 76 | * @param {*} data |
| 153 | * @author: renchao | 77 | * @author: renchao |
| 154 | */ | 78 | */ | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-16 14:01:26 | 4 | * @LastEditTime: 2023-05-17 10:24:24 |
| 5 | */ | 5 | */ |
| 6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
| 8 | /** | 8 | /** |
| 9 | * @description: 流程图 | ||
| 10 | * @param {*} bsmSlsq | ||
| 11 | * @param {*} bestepid | ||
| 12 | * @author: renchao | ||
| 13 | */ | ||
| 14 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
| 15 | return request({ | ||
| 16 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
| 17 | method: 'get', | ||
| 18 | params: { | ||
| 19 | bsmSlsq: bsmSlsq, | ||
| 20 | bestepid: bestepid | ||
| 21 | } | ||
| 22 | }) | ||
| 23 | } | ||
| 24 | /** | ||
| 9 | * @description: 转出 | 25 | * @description: 转出 |
| 10 | * @param {*} data | 26 | * @param {*} data |
| 11 | * @author: renchao | 27 | * @author: renchao |
| 12 | */ | 28 | */ |
| 13 | export function completeTask (data) { | 29 | export function completeTask (data) { |
| 14 | return request({ | 30 | return request({ |
| 15 | url: SERVER.SERVERAPI + '/rest/business/workFlow/completeTask', | 31 | url: SERVER.SERVERAPI + '/rest/business/workFlow/completeTask', |
| 16 | method: 'post', | 32 | method: 'post', |
| 17 | data | 33 | data |
| 18 | }) | 34 | }) |
| 19 | } | 35 | } |
| 20 | /** | 36 | /** |
| 21 | * @description: 回退表格数据 | 37 | * @description: 回退表格数据 |
| ... | @@ -23,11 +39,11 @@ export function completeTask (data) { | ... | @@ -23,11 +39,11 @@ export function completeTask (data) { |
| 23 | * @author: renchao | 39 | * @author: renchao |
| 24 | */ | 40 | */ |
| 25 | export function getTaskBackNode (params) { | 41 | export function getTaskBackNode (params) { |
| 26 | return request({ | 42 | return request({ |
| 27 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getTaskBackNode', | 43 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getTaskBackNode', |
| 28 | method: 'get', | 44 | method: 'get', |
| 29 | params: params | 45 | params: params |
| 30 | }) | 46 | }) |
| 31 | } | 47 | } |
| 32 | /** | 48 | /** |
| 33 | * @description: 退回确认接口 | 49 | * @description: 退回确认接口 |
| ... | @@ -35,11 +51,11 @@ export function getTaskBackNode (params) { | ... | @@ -35,11 +51,11 @@ export function getTaskBackNode (params) { |
| 35 | * @author: renchao | 51 | * @author: renchao |
| 36 | */ | 52 | */ |
| 37 | export function sendBackTask (data) { | 53 | export function sendBackTask (data) { |
| 38 | return request({ | 54 | return request({ |
| 39 | url: SERVER.SERVERAPI + '/rest/business/workFlow/sendBackTask', | 55 | url: SERVER.SERVERAPI + '/rest/business/workFlow/sendBackTask', |
| 40 | method: 'post', | 56 | method: 'post', |
| 41 | data | 57 | data |
| 42 | }) | 58 | }) |
| 43 | } | 59 | } |
| 44 | /** | 60 | /** |
| 45 | * @description: 获取左侧列表 | 61 | * @description: 获取左侧列表 |
| ... | @@ -47,11 +63,11 @@ export function sendBackTask (data) { | ... | @@ -47,11 +63,11 @@ export function sendBackTask (data) { |
| 47 | * @author: renchao | 63 | * @author: renchao |
| 48 | */ | 64 | */ |
| 49 | export function leftMenu (data) { | 65 | export function leftMenu (data) { |
| 50 | return request({ | 66 | return request({ |
| 51 | url: SERVER.SERVERAPI + '/rest/business/workFlow/leftMenu', | 67 | url: SERVER.SERVERAPI + '/rest/business/workFlow/leftMenu', |
| 52 | method: 'post', | 68 | method: 'post', |
| 53 | data | 69 | data |
| 54 | }) | 70 | }) |
| 55 | } | 71 | } |
| 56 | 72 | ||
| 57 | /** | 73 | /** |
| ... | @@ -60,11 +76,11 @@ export function leftMenu (data) { | ... | @@ -60,11 +76,11 @@ export function leftMenu (data) { |
| 60 | * @author: renchao | 76 | * @author: renchao |
| 61 | */ | 77 | */ |
| 62 | export function getNextLinkInfo (params) { | 78 | export function getNextLinkInfo (params) { |
| 63 | return request({ | 79 | return request({ |
| 64 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getNextLinkInfo', | 80 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getNextLinkInfo', |
| 65 | method: 'get', | 81 | method: 'get', |
| 66 | params: params | 82 | params: params |
| 67 | }); | 83 | }); |
| 68 | } | 84 | } |
| 69 | 85 | ||
| 70 | /** | 86 | /** |
| ... | @@ -73,22 +89,22 @@ export function getNextLinkInfo (params) { | ... | @@ -73,22 +89,22 @@ export function getNextLinkInfo (params) { |
| 73 | * @author: renchao | 89 | * @author: renchao |
| 74 | */ | 90 | */ |
| 75 | export function getStepFormInfo (data) { | 91 | export function getStepFormInfo (data) { |
| 76 | return request({ | 92 | return request({ |
| 77 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getStepFormInfo', | 93 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getStepFormInfo', |
| 78 | method: 'post', | 94 | method: 'post', |
| 79 | data | 95 | data |
| 80 | }); | 96 | }); |
| 81 | } | 97 | } |
| 82 | /** | 98 | /** |
| 83 | * @description: 获取单元对应的环节表单信息 | 99 | * @description: 获取单元对应的环节表单信息 |
| 84 | * @param {*} data | 100 | * @param {*} data |
| 85 | * @author: renchao | 101 | * @author: renchao |
| 86 | */ | 102 | */ |
| 87 | export function getBlYbxStepFormInfo (data) { | 103 | export function getBlYbxStepFormInfo (data) { |
| 88 | return request({ | 104 | return request({ |
| 89 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getBlYbxStepFormInfo', | 105 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getBlYbxStepFormInfo', |
| 90 | method: 'post', | 106 | method: 'post', |
| 91 | data | 107 | data |
| 92 | }); | 108 | }); |
| 93 | } | 109 | } |
| 94 | /** | 110 | /** |
| ... | @@ -97,134 +113,145 @@ export function getStepFormInfo (data) { | ... | @@ -97,134 +113,145 @@ export function getStepFormInfo (data) { |
| 97 | * @author: renchao | 113 | * @author: renchao |
| 98 | */ | 114 | */ |
| 99 | export function stepExpandInfo (data) { | 115 | export function stepExpandInfo (data) { |
| 100 | return request({ | 116 | return request({ |
| 101 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stepExpandInfo', | 117 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stepExpandInfo', |
| 102 | method: 'post', | 118 | method: 'post', |
| 103 | data | 119 | data |
| 104 | }) | 120 | }) |
| 105 | } | 121 | } |
| 106 | |||
| 107 | /** | 122 | /** |
| 108 | * @description: 获取审批意见 | 123 | * @description: 登簿接口 |
| 109 | * @param {*} data | 124 | * @param {*} data |
| 110 | * @author: renchao | 125 | * @author: renchao |
| 111 | */ | 126 | */ |
| 112 | export function getSpyjList (data) { | 127 | export function record (data) { |
| 113 | return request({ | 128 | return request({ |
| 114 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getSpyjList', | 129 | url: SERVER.SERVERAPI + '/rest/business/workFlow/record', |
| 115 | method: 'post', | 130 | method: 'post', |
| 116 | data | 131 | data |
| 117 | }) | 132 | }) |
| 133 | } | ||
| 134 | |||
| 135 | // 终止任务 | ||
| 136 | export function stopTask (data) { | ||
| 137 | return request({ | ||
| 138 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask', | ||
| 139 | method: 'post', | ||
| 140 | data | ||
| 141 | }) | ||
| 118 | } | 142 | } |
| 119 | 143 | ||
| 120 | /** | 144 | /** |
| 121 | * @description: 保存审批意见 | 145 | * @description: 获取用户任务权限 |
| 122 | * @param {*} data | 146 | * @param {*} params |
| 123 | * @author: renchao | 147 | * @author: renchao |
| 124 | */ | 148 | */ |
| 125 | export function saveSpyj (data) { | 149 | export function judgeUserTaskPermission (params) { |
| 126 | return request({ | 150 | return request({ |
| 127 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyj', | 151 | url: SERVER.SERVERAPI + '/rest/business/workFlow/judgeUserTaskPermission', |
| 128 | method: 'post', | 152 | method: 'get', |
| 129 | data | 153 | params |
| 130 | }) | 154 | }) |
| 131 | } | 155 | } |
| 156 | |||
| 132 | /** | 157 | /** |
| 133 | * @description: 根据受理申请保存审批意见 | 158 | * @description: 获取申请书数据 |
| 134 | * @param {*} data | 159 | * @param {*} data |
| 135 | * @author: renchao | 160 | * @author: renchao |
| 136 | */ | 161 | */ |
| 137 | export function saveSpyjBySlsq (data) { | 162 | export function getPrintApplicationInfo (data) { |
| 138 | return request({ | 163 | return request({ |
| 139 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/saveSpyjBySlsq', | 164 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getPrintApplicationInfo', |
| 140 | method: 'post', | 165 | method: 'post', |
| 141 | data | 166 | data |
| 142 | }) | 167 | }) |
| 143 | } | 168 | } |
| 144 | 169 | ||
| 145 | /** | 170 | /** |
| 146 | * @description: 获取用户常用意见 | 171 | * @description: 国有建设用地使用权/房屋使用权 -选择不动产单元 |
| 147 | * @param {*} data | 172 | * @param {*} data |
| 148 | * @author: renchao | 173 | * @author: renchao |
| 149 | */ | 174 | */ |
| 150 | export function getUserCommonOpinion (data) { | 175 | export function choiceBdcdy (data) { |
| 151 | return request({ | 176 | return request({ |
| 152 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/getUserCommonOpinion', | 177 | url: SERVER.SERVERAPI + '/rest/business/workFlow/choiceBdcdy', |
| 153 | method: 'post', | 178 | method: 'post', |
| 154 | data | 179 | data |
| 155 | }) | 180 | }) |
| 156 | } | 181 | } |
| 157 | |||
| 158 | /** | 182 | /** |
| 159 | * @description: 新增用户常用意见 | 183 | * @description: 待办箱/不动产单元删除接口 |
| 160 | * @param {*} params | 184 | * @param {*} data |
| 161 | * @author: renchao | 185 | * @author: renchao |
| 162 | */ | 186 | */ |
| 163 | export function addUserCommonOpinion (params) { | 187 | export function deleteFlow (data) { |
| 164 | return request({ | 188 | return request({ |
| 165 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/addUserCommonOpinion', | 189 | url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteFlow', |
| 166 | method: 'get', | 190 | method: 'post', |
| 167 | params | 191 | data |
| 168 | }) | 192 | }) |
| 169 | } | 193 | } |
| 170 | |||
| 171 | /** | 194 | /** |
| 172 | * @description: 删除常用意见 | 195 | * @description: 业务办理-发起业务申请流程 |
| 173 | * @param {*} params | 196 | * @param {*} data |
| 174 | * @author: renchao | 197 | * @author: renchao |
| 175 | */ | 198 | */ |
| 176 | export function delUserCommonOpinion (params) { | 199 | export function startBusinessFlow (data) { |
| 177 | return request({ | 200 | return request({ |
| 178 | url: SERVER.SERVERAPI + '/rest/ywbl/opinion/delUserCommonOpinion', | 201 | url: SERVER.SERVERAPI + '/rest/business/workFlow/startBusinessFlow', |
| 179 | method: 'get', | 202 | method: 'post', |
| 180 | params | 203 | data |
| 181 | }) | 204 | }) |
| 182 | } | 205 | } |
| 183 | 206 | ||
| 184 | /** | 207 | /** |
| 185 | * @description: 登簿接口 | 208 | * @description: 业务办理-发起补录申请流程 |
| 186 | * @param {*} data | 209 | * @param {*} data |
| 187 | * @author: renchao | 210 | * @author: renchao |
| 188 | */ | 211 | */ |
| 189 | export function record (data) { | 212 | export function startRepairFlow (data) { |
| 190 | return request({ | 213 | return request({ |
| 191 | url: SERVER.SERVERAPI + '/rest/business/workFlow/record', | 214 | url: SERVER.SERVERAPI + '/rest/business/workFlow/startRepairFlow', |
| 192 | method: 'post', | 215 | method: 'post', |
| 193 | data | 216 | data |
| 194 | }) | 217 | }) |
| 195 | } | 218 | } |
| 196 | 219 | ||
| 197 | // 终止任务 | 220 | /** |
| 198 | export function stopTask (data) { | 221 | * @description: 申请列表删除 |
| 199 | return request({ | 222 | * @param {*} data |
| 200 | url: SERVER.SERVERAPI + '/rest/business/workFlow/stopTask', | 223 | * @author: renchao |
| 201 | method: 'post', | 224 | */ |
| 202 | data | 225 | export function deleteSlbdcdy (data) { |
| 203 | }) | 226 | return request({ |
| 227 | url: SERVER.SERVERAPI + '/rest/business/workFlow/deleteSlbdcdy', | ||
| 228 | method: 'post', | ||
| 229 | data | ||
| 230 | }) | ||
| 204 | } | 231 | } |
| 205 | 232 | ||
| 206 | /** | 233 | /** |
| 207 | * @description: 获取用户任务权限 | 234 | * @description: 认领任务 |
| 208 | * @param {*} params | 235 | * @param {*} bsmSlsq |
| 236 | * @param {*} bestepid | ||
| 209 | * @author: renchao | 237 | * @author: renchao |
| 210 | */ | 238 | */ |
| 211 | export function judgeUserTaskPermission (params) { | 239 | export function claimTask (bsmSlsq, bestepid) { |
| 212 | return request({ | 240 | return request({ |
| 213 | url: SERVER.SERVERAPI + '/rest/business/workFlow/judgeUserTaskPermission', | 241 | url: SERVER.SERVERAPI + '/rest/business/workFlow/claimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid, |
| 214 | method: 'get', | 242 | method: 'get', |
| 215 | params | 243 | }) |
| 216 | }) | ||
| 217 | } | 244 | } |
| 218 | 245 | ||
| 219 | /** | 246 | /** |
| 220 | * @description: 获取申请书数据 | 247 | * @description: 取消认领任务 |
| 221 | * @param {*} data | 248 | * @param {*} bsmSlsq |
| 249 | * @param {*} bestepid | ||
| 222 | * @author: renchao | 250 | * @author: renchao |
| 223 | */ | 251 | */ |
| 224 | export function getPrintApplicationInfo (data) { | 252 | export function unClaimTask (bsmSlsq, bestepid) { |
| 225 | return request({ | 253 | return request({ |
| 226 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getPrintApplicationInfo', | 254 | url: SERVER.SERVERAPI + '/rest/business/workFlow/unClaimTask?bsmSlsq=' + bsmSlsq + '&bestepid=' + bestepid, |
| 227 | method: 'post', | 255 | method: 'get', |
| 228 | data | 256 | }) |
| 229 | }) | ||
| 230 | } | 257 | } | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:30:47 | 4 | * @LastEditTime: 2023-05-17 10:30:47 |
| 5 | */ | 5 | */ |
| ... | @@ -56,20 +56,3 @@ export function saveData (data, djlx) { | ... | @@ -56,20 +56,3 @@ export function saveData (data, djlx) { |
| 56 | data | 56 | data |
| 57 | }) | 57 | }) |
| 58 | } | 58 | } |
| 59 | |||
| 60 | /** | ||
| 61 | * @description: 流程图 | ||
| 62 | * @param {*} bsmSlsq | ||
| 63 | * @param {*} bestepid | ||
| 64 | * @author: renchao | ||
| 65 | */ | ||
| 66 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
| 67 | return request({ | ||
| 68 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
| 69 | method: 'get', | ||
| 70 | params: { | ||
| 71 | bsmSlsq: bsmSlsq, | ||
| 72 | bestepid: bestepid | ||
| 73 | } | ||
| 74 | }) | ||
| 75 | } | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:31:23 | 4 | * @LastEditTime: 2023-05-17 10:31:23 |
| 5 | */ | 5 | */ |
| ... | @@ -50,20 +50,3 @@ export function saveData (data) { | ... | @@ -50,20 +50,3 @@ export function saveData (data) { |
| 50 | data | 50 | data |
| 51 | }) | 51 | }) |
| 52 | } | 52 | } |
| 53 | |||
| 54 | /** | ||
| 55 | * @description: 流程图 | ||
| 56 | * @param {*} bsmSlsq | ||
| 57 | * @param {*} bestepid | ||
| 58 | * @author: renchao | ||
| 59 | */ | ||
| 60 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
| 61 | return request({ | ||
| 62 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
| 63 | method: 'get', | ||
| 64 | params: { | ||
| 65 | bsmSlsq: bsmSlsq, | ||
| 66 | bestepid: bestepid | ||
| 67 | } | ||
| 68 | }) | ||
| 69 | } | ... | ... |
| ... | @@ -50,20 +50,3 @@ export function saveData (data) { | ... | @@ -50,20 +50,3 @@ export function saveData (data) { |
| 50 | data | 50 | data |
| 51 | }) | 51 | }) |
| 52 | } | 52 | } |
| 53 | |||
| 54 | /** | ||
| 55 | * @description: 流程图 | ||
| 56 | * @param {*} bsmSlsq | ||
| 57 | * @param {*} bestepid | ||
| 58 | * @author: renchao | ||
| 59 | */ | ||
| 60 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
| 61 | return request({ | ||
| 62 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
| 63 | method: 'get', | ||
| 64 | params: { | ||
| 65 | bsmSlsq: bsmSlsq, | ||
| 66 | bestepid: bestepid | ||
| 67 | } | ||
| 68 | }) | ||
| 69 | } | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:32:45 | 4 | * @LastEditTime: 2023-05-17 10:32:45 |
| 5 | */ | 5 | */ |
| ... | @@ -67,18 +67,6 @@ export function saveBatchData (data, djlx) { | ... | @@ -67,18 +67,6 @@ export function saveBatchData (data, djlx) { |
| 67 | data | 67 | data |
| 68 | }) | 68 | }) |
| 69 | } | 69 | } |
| 70 | |||
| 71 | // 流程图 | ||
| 72 | export function getWorkFlowImage (bsmSlsq, bestepid) { | ||
| 73 | return request({ | ||
| 74 | url: SERVER.SERVERAPI + '/rest/business/workFlow/getWorkFlowImage', | ||
| 75 | method: 'get', | ||
| 76 | params: { | ||
| 77 | bsmSlsq: bsmSlsq, | ||
| 78 | bestepid: bestepid | ||
| 79 | } | ||
| 80 | }) | ||
| 81 | } | ||
| 82 | // 上传单个文件 | 70 | // 上传单个文件 |
| 83 | export function sjClmxUpload (data) { | 71 | export function sjClmxUpload (data) { |
| 84 | return request({ | 72 | return request({ | ... | ... |
| ... | @@ -89,43 +89,6 @@ export function searchTaskToDo (data) { | ... | @@ -89,43 +89,6 @@ export function searchTaskToDo (data) { |
| 89 | data | 89 | data |
| 90 | }) | 90 | }) |
| 91 | } | 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 | 92 | ||
| 130 | /** | 93 | /** |
| 131 | * @description: 已办箱列表查询接口 | 94 | * @description: 已办箱列表查询接口 |
| ... | @@ -201,31 +164,6 @@ export function deleteCollectBiz (bsmSqyw) { | ... | @@ -201,31 +164,6 @@ export function deleteCollectBiz (bsmSqyw) { |
| 201 | method: 'post' | 164 | method: 'post' |
| 202 | }) | 165 | }) |
| 203 | } | 166 | } |
| 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 | 167 | ||
| 230 | /** | 168 | /** |
| 231 | * @description: 获取自然幢下其他户 | 169 | * @description: 获取自然幢下其他户 |
| ... | @@ -241,32 +179,6 @@ export function selectOtherH (data) { | ... | @@ -241,32 +179,6 @@ export function selectOtherH (data) { |
| 241 | } | 179 | } |
| 242 | 180 | ||
| 243 | /** | 181 | /** |
| 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: 业务办理-选择农用地信息-根据条件进行列表查询 | 182 | * @description: 业务办理-选择农用地信息-根据条件进行列表查询 |
| 271 | * @param {*} data | 183 | * @param {*} data |
| 272 | * @author: renchao | 184 | * @author: renchao | ... | ... |
| ... | @@ -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', val) | 130 | // this.$emit('row-click', row) |
| 131 | }, | 131 | }, |
| 132 | 132 | ||
| 133 | tableRowClassName ({ row, rowIndex }) { | 133 | tableRowClassName ({ row, rowIndex }) { | ... | ... |
| ... | @@ -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: {}, | ... | ... |
| 1 | <!-- | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:40:02 | ||
| 5 | --> | ||
| 6 | <template> | ||
| 7 | <div> | ||
| 8 | <el-button type="primary" native-type="submit" @click="openDialog">新增常用</el-button> | ||
| 9 | <el-form ref="form" :model="form" :rules="rules" label-width="80px" v-show="addDialog"> | ||
| 10 | <el-form-item prop="commonOpinion"> | ||
| 11 | <div class="invalid-reson">常用意见:</div> | ||
| 12 | <el-input v-model="form.commonOpinion" placeholder="请输入常用意见" type="textarea" :rows="4"></el-input> | ||
| 13 | </el-form-item> | ||
| 14 | <el-form-item class="text-center"> | ||
| 15 | <el-button @click="closeaddDiglog">取 消</el-button> | ||
| 16 | <el-button type="primary" @click="addOpinion">确 定</el-button> | ||
| 17 | </el-form-item> | ||
| 18 | </el-form> | ||
| 19 | <lb-table :heightNumSetting="true" | ||
| 20 | @row-dblclick="handleRowClick" | ||
| 21 | :pagination="false" :column="columns" :minHeight="300" :data="tableData.data"> | ||
| 22 | </lb-table> | ||
| 23 | <div style="height:15px"></div> | ||
| 24 | <div class="text-center"> | ||
| 25 | <el-button @click="$popupCacel">取消</el-button> | ||
| 26 | </div> | ||
| 27 | </div> | ||
| 28 | </template> | ||
| 29 | <script> | ||
| 30 | import store from '@/store/index.js' | ||
| 31 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/fqsq.js" | ||
| 32 | export default { | ||
| 33 | components: {}, | ||
| 34 | props: { | ||
| 35 | formData: { | ||
| 36 | type: Object, | ||
| 37 | default: {} | ||
| 38 | } | ||
| 39 | }, | ||
| 40 | data () { | ||
| 41 | return { | ||
| 42 | addDialog: false, | ||
| 43 | columns: [ | ||
| 44 | { | ||
| 45 | label: '序号', | ||
| 46 | type: 'index', | ||
| 47 | width: '50', | ||
| 48 | }, | ||
| 49 | { | ||
| 50 | prop: "opinion", | ||
| 51 | label: "意见描述", | ||
| 52 | }, | ||
| 53 | { | ||
| 54 | label: '操作', | ||
| 55 | width: '100', | ||
| 56 | render: (h, scope) => { | ||
| 57 | return ( | ||
| 58 | <div> | ||
| 59 | <el-button type="text" onClick={() => { this.useCommonOpinion(scope.row) }}>使用</el-button> | ||
| 60 | <el-button type="text" onClick={() => { this.deleteOpinion(scope.row) }}>删除</el-button> | ||
| 61 | </div> | ||
| 62 | ) | ||
| 63 | } | ||
| 64 | } | ||
| 65 | ], | ||
| 66 | tableData: { | ||
| 67 | total: 0, | ||
| 68 | data: [], | ||
| 69 | }, | ||
| 70 | form: { | ||
| 71 | commonOpinion: '', | ||
| 72 | }, | ||
| 73 | rules: { | ||
| 74 | commonOpinion: [ | ||
| 75 | { required: true, message: '请输入常用意见', trigger: 'blur' } | ||
| 76 | ] | ||
| 77 | } | ||
| 78 | } | ||
| 79 | }, | ||
| 80 | mounted () { | ||
| 81 | this.getList() | ||
| 82 | }, | ||
| 83 | methods: { | ||
| 84 | getList () { | ||
| 85 | getUserCommonOpinion().then(res => { | ||
| 86 | this.tableData.data = res.result | ||
| 87 | }) | ||
| 88 | }, | ||
| 89 | //新增常用意见 | ||
| 90 | addOpinion () { | ||
| 91 | this.$refs.form.validate(valid => { | ||
| 92 | if (valid) { | ||
| 93 | addUserCommonOpinion({ commonOpinion: this.form.commonOpinion }).then(res => { | ||
| 94 | if (res.code == 200) { | ||
| 95 | this.$message.success("新增成功") | ||
| 96 | this.closeaddDiglog(); | ||
| 97 | this.getList() | ||
| 98 | } else { | ||
| 99 | this.$message.error(res.message) | ||
| 100 | } | ||
| 101 | }) | ||
| 102 | } else { | ||
| 103 | return false; | ||
| 104 | } | ||
| 105 | }); | ||
| 106 | }, | ||
| 107 | //打开新增弹窗 | ||
| 108 | openDialog () { | ||
| 109 | this.addDialog = true | ||
| 110 | }, | ||
| 111 | //关闭新增弹窗 | ||
| 112 | closeaddDiglog () { | ||
| 113 | this.addDialog = false | ||
| 114 | this.$refs['form'].resetFields(); | ||
| 115 | }, | ||
| 116 | handleRowClick (item) { | ||
| 117 | this.useCommonOpinion(item) | ||
| 118 | }, | ||
| 119 | //使用常用意见 | ||
| 120 | useCommonOpinion (item) { | ||
| 121 | store.dispatch('workflow/setOptions', item.opinion); | ||
| 122 | this.$popupCacel() | ||
| 123 | }, | ||
| 124 | //删除常用意见 | ||
| 125 | deleteOpinion (item) { | ||
| 126 | this.$confirm("确定要删除吗, 是否继续?", "提示", { | ||
| 127 | confirmButtonText: "确定", | ||
| 128 | cancelButtonText: "取消", | ||
| 129 | type: "warning", | ||
| 130 | }).then(() => { | ||
| 131 | delUserCommonOpinion({ bsmOpinion: item.bsmOpinion }).then(res => { | ||
| 132 | if (res.code == 200) { | ||
| 133 | this.$message.success("删除成功") | ||
| 134 | this.getList() | ||
| 135 | } else { | ||
| 136 | this.$message.error(res.message) | ||
| 137 | } | ||
| 138 | }) | ||
| 139 | }) | ||
| 140 | .catch(() => { | ||
| 141 | this.$message({ | ||
| 142 | type: "info", | ||
| 143 | message: "已取消删除", | ||
| 144 | }); | ||
| 145 | }); | ||
| 146 | }, | ||
| 147 | //关闭列表弹窗 | ||
| 148 | closeDialog () { | ||
| 149 | this.form.commonOpinion = ""; | ||
| 150 | } | ||
| 151 | } | ||
| 152 | } | ||
| 153 | </script> | ||
| 154 | <style scoped lang='scss'> | ||
| 155 | @import "~@/styles/mixin.scss"; | ||
| 156 | @import "~@/styles/dialogBox.scss"; | ||
| 157 | |||
| 158 | .invalid-reson { | ||
| 159 | margin-bottom: 10px; | ||
| 160 | } | ||
| 161 | |||
| 162 | .dialog-footer { | ||
| 163 | margin-top: 10px; | ||
| 164 | display: flex; | ||
| 165 | justify-content: flex-end; | ||
| 166 | } | ||
| 167 | </style> |
| ... | @@ -60,10 +60,9 @@ | ... | @@ -60,10 +60,9 @@ |
| 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"; | ||
| 67 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 66 | 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 { |
| ... | @@ -104,7 +103,7 @@ export default { | ... | @@ -104,7 +103,7 @@ export default { |
| 104 | mounted() { | 103 | mounted() { |
| 105 | this.delel=this.$parent.isEdit | 104 | this.delel=this.$parent.isEdit |
| 106 | this.loadBdcdylist(); | 105 | this.loadBdcdylist(); |
| 107 | this.getleftMenubl(); | 106 | // this.getleftMenubl(); |
| 108 | 107 | ||
| 109 | 108 | ||
| 110 | }, | 109 | }, |
| ... | @@ -121,7 +120,7 @@ export default { | ... | @@ -121,7 +120,7 @@ export default { |
| 121 | }, | 120 | }, |
| 122 | methods: { | 121 | methods: { |
| 123 | //读取申请单元信息 | 122 | //读取申请单元信息 |
| 124 | loadBdcdylist(add) { | 123 | loadBdcdylist() { |
| 125 | var formdata = new FormData(); | 124 | var formdata = new FormData(); |
| 126 | if(this.bsmSlsq){ | 125 | if(this.bsmSlsq){ |
| 127 | formdata.append("bsmSlsq", this.bsmSlsq); | 126 | formdata.append("bsmSlsq", this.bsmSlsq); |
| ... | @@ -130,9 +129,6 @@ export default { | ... | @@ -130,9 +129,6 @@ export default { |
| 130 | if (res.code === 200 && res.result) { | 129 | if (res.code === 200 && res.result) { |
| 131 | this.currentSelectProps = res.result[0]; | 130 | this.currentSelectProps = res.result[0]; |
| 132 | this.$emit("getCurrentSelectProps", this.currentSelectProps); | 131 | this.$emit("getCurrentSelectProps", this.currentSelectProps); |
| 133 | if(add){ | ||
| 134 | this.$parent.getQllxByBdcdyid() | ||
| 135 | } | ||
| 136 | } | 132 | } |
| 137 | }); | 133 | }); |
| 138 | } | 134 | } |
| ... | @@ -141,9 +137,13 @@ export default { | ... | @@ -141,9 +137,13 @@ export default { |
| 141 | }, | 137 | }, |
| 142 | // 获取右侧菜单 | 138 | // 获取右侧菜单 |
| 143 | getleftMenubl(row) { | 139 | getleftMenubl(row) { |
| 140 | |||
| 144 | leftMenubl(this.bsmSlsq).then((res) => { | 141 | leftMenubl(this.bsmSlsq).then((res) => { |
| 145 | this.supplementarylist = res.result; | 142 | this.supplementarylist = res.result; |
| 146 | if(row){ | 143 | if(row==1){ |
| 144 | this.delel=false | ||
| 145 | } | ||
| 146 | if(row&&row!=1){ | ||
| 147 | this.supplementarylist.forEach((item,index) => { | 147 | this.supplementarylist.forEach((item,index) => { |
| 148 | if(item.bsmRepair==row.bsmRepair){ | 148 | if(item.bsmRepair==row.bsmRepair){ |
| 149 | this.activeIndex=index.toString() | 149 | this.activeIndex=index.toString() | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:41:45 | 4 | * @LastEditTime: 2023-05-17 10:41:45 |
| 5 | --> | 5 | --> |
| ... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
| 21 | </template> | 21 | </template> |
| 22 | 22 | ||
| 23 | <script> | 23 | <script> |
| 24 | import { stopTask } from "@/api/fqsq.js"; | 24 | import { stopTask } from "@/api/workFlow.js"; |
| 25 | export default { | 25 | export default { |
| 26 | props: { | 26 | props: { |
| 27 | formData: { | 27 | formData: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:41:57 | 4 | * @LastEditTime: 2023-05-17 10:41:57 |
| 5 | --> | 5 | --> |
| ... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
| 46 | 46 | ||
| 47 | <script> | 47 | <script> |
| 48 | 48 | ||
| 49 | import { getTaskBackNode, sendBackTask } from "@/api/fqsq.js" | 49 | import { getTaskBackNode, sendBackTask } from "@/api/workFlow.js" |
| 50 | import { popupCacel } from "@/utils/popup.js"; | 50 | import { popupCacel } from "@/utils/popup.js"; |
| 51 | 51 | ||
| 52 | export default { | 52 | export default { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:42:01 | 4 | * @LastEditTime: 2023-05-17 10:42:01 |
| 5 | --> | 5 | --> |
| ... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
| 24 | </template> | 24 | </template> |
| 25 | 25 | ||
| 26 | <script> | 26 | <script> |
| 27 | import { completeTask, getNextLinkInfo } from "@/api/fqsq.js" | 27 | import { completeTask, getNextLinkInfo } from "@/api/workFlow.js" |
| 28 | export default { | 28 | export default { |
| 29 | components: { | 29 | components: { |
| 30 | }, | 30 | }, | ... | ... |
| ... | @@ -136,7 +136,7 @@ | ... | @@ -136,7 +136,7 @@ |
| 136 | </el-col> | 136 | </el-col> |
| 137 | 137 | ||
| 138 | <el-col :span="8"> | 138 | <el-col :span="8"> |
| 139 | <el-form-item label="预告登记种类"> | 139 | <el-form-item label="预告登记种类" prop="ygdj.ygdjlx" :rules="rules.ygdjlxrules"> |
| 140 | <el-select v-model="ruleForm.ygdj.ygdjlx"> | 140 | <el-select v-model="ruleForm.ygdj.ygdjlx"> |
| 141 | <el-option | 141 | <el-option |
| 142 | v-for="item in dictData['A29']" | 142 | v-for="item in dictData['A29']" |
| ... | @@ -217,17 +217,17 @@ | ... | @@ -217,17 +217,17 @@ |
| 217 | <el-input v-model="ruleForm.ygdj.jzmj"></el-input> | 217 | <el-input v-model="ruleForm.ygdj.jzmj"></el-input> |
| 218 | </el-form-item> | 218 | </el-form-item> |
| 219 | </el-col> | 219 | </el-col> |
| 220 | <el-col :span="8"> | 220 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> |
| 221 | <el-form-item label="注销预告业务号"> | 221 | <el-form-item label="注销预告业务号"> |
| 222 | <el-input v-model="ruleForm.ygdj.zxygywh"></el-input> | 222 | <el-input v-model="ruleForm.ygdj.zxygywh"></el-input> |
| 223 | </el-form-item> | 223 | </el-form-item> |
| 224 | </el-col> | 224 | </el-col> |
| 225 | <el-col :span="8"> | 225 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> |
| 226 | <el-form-item label="注销预告原因"> | 226 | <el-form-item label="注销预告原因"> |
| 227 | <el-input v-model="ruleForm.ygdj.zxygyy"></el-input> | 227 | <el-input v-model="ruleForm.ygdj.zxygyy"></el-input> |
| 228 | </el-form-item> | 228 | </el-form-item> |
| 229 | </el-col> | 229 | </el-col> |
| 230 | <el-col :span="8"> | 230 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> |
| 231 | <el-form-item label="注销时间"> | 231 | <el-form-item label="注销时间"> |
| 232 | <el-input v-model="ruleForm.ygdj.zxsj"></el-input> | 232 | <el-input v-model="ruleForm.ygdj.zxsj"></el-input> |
| 233 | </el-form-item> | 233 | </el-form-item> |
| ... | @@ -375,6 +375,7 @@ export default { | ... | @@ -375,6 +375,7 @@ export default { |
| 375 | djjgrules: [{ required: true, message: "登记机构", trigger: "change" }], | 375 | djjgrules: [{ required: true, message: "登记机构", trigger: "change" }], |
| 376 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], | 376 | dbrrules: [{ required: true, message: "登簿人", trigger: "blur" }], |
| 377 | djsjrules: [{ required: true, message: "登记时间", trigger: "change" }], | 377 | djsjrules: [{ required: true, message: "登记时间", trigger: "change" }], |
| 378 | ygdjlxrules: [{ required: true, message: "预告登记种类", trigger: "change" }], | ||
| 378 | }, | 379 | }, |
| 379 | }; | 380 | }; |
| 380 | }, | 381 | }, | ... | ... |
| ... | @@ -145,21 +145,31 @@ | ... | @@ -145,21 +145,31 @@ |
| 145 | </el-form-item> | 145 | </el-form-item> |
| 146 | </el-col> | 146 | </el-col> |
| 147 | <el-col :span="8"> | 147 | <el-col :span="8"> |
| 148 | <el-form-item label="登记时间:"> | ||
| 149 | <el-input v-model="ruleForm.yydj.djsj"></el-input> | ||
| 150 | </el-form-item> | ||
| 151 | </el-col> | ||
| 152 | <el-col :span="24"> | ||
| 153 | <el-form-item label="附记:"> | ||
| 154 | <el-input v-model="ruleForm.yydj.fj"></el-input> | ||
| 155 | </el-form-item> | ||
| 156 | </el-col> | ||
| 157 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> | ||
| 148 | <el-form-item label="注销异议业务号"> | 158 | <el-form-item label="注销异议业务号"> |
| 149 | <el-input v-model="ruleForm.yydj.zxyyywh"></el-input> | 159 | <el-input v-model="ruleForm.yydj.zxyyywh"></el-input> |
| 150 | </el-form-item> | 160 | </el-form-item> |
| 151 | </el-col> | 161 | </el-col> |
| 152 | <el-col :span="8"> | 162 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> |
| 153 | <el-form-item label="注销异议原因"> | 163 | <el-form-item label="注销异议原因"> |
| 154 | <el-input v-model="ruleForm.yydj.zxyyyy"></el-input> | 164 | <el-input v-model="ruleForm.yydj.zxyyyy"></el-input> |
| 155 | </el-form-item> | 165 | </el-form-item> |
| 156 | </el-col> | 166 | </el-col> |
| 157 | <el-col :span="8"> | 167 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> |
| 158 | <el-form-item label="注销异议登簿人"> | 168 | <el-form-item label="注销异议登簿人"> |
| 159 | <el-input v-model="ruleForm.yydj.zxyydbr"></el-input> | 169 | <el-input v-model="ruleForm.yydj.zxyydbr"></el-input> |
| 160 | </el-form-item> | 170 | </el-form-item> |
| 161 | </el-col> | 171 | </el-col> |
| 162 | <el-col :span="8"> | 172 | <el-col :span="8" v-if="ruleForm.qlxx.qszt == '2'"> |
| 163 | <el-form-item label="注销异议登记时间"> | 173 | <el-form-item label="注销异议登记时间"> |
| 164 | <el-date-picker | 174 | <el-date-picker |
| 165 | v-model="ruleForm.yydj.zxyydjsj" | 175 | v-model="ruleForm.yydj.zxyydjsj" |
| ... | @@ -171,16 +181,6 @@ | ... | @@ -171,16 +181,6 @@ |
| 171 | </el-date-picker> | 181 | </el-date-picker> |
| 172 | </el-form-item> | 182 | </el-form-item> |
| 173 | </el-col> | 183 | </el-col> |
| 174 | <el-col :span="8"> | ||
| 175 | <el-form-item label="登记时间:"> | ||
| 176 | <el-input v-model="ruleForm.yydj.djsj"></el-input> | ||
| 177 | </el-form-item> | ||
| 178 | </el-col> | ||
| 179 | <el-col :span="24"> | ||
| 180 | <el-form-item label="附记:"> | ||
| 181 | <el-input v-model="ruleForm.yydj.fj"></el-input> | ||
| 182 | </el-form-item> | ||
| 183 | </el-col> | ||
| 184 | </el-row> | 184 | </el-row> |
| 185 | <div class="slxx_title title-block"> | 185 | <div class="slxx_title title-block"> |
| 186 | 权利人信息 | 186 | 权利人信息 | ... | ... |
| ... | @@ -48,6 +48,7 @@ | ... | @@ -48,6 +48,7 @@ |
| 48 | placeholder="请输入审批意见" | 48 | placeholder="请输入审批意见" |
| 49 | v-model="item.shyj" | 49 | v-model="item.shyj" |
| 50 | ></el-input> | 50 | ></el-input> |
| 51 | <el-button class="opinion_btn" @click="commonOpinion(index)" v-if="ableOperation">常用意见</el-button> | ||
| 51 | </el-form-item> | 52 | </el-form-item> |
| 52 | </el-col> | 53 | </el-col> |
| 53 | </el-row> | 54 | </el-row> |
| ... | @@ -74,7 +75,7 @@ | ... | @@ -74,7 +75,7 @@ |
| 74 | </div> | 75 | </div> |
| 75 | </el-form> | 76 | </el-form> |
| 76 | </div> | 77 | </div> |
| 77 | <div class="submit_button" v-if="!$route.query.viewtype"> | 78 | <div class="submit_button" v-if="ableOperation"> |
| 78 | <el-button type="primary" @click="onSubmit('ruleFormRef')" | 79 | <el-button type="primary" @click="onSubmit('ruleFormRef')" |
| 79 | >保存</el-button | 80 | >保存</el-button |
| 80 | > | 81 | > |
| ... | @@ -93,6 +94,7 @@ export default { | ... | @@ -93,6 +94,7 @@ export default { |
| 93 | data() { | 94 | data() { |
| 94 | return { | 95 | return { |
| 95 | isNoData: false, | 96 | isNoData: false, |
| 97 | currentindex:0, | ||
| 96 | ableOperation: true, | 98 | ableOperation: true, |
| 97 | tableData: [{ jdmc: "初审" }], | 99 | tableData: [{ jdmc: "初审" }], |
| 98 | rules: { | 100 | rules: { |
| ... | @@ -103,19 +105,29 @@ export default { | ... | @@ -103,19 +105,29 @@ export default { |
| 103 | }; | 105 | }; |
| 104 | }, | 106 | }, |
| 105 | 107 | ||
| 106 | watch: {}, | 108 | watch: { |
| 109 | yjsqOptions: { | ||
| 110 | handler (val) { | ||
| 111 | this.add(val) | ||
| 112 | }, | ||
| 113 | deep: true, | ||
| 114 | immediate: true | ||
| 115 | }, | ||
| 116 | }, | ||
| 107 | created() {}, | 117 | created() {}, |
| 108 | mounted() { | 118 | mounted() { |
| 119 | this.propsParam.isEdit=this.$parent.isEdit | ||
| 120 | this.propsParam = this.$attrs; | ||
| 121 | if (this.$route.query.viewtype) { | ||
| 122 | this.ableOperation = false | ||
| 123 | } | ||
| 109 | this.getShList(); | 124 | this.getShList(); |
| 110 | }, | 125 | }, |
| 111 | methods: { | 126 | methods: { |
| 112 | deleClick(){ | 127 | deleClick(){ |
| 113 | console.log("111 "); | ||
| 114 | if(this.tableData.length<=1){ | 128 | if(this.tableData.length<=1){ |
| 115 | console.log("w222"); | ||
| 116 | this.$message.error("最少填写一条初审意见"); | 129 | this.$message.error("最少填写一条初审意见"); |
| 117 | }else if(this.tableData.length>=2){ | 130 | }else if(this.tableData.length>=2){ |
| 118 | console.log("3333"); | ||
| 119 | this.tableData=this.tableData.slice(0,-1) | 131 | this.tableData=this.tableData.slice(0,-1) |
| 120 | } | 132 | } |
| 121 | 133 | ||
| ... | @@ -175,23 +187,15 @@ export default { | ... | @@ -175,23 +187,15 @@ export default { |
| 175 | return false; | 187 | return false; |
| 176 | } | 188 | } |
| 177 | }, | 189 | }, |
| 178 | // onSubmit() { | 190 | //打开常用意见列表弹窗 |
| 179 | // this.$refs.tablelist[index].validate((valid) => { | 191 | commonOpinion (index) { |
| 180 | // if (valid) { | 192 | this.currentindex=index |
| 181 | // this.tableData.forEach((item, index) => { | 193 | this.$popupDialog("常用意见", "workflow/components/dialog/commonOpinion", {}, "70%", true) |
| 182 | // item["bsmBusiness"] = this.$parent.bsmRepair; | 194 | }, |
| 183 | // }), | 195 | add(val){ |
| 184 | // addidea(this.tableData).then((res) => { | 196 | this.$set(this.tableData[this.currentindex],'shyj',val) |
| 185 | // if (res.code === 200) { | 197 | } |
| 186 | // this.$message.success("保存成功"); | 198 | |
| 187 | // this.refresh += 1; | ||
| 188 | // } else { | ||
| 189 | // this.$message.error(res.message); | ||
| 190 | // } | ||
| 191 | // }); | ||
| 192 | // } | ||
| 193 | // }); | ||
| 194 | // }, | ||
| 195 | }, | 199 | }, |
| 196 | }; | 200 | }; |
| 197 | </script> | 201 | </script> | ... | ... |
| ... | @@ -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"; | ||
| 7 | import { getPrintTemplateByCode } from "@/api/system"; | 6 | 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 { |
| ... | @@ -34,7 +35,8 @@ export default { | ... | @@ -34,7 +35,8 @@ export default { |
| 34 | //批量按钮名称 | 35 | //批量按钮名称 |
| 35 | batchButtonName: '', | 36 | batchButtonName: '', |
| 36 | // 受理申请信息 | 37 | // 受理申请信息 |
| 37 | slsq: {} | 38 | slsq: {}, |
| 39 | ableOperation:true | ||
| 38 | } | 40 | } |
| 39 | }, | 41 | }, |
| 40 | mounted () { | 42 | mounted () { |
| ... | @@ -54,7 +56,18 @@ export default { | ... | @@ -54,7 +56,18 @@ export default { |
| 54 | if (res.code === 200) { | 56 | if (res.code === 200) { |
| 55 | this.leftButtonList = res.result.button; | 57 | this.leftButtonList = res.result.button; |
| 56 | this.rightButtonList = res.result.operation; | 58 | this.rightButtonList = res.result.operation; |
| 57 | // this.rightButtonList.splice(0,2) | 59 | let arr=this.rightButtonList.filter((item) => { |
| 60 | return item.name=="删除" | ||
| 61 | }) | ||
| 62 | |||
| 63 | if(arr.length){ | ||
| 64 | console.log("1111111111111111111"); | ||
| 65 | this.$refs.Menu.getleftMenubl(); | ||
| 66 | }else{ | ||
| 67 | this.ableOperation=false | ||
| 68 | console.log("22222222222222"); | ||
| 69 | this.$refs.Menu.getleftMenubl(1); | ||
| 70 | } | ||
| 58 | } | 71 | } |
| 59 | }) | 72 | }) |
| 60 | 73 | ... | ... |
| ... | @@ -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 | // 引入左侧菜单 | ... | ... |
| ... | @@ -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 | // 引入左侧菜单 | ... | ... |
| ... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
| 16 | import { searchTaskToDo } from "@/api/ywbl"; | 16 | import { searchTaskToDo } from "@/api/ywbl"; |
| 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 { | ... | ... |
| 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,302 +31,302 @@ | ... | @@ -26,302 +31,302 @@ |
| 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/user' |
| 31 | export default { | 36 | export default { |
| 32 | props: { | 37 | props: { |
| 33 | formData: { | 38 | formData: { |
| 34 | type: Object, | 39 | type: Object, |
| 35 | default: () => { } | 40 | default: () => { } |
| 36 | } | 41 | } |
| 37 | }, | 42 | }, |
| 38 | data () { | 43 | data () { |
| 39 | return { | 44 | return { |
| 40 | key: 0, | 45 | key: 0, |
| 41 | keyList: [], | 46 | keyList: [], |
| 42 | ruleForm: { | 47 | ruleForm: { |
| 43 | dcode: '', | 48 | dcode: '', |
| 44 | dname: '' | 49 | dname: '' |
| 45 | }, | ||
| 46 | column: [], | ||
| 47 | columns: [ | ||
| 48 | { | ||
| 49 | width: '70', | ||
| 50 | renderHeader: (h, scope) => { | ||
| 51 | return (<div> | ||
| 52 | { | ||
| 53 | this.formData.isenable === '0' ? | ||
| 54 | <span>序号</span> : | ||
| 55 | <i class="el-icon-plus" onClick={() => { this.handleAdd() }} style="cursor:pointer;color:#409EFF"></i> | ||
| 56 | } | ||
| 57 | </div>) | ||
| 58 | }, | ||
| 59 | render: (h, scope) => { | ||
| 60 | return ( | ||
| 61 | <span>{scope.row.index}</span> | ||
| 62 | ) | ||
| 63 | } | ||
| 64 | }, | 50 | }, |
| 65 | { | 51 | column: [], |
| 66 | prop: 'dcode', | 52 | columns: [ |
| 67 | width: '100', | 53 | { |
| 68 | label: '字典项编码', | 54 | width: '70', |
| 69 | render: (h, scope) => { | 55 | renderHeader: (h, scope) => { |
| 70 | return ( | 56 | return (<div> |
| 71 | <div> | 57 | { |
| 72 | <el-input placeholder="字典项编码" disabled={this.formData.isenable == 2} v-show={scope.row.codeShow} v-fo value={scope.row[scope.column.property]} | 58 | this.formData.isenable === '0' ? |
| 73 | onFocus={() => { this.itemShowFalse(); scope.row.codeShow = true; }} | 59 | <span>序号</span> : |
| 74 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> | 60 | <i class="el-icon-plus" onClick={() => { this.handleAdd() }} style="cursor:pointer;color:#409EFF"></i> |
| 61 | } | ||
| 62 | </div>) | ||
| 63 | }, | ||
| 64 | render: (h, scope) => { | ||
| 65 | return ( | ||
| 66 | <span>{scope.row.index}</span> | ||
| 67 | ) | ||
| 68 | } | ||
| 69 | }, | ||
| 70 | { | ||
| 71 | prop: 'dcode', | ||
| 72 | width: '100', | ||
| 73 | label: '字典项编码', | ||
| 74 | render: (h, scope) => { | ||
| 75 | return ( | ||
| 76 | <div> | ||
| 77 | <el-input placeholder="字典项编码" disabled={this.formData.isenable == 2} v-show={scope.row.codeShow} v-fo value={scope.row[scope.column.property]} | ||
| 78 | onFocus={() => { this.itemShowFalse(); scope.row.codeShow = true; }} | ||
| 79 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> | ||
| 75 | 80 | ||
| 76 | 81 | ||
| 77 | <el-input placeholder="字典项编码" disabled={this.formData.isenable == 2} v-show={!scope.row.codeShow} value={scope.row[scope.column.property]} | 82 | <el-input placeholder="字典项编码" disabled={this.formData.isenable == 2} v-show={!scope.row.codeShow} value={scope.row[scope.column.property]} |
| 78 | onFocus={() => { this.itemShowFalse(); scope.row.codeShow = true; }} | 83 | onFocus={() => { this.itemShowFalse(); scope.row.codeShow = true; }} |
| 79 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> | 84 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> |
| 80 | </div> | 85 | </div> |
| 81 | ) | 86 | ) |
| 82 | } | 87 | } |
| 83 | }, | 88 | }, |
| 84 | { | 89 | { |
| 85 | prop: 'dname', | 90 | prop: 'dname', |
| 86 | label: '字典项名称', | 91 | label: '字典项名称', |
| 87 | render: (h, scope) => { | 92 | render: (h, scope) => { |
| 88 | return ( | 93 | return ( |
| 89 | <div> | 94 | <div> |
| 90 | <el-input placeholder="字典项编码" disabled={this.formData.isenable == 2} v-show={scope.row.nameShow} v-fo value={scope.row[scope.column.property]} | 95 | <el-input placeholder="字典项编码" disabled={this.formData.isenable == 2} v-show={scope.row.nameShow} v-fo value={scope.row[scope.column.property]} |
| 91 | onFocus={() => { this.itemShowFalse(); scope.row.nameShow = true; }} | 96 | onFocus={() => { this.itemShowFalse(); scope.row.nameShow = true; }} |
| 92 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> | 97 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> |
| 93 | 98 | ||
| 94 | <el-input placeholder="字典项名称" disabled={this.formData.isenable == 2} v-show={!scope.row.nameShow} value={scope.row[scope.column.property]} | 99 | <el-input placeholder="字典项名称" disabled={this.formData.isenable == 2} v-show={!scope.row.nameShow} value={scope.row[scope.column.property]} |
| 95 | onFocus={() => { this.itemShowFalse(); scope.row.nameShow = true; }} | 100 | onFocus={() => { this.itemShowFalse(); scope.row.nameShow = true; }} |
| 96 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> | 101 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> |
| 97 | </div> | 102 | </div> |
| 98 | ) | 103 | ) |
| 99 | } | 104 | } |
| 100 | }, | 105 | }, |
| 101 | { | 106 | { |
| 102 | prop: 'normcode', | 107 | prop: 'normcode', |
| 103 | label: '部标编码', | 108 | label: '部标编码', |
| 104 | width: '100', | 109 | width: '100', |
| 105 | render: (h, scope) => { | 110 | render: (h, scope) => { |
| 106 | return ( | 111 | return ( |
| 107 | <div> | 112 | <div> |
| 108 | <el-input placeholder="部标编码" disabled={this.formData.isenable == 2} v-show={scope.row.normcodeShow} v-fo value={scope.row[scope.column.property]} | 113 | <el-input placeholder="部标编码" disabled={this.formData.isenable == 2} v-show={scope.row.normcodeShow} v-fo value={scope.row[scope.column.property]} |
| 109 | onFocus={() => { this.itemShowFalse(); scope.row.normcodeShow = true; }} | 114 | onFocus={() => { this.itemShowFalse(); scope.row.normcodeShow = true; }} |
| 110 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> | 115 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> |
| 111 | 116 | ||
| 112 | <el-input placeholder="部标编码" disabled={this.formData.isenable == 2} v-show={!scope.row.normcodeShow} value={scope.row[scope.column.property]} | 117 | <el-input placeholder="部标编码" disabled={this.formData.isenable == 2} v-show={!scope.row.normcodeShow} value={scope.row[scope.column.property]} |
| 113 | onFocus={() => { this.itemShowFalse(); scope.row.normcodeShow = true; }} | 118 | onFocus={() => { this.itemShowFalse(); scope.row.normcodeShow = true; }} |
| 114 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> | 119 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }} maxlength='8'></el-input> |
| 115 | </div> | 120 | </div> |
| 116 | ) | 121 | ) |
| 117 | } | 122 | } |
| 118 | }, | 123 | }, |
| 119 | { | 124 | { |
| 120 | prop: 'normname', | 125 | prop: 'normname', |
| 121 | label: '部标名称', | 126 | label: '部标名称', |
| 122 | render: (h, scope) => { | 127 | render: (h, scope) => { |
| 123 | return ( | 128 | return ( |
| 124 | <div> | 129 | <div> |
| 125 | <el-input placeholder="部标名称" disabled={this.formData.isenable == 2} v-show={scope.row.normnameShow} v-fo value={scope.row[scope.column.property]} | 130 | <el-input placeholder="部标名称" disabled={this.formData.isenable == 2} v-show={scope.row.normnameShow} v-fo value={scope.row[scope.column.property]} |
| 126 | onFocus={() => { this.itemShowFalse(); scope.row.normnameShow = true; }} | 131 | onFocus={() => { this.itemShowFalse(); scope.row.normnameShow = true; }} |
| 127 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> | 132 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> |
| 128 | 133 | ||
| 129 | <el-input placeholder="部标名称" disabled={this.formData.isenable == 2} v-show={!scope.row.normnameShow} value={scope.row[scope.column.property]} | 134 | <el-input placeholder="部标名称" disabled={this.formData.isenable == 2} v-show={!scope.row.normnameShow} value={scope.row[scope.column.property]} |
| 130 | onFocus={() => { this.itemShowFalse(); scope.row.normnameShow = true; }} | 135 | onFocus={() => { this.itemShowFalse(); scope.row.normnameShow = true; }} |
| 131 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> | 136 | onInput={(val) => { scope.row[scope.column.property] = val; this.itemShowFalse(); scope.row.codeShow = true; }}></el-input> |
| 132 | </div> | 137 | </div> |
| 133 | ) | 138 | ) |
| 139 | } | ||
| 140 | }, | ||
| 141 | { | ||
| 142 | prop: 'isenable', | ||
| 143 | width: '160', | ||
| 144 | label: '是否禁用', | ||
| 145 | render: (h, scope) => { | ||
| 146 | return ( | ||
| 147 | <el-radio-group disabled={this.formData.isenable == 2} v-model={scope.row.isenable}> | ||
| 148 | <el-radio label="1">启用</el-radio> | ||
| 149 | <el-radio label="0">禁用</el-radio> | ||
| 150 | </el-radio-group> | ||
| 151 | ) | ||
| 152 | } | ||
| 153 | }, | ||
| 154 | { | ||
| 155 | width: '130', | ||
| 156 | label: '移动', | ||
| 157 | render: (h, scope) => { | ||
| 158 | return ( | ||
| 159 | <div> | ||
| 160 | <el-button type='text' disabled={scope.row.isTop} onClick={() => { this.moveUpward(scope.$index, scope.row) }}>上移</el-button> | ||
| 161 | <el-button type='text' disabled={scope.row.isBottom} onClick={() => { this.moveDown(scope.$index, scope.row) }}>下移</el-button > | ||
| 162 | </div > | ||
| 163 | ) | ||
| 164 | } | ||
| 165 | }, | ||
| 166 | { | ||
| 167 | width: '150', | ||
| 168 | label: '操作', | ||
| 169 | render: (h, scope) => { | ||
| 170 | return ( | ||
| 171 | <div> | ||
| 172 | <el-button type="text" style="margin-right:10px" onClick={() => { this.handleAddSubordinate(scope.row) }}>增加下级</el-button> | ||
| 173 | <el-button type="text" style="margin-left:0" onClick={() => { this.handleMinus(scope.$index, scope.row) }}>删除</el-button> | ||
| 174 | </div> | ||
| 175 | ) | ||
| 176 | } | ||
| 134 | } | 177 | } |
| 135 | }, | 178 | ], |
| 136 | { | 179 | tableData: [] |
| 137 | prop: 'isenable', | 180 | } |
| 138 | width: '160', | 181 | }, |
| 139 | label: '是否禁用', | 182 | mounted () { |
| 140 | render: (h, scope) => { | 183 | if (this.formData?.bsmDict) { |
| 141 | return ( | 184 | this.$startLoading(); |
| 142 | <el-radio-group disabled={this.formData.isenable == 2} v-model={scope.row.isenable}> | 185 | getChildDictList(this.formData.bsmDict).then(res => { |
| 143 | <el-radio label="1">启用</el-radio> | 186 | this.$endLoading(); |
| 144 | <el-radio label="0">禁用</el-radio> | 187 | let { result } = res |
| 145 | </el-radio-group> | 188 | this.tableData = result ? result : [] |
| 146 | ) | 189 | this.tableData.forEach((item, index) => { |
| 190 | item.index = index + 1 | ||
| 191 | }) | ||
| 192 | this.tableData = judgeSort(this.tableData) | ||
| 193 | }) | ||
| 194 | } | ||
| 195 | if (this.formData?.isenable == 2) { | ||
| 196 | this.column = this.columns.slice(0, 6) | ||
| 197 | } else { | ||
| 198 | this.column = this.columns | ||
| 199 | } | ||
| 200 | this.ruleForm = this.formData.rowData | ||
| 201 | this.addIndexes() | ||
| 202 | this.key++ | ||
| 203 | }, | ||
| 204 | methods: { | ||
| 205 | // 添加索引 | ||
| 206 | addIndexes (data = this.tableData, isAdd = true) { | ||
| 207 | data.forEach((item, index) => { | ||
| 208 | if (index == 0) { | ||
| 209 | item.codeShow = true | ||
| 210 | item.nameShow = false | ||
| 211 | item.normcodeShow = false | ||
| 212 | item.normnameShow = false | ||
| 213 | } else { | ||
| 214 | item.codeShow = false | ||
| 215 | item.nameShow = false | ||
| 216 | item.normcodeShow = false | ||
| 217 | item.normnameShow = false | ||
| 147 | } | 218 | } |
| 148 | }, | 219 | if (isAdd) { |
| 149 | { | 220 | item.index = index + 1 |
| 150 | width: '130', | ||
| 151 | label: '移动', | ||
| 152 | render: (h, scope) => { | ||
| 153 | return ( | ||
| 154 | <div> | ||
| 155 | <el-button type='text' disabled={scope.row.isTop} onClick={() => { this.moveUpward(scope.$index, scope.row) }}>上移</el-button> | ||
| 156 | <el-button type='text' disabled={scope.row.isBottom} onClick={() => { this.moveDown(scope.$index, scope.row) }}>下移</el-button > | ||
| 157 | </div > | ||
| 158 | ) | ||
| 159 | } | 221 | } |
| 160 | }, | 222 | if (item.children) { |
| 161 | { | 223 | this.addIndexes(item.children, false) |
| 162 | width: '150', | ||
| 163 | label: '操作', | ||
| 164 | render: (h, scope) => { | ||
| 165 | return ( | ||
| 166 | <div> | ||
| 167 | <el-button type="text" style="margin-right:10px" onClick={() => { this.handleAddSubordinate(scope.row) }}>增加下级</el-button> | ||
| 168 | <el-button type="text" style="margin-left:0" onClick={() => { this.handleMinus(scope.$index, scope.row) }}>删除</el-button> | ||
| 169 | </div> | ||
| 170 | ) | ||
| 171 | } | 224 | } |
| 172 | } | ||
| 173 | ], | ||
| 174 | tableData: [] | ||
| 175 | } | ||
| 176 | }, | ||
| 177 | mounted () { | ||
| 178 | if (this.formData?.bsmDict) { | ||
| 179 | this.$startLoading(); | ||
| 180 | getChildDictList(this.formData.bsmDict).then(res => { | ||
| 181 | this.$endLoading(); | ||
| 182 | let { result } = res | ||
| 183 | this.tableData = result ? result : [] | ||
| 184 | this.tableData.forEach((item, index) => { | ||
| 185 | item.index = index + 1 | ||
| 186 | }) | 225 | }) |
| 187 | this.tableData = judgeSort(this.tableData) | 226 | }, |
| 188 | }) | 227 | itemShowFalse () { |
| 189 | } | 228 | this.tableData.forEach((item, index) => { |
| 190 | if (this.formData?.isenable == 2) { | ||
| 191 | this.column = this.columns.slice(0, 6) | ||
| 192 | } else { | ||
| 193 | this.column = this.columns | ||
| 194 | } | ||
| 195 | this.ruleForm = this.formData.rowData | ||
| 196 | this.addIndexes() | ||
| 197 | this.key++ | ||
| 198 | }, | ||
| 199 | methods: { | ||
| 200 | // 添加索引 | ||
| 201 | addIndexes (data = this.tableData, isAdd = true) { | ||
| 202 | data.forEach((item, index) => { | ||
| 203 | if (index == 0) { | ||
| 204 | item.codeShow = true | ||
| 205 | item.nameShow = false | ||
| 206 | item.normcodeShow = false | ||
| 207 | item.normnameShow = false | ||
| 208 | } else { | ||
| 209 | item.codeShow = false | 229 | item.codeShow = false |
| 210 | item.nameShow = false | 230 | item.nameShow = false |
| 211 | item.normcodeShow = false | 231 | item.normcodeShow = false |
| 212 | item.normnameShow = false | 232 | item.normnameShow = false |
| 213 | } | ||
| 214 | if (isAdd) { | ||
| 215 | item.index = index + 1 | ||
| 216 | } | ||
| 217 | if (item.children) { | ||
| 218 | this.addIndexes(item.children, false) | ||
| 219 | } | ||
| 220 | }) | ||
| 221 | }, | ||
| 222 | itemShowFalse () { | ||
| 223 | this.tableData.forEach((item, index) => { | ||
| 224 | item.codeShow = false | ||
| 225 | item.nameShow = false | ||
| 226 | item.normcodeShow = false | ||
| 227 | item.normnameShow = false | ||
| 228 | }) | ||
| 229 | }, | ||
| 230 | handleMinus (index, row) { | ||
| 231 | this.$confirm('此操作将永久删除, 是否继续?', '提示', { | ||
| 232 | confirmButtonText: '确定', | ||
| 233 | cancelButtonText: '取消', | ||
| 234 | type: 'warning' | ||
| 235 | }).then(() => { | ||
| 236 | removeTreeListItem(this.tableData, row.bsmDict) | ||
| 237 | this.$message({ | ||
| 238 | type: 'success', | ||
| 239 | message: '删除成功!' | ||
| 240 | }) | ||
| 241 | }).catch(() => { | ||
| 242 | this.$message({ | ||
| 243 | type: 'info', | ||
| 244 | message: '已取消删除' | ||
| 245 | }) | 233 | }) |
| 246 | }) | 234 | }, |
| 247 | }, | 235 | handleMinus (index, row) { |
| 248 | handleSubmit () { | 236 | this.$confirm('此操作将永久删除, 是否继续?', '提示', { |
| 249 | this.$startLoading(); | 237 | confirmButtonText: '确定', |
| 250 | editDictNode({ | 238 | cancelButtonText: '取消', |
| 251 | bsmDict: this.formData.rowData.bsmDict, | 239 | type: 'warning' |
| 252 | typeid: this.formData.rowData.typeid, | 240 | }).then(() => { |
| 253 | children: this.tableData | 241 | removeTreeListItem(this.tableData, row.bsmDict) |
| 254 | }).then(res => { | ||
| 255 | this.$endLoading(); | ||
| 256 | if (res.code === 200) { | ||
| 257 | this.$message({ | 242 | this.$message({ |
| 258 | message: '修改成功', | 243 | type: 'success', |
| 259 | type: 'success' | 244 | message: '删除成功!' |
| 260 | }) | 245 | }) |
| 261 | this.$popupCacel() | 246 | }).catch(() => { |
| 247 | this.$message({ | ||
| 248 | type: 'info', | ||
| 249 | message: '已取消删除' | ||
| 250 | }) | ||
| 251 | }) | ||
| 252 | }, | ||
| 253 | handleSubmit () { | ||
| 254 | this.$startLoading(); | ||
| 255 | editDictNode({ | ||
| 256 | bsmDict: this.formData.rowData.bsmDict, | ||
| 257 | typeid: this.formData.rowData.typeid, | ||
| 258 | children: this.tableData | ||
| 259 | }).then(res => { | ||
| 260 | this.$endLoading(); | ||
| 261 | if (res.code === 200) { | ||
| 262 | this.$message({ | ||
| 263 | message: '修改成功', | ||
| 264 | type: 'success' | ||
| 265 | }) | ||
| 266 | this.$popupCacel() | ||
| 267 | } | ||
| 268 | }) | ||
| 269 | }, | ||
| 270 | // 增加下级 | ||
| 271 | handleAddSubordinate (row) { | ||
| 272 | if (!row.children) { | ||
| 273 | row.children = [] | ||
| 262 | } | 274 | } |
| 263 | }) | 275 | row.children.push( |
| 264 | }, | 276 | { |
| 265 | // 增加下级 | 277 | dcode: '', |
| 266 | handleAddSubordinate (row) { | 278 | dname: '', |
| 267 | if (!row.children) { | 279 | isenable: '1', |
| 268 | row.children = [] | 280 | normcode: '', |
| 281 | normname: '', | ||
| 282 | bsmDict: getUuid(32), | ||
| 283 | typeid: row.typeid, | ||
| 284 | } | ||
| 285 | ) | ||
| 286 | this.keyList = []; | ||
| 287 | this.keyList.push(row.bsmDict) | ||
| 288 | }, | ||
| 289 | // 增加 | ||
| 290 | handleAdd () { | ||
| 291 | this.$nextTick(() => { | ||
| 292 | let container = this.$el.querySelector('.el-table__body-wrapper'); | ||
| 293 | container.scrollTop = container.scrollHeight; | ||
| 294 | }) | ||
| 295 | this.tableData.push( | ||
| 296 | { | ||
| 297 | dcode: '', | ||
| 298 | dname: '', | ||
| 299 | isenable: '1', | ||
| 300 | normcode: '', | ||
| 301 | normname: '', | ||
| 302 | bsmDict: getUuid(32), | ||
| 303 | typeid: this.ruleForm.typeid, | ||
| 304 | } | ||
| 305 | ) | ||
| 306 | this.addIndexes() | ||
| 307 | this.key++ | ||
| 308 | }, | ||
| 309 | // 上移下移 | ||
| 310 | moveUpward (index, row) { | ||
| 311 | realMove(row.bsmDict, 'UP', this.tableData) | ||
| 312 | this.key++ | ||
| 313 | let id = findParents(this.tableData, row.bsmDict) | ||
| 314 | this.keyList = id | ||
| 315 | }, | ||
| 316 | moveDown (index, row) { | ||
| 317 | realMove(row.bsmDict, 'DOWN', this.tableData) | ||
| 318 | this.key++ | ||
| 319 | let id = findParents(this.tableData, row.bsmDict) | ||
| 320 | this.keyList = id | ||
| 269 | } | 321 | } |
| 270 | row.children.push( | ||
| 271 | { | ||
| 272 | dcode: '', | ||
| 273 | dname: '', | ||
| 274 | isenable: '1', | ||
| 275 | normcode: '', | ||
| 276 | normname: '', | ||
| 277 | bsmDict: getUuid(32), | ||
| 278 | typeid: row.typeid, | ||
| 279 | } | ||
| 280 | ) | ||
| 281 | this.keyList = []; | ||
| 282 | this.keyList.push(row.bsmDict) | ||
| 283 | }, | ||
| 284 | // 增加 | ||
| 285 | handleAdd () { | ||
| 286 | this.$nextTick(() => { | ||
| 287 | let container = this.$el.querySelector('.el-table__body-wrapper'); | ||
| 288 | container.scrollTop = container.scrollHeight; | ||
| 289 | }) | ||
| 290 | this.tableData.push( | ||
| 291 | { | ||
| 292 | dcode: '', | ||
| 293 | dname: '', | ||
| 294 | isenable: '1', | ||
| 295 | normcode: '', | ||
| 296 | normname: '', | ||
| 297 | bsmDict: getUuid(32), | ||
| 298 | typeid: this.ruleForm.typeid, | ||
| 299 | } | ||
| 300 | ) | ||
| 301 | this.addIndexes() | ||
| 302 | this.key++ | ||
| 303 | }, | ||
| 304 | // 上移下移 | ||
| 305 | moveUpward (index, row) { | ||
| 306 | realMove(row.bsmDict, 'UP', this.tableData) | ||
| 307 | this.key++ | ||
| 308 | let id = findParents(this.tableData, row.bsmDict) | ||
| 309 | this.keyList = id | ||
| 310 | }, | ||
| 311 | moveDown (index, row) { | ||
| 312 | realMove(row.bsmDict, 'DOWN', this.tableData) | ||
| 313 | this.key++ | ||
| 314 | let id = findParents(this.tableData, row.bsmDict) | ||
| 315 | this.keyList = id | ||
| 316 | } | 322 | } |
| 317 | } | 323 | } |
| 318 | } | ||
| 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,84 +38,84 @@ | ... | @@ -33,84 +38,84 @@ |
| 33 | </div> | 38 | </div> |
| 34 | </template> | 39 | </template> |
| 35 | <script> | 40 | <script> |
| 36 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
| 37 | import { getQlxxDictList, getChildDictList, refreshDictCache } from "@/api/user.js" | 42 | import { getQlxxDictList, getChildDictList, refreshDictCache } from "@/api/user.js" |
| 38 | import { datas, sendThis } from "./dictionaries" | 43 | import { datas, sendThis } from "./dictionaries" |
| 39 | import editDialog from "./components/editDialog.vue" | 44 | import editDialog from "./components/editDialog.vue" |
| 40 | export default { | 45 | export default { |
| 41 | name: "dictionaries", | 46 | name: "dictionaries", |
| 42 | components: { | 47 | components: { |
| 43 | editDialog | 48 | editDialog |
| 44 | }, | 49 | }, |
| 45 | mixins: [table], | 50 | mixins: [table], |
| 46 | mounted () { | 51 | mounted () { |
| 47 | sendThis(this); | 52 | sendThis(this); |
| 48 | }, | 53 | }, |
| 49 | data () { | 54 | data () { |
| 50 | return { | 55 | return { |
| 51 | details: { | 56 | details: { |
| 52 | bsmDict: '', | 57 | bsmDict: '', |
| 53 | isenable: 1, | 58 | isenable: 1, |
| 54 | rowData: {} | 59 | rowData: {} |
| 55 | }, | 60 | }, |
| 56 | ruleForm: { | 61 | ruleForm: { |
| 57 | dcode: '', | 62 | dcode: '', |
| 58 | dname: '' | 63 | dname: '' |
| 59 | }, | 64 | }, |
| 60 | tableData: { | 65 | tableData: { |
| 61 | total: 0, | 66 | total: 0, |
| 62 | columns: datas.columns(), | 67 | columns: datas.columns(), |
| 63 | data: [] | 68 | data: [] |
| 69 | } | ||
| 64 | } | 70 | } |
| 65 | } | ||
| 66 | }, | ||
| 67 | methods: { | ||
| 68 | // 初始化数据 | ||
| 69 | queryClick () { | ||
| 70 | this.$startLoading(); | ||
| 71 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { | ||
| 72 | this.$endLoading(); | ||
| 73 | let { records, total } = res.result | ||
| 74 | this.tableData.data = records ? records : [] | ||
| 75 | this.tableData.total = total ? total : 0 | ||
| 76 | }) | ||
| 77 | }, | 71 | }, |
| 78 | handleRefresh () { | 72 | methods: { |
| 79 | this.$confirm('是否确认刷新', '提示', { | 73 | // 初始化数据 |
| 80 | confirmButtonText: '确定', | 74 | queryClick () { |
| 81 | cancelButtonText: '取消', | 75 | this.$startLoading(); |
| 82 | type: 'warning' | 76 | getQlxxDictList({ ...this.ruleForm, ...this.pageData }).then(res => { |
| 83 | }).then(() => { | 77 | this.$endLoading(); |
| 84 | this.$startLoading() | 78 | let { records, total } = res.result |
| 85 | refreshDictCache().then(res => { | 79 | this.tableData.data = records ? records : [] |
| 86 | if (res.code == 200) { | 80 | this.tableData.total = total ? total : 0 |
| 87 | let refech = this.$store.dispatch('dict/generateDic') | ||
| 88 | this.$endLoading() | ||
| 89 | refech && this.$message({ | ||
| 90 | message: '刷新成功', | ||
| 91 | type: 'success' | ||
| 92 | }); | ||
| 93 | } else { | ||
| 94 | this.$message.error(res.message) | ||
| 95 | } | ||
| 96 | }) | 81 | }) |
| 97 | }).catch(() => { | 82 | }, |
| 98 | this.$message({ | 83 | handleRefresh () { |
| 99 | type: 'info', | 84 | this.$confirm('是否确认刷新', '提示', { |
| 100 | message: '取消刷新' | 85 | confirmButtonText: '确定', |
| 86 | cancelButtonText: '取消', | ||
| 87 | type: 'warning' | ||
| 88 | }).then(() => { | ||
| 89 | this.$startLoading() | ||
| 90 | refreshDictCache().then(res => { | ||
| 91 | if (res.code == 200) { | ||
| 92 | let refech = this.$store.dispatch('dict/generateDic') | ||
| 93 | this.$endLoading() | ||
| 94 | refech && this.$message({ | ||
| 95 | message: '刷新成功', | ||
| 96 | type: 'success' | ||
| 97 | }); | ||
| 98 | } else { | ||
| 99 | this.$message.error(res.message) | ||
| 100 | } | ||
| 101 | }) | ||
| 102 | }).catch(() => { | ||
| 103 | this.$message({ | ||
| 104 | type: 'info', | ||
| 105 | message: '取消刷新' | ||
| 106 | }); | ||
| 101 | }); | 107 | }); |
| 102 | }); | 108 | }, |
| 103 | }, | 109 | // 修改 |
| 104 | // 修改 | 110 | editClick (row, val) { |
| 105 | editClick (row, val) { | 111 | this.details.rowData = row |
| 106 | this.details.rowData = row | 112 | this.details.isenable = val |
| 107 | this.details.isenable = val | 113 | this.details.bsmDict = row.bsmDict |
| 108 | this.details.bsmDict = row.bsmDict | 114 | this.$popupDialog("字典信息", "system/dictionaries/components/editDialog", this.details) |
| 109 | this.$popupDialog("字典信息", "system/dictionaries/components/editDialog", this.details) | 115 | } |
| 110 | } | 116 | } |
| 111 | } | 117 | } |
| 112 | } | ||
| 113 | </script> | 118 | </script> |
| 114 | <style scoped lang="scss"> | 119 | <style scoped lang="scss"> |
| 115 | @import "~@/styles/public.scss"; | 120 | @import "~@/styles/public.scss"; |
| 116 | </style> | 121 | </style> | ... | ... |
| 1 | <!-- | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-07-13 16:42:26 | ||
| 5 | --> | ||
| 1 | <template> | 6 | <template> |
| 2 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> | 7 | <el-form ref="ruleForm" :model="ruleForm" label-width="100px" :rules="rules"> |
| 3 | <el-row> | 8 | <el-row> | ... | ... |
| ... | @@ -26,7 +26,7 @@ | ... | @@ -26,7 +26,7 @@ |
| 26 | 26 | ||
| 27 | <script> | 27 | <script> |
| 28 | import { addSysNotice } from "@/api/system.js" | 28 | import { addSysNotice } from "@/api/system.js" |
| 29 | import { upload } from "@/api/system.js" | 29 | import { upload } from "@/api/file.js" |
| 30 | export default { | 30 | export default { |
| 31 | props: { | 31 | props: { |
| 32 | value: { type: Boolean, default: false }, | 32 | value: { type: Boolean, default: false }, |
| ... | @@ -93,4 +93,4 @@ export default { | ... | @@ -93,4 +93,4 @@ export default { |
| 93 | </script> | 93 | </script> |
| 94 | <style scoped lang="scss"> | 94 | <style scoped lang="scss"> |
| 95 | 95 | ||
| 96 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 96 | </style> | ... | ... |
| ... | @@ -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: { | ... | ... |
| ... | @@ -55,7 +55,7 @@ | ... | @@ -55,7 +55,7 @@ |
| 55 | </template> | 55 | </template> |
| 56 | <script> | 56 | <script> |
| 57 | import { addSysNotice, updateSysNotice } from "@/api/system.js"; | 57 | import { addSysNotice, updateSysNotice } from "@/api/system.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: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:40:02 | 4 | * @LastEditTime: 2023-05-17 10:40:02 |
| 5 | --> | 5 | --> |
| ... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
| 28 | </template> | 28 | </template> |
| 29 | <script> | 29 | <script> |
| 30 | import store from '@/store/index.js' | 30 | import store from '@/store/index.js' |
| 31 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/fqsq.js" | 31 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/opinion.js" |
| 32 | export default { | 32 | export default { |
| 33 | components: {}, | 33 | components: {}, |
| 34 | props: { | 34 | props: { |
| ... | @@ -164,4 +164,4 @@ | ... | @@ -164,4 +164,4 @@ |
| 164 | display: flex; | 164 | display: flex; |
| 165 | justify-content: flex-end; | 165 | justify-content: flex-end; |
| 166 | } | 166 | } |
| 167 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 167 | </style> | ... | ... |
| ... | @@ -40,8 +40,7 @@ | ... | @@ -40,8 +40,7 @@ |
| 40 | </template> | 40 | </template> |
| 41 | <script> | 41 | <script> |
| 42 | import { mapGetters } from 'vuex' | 42 | import { mapGetters } from 'vuex' |
| 43 | import { leftMenu } from "@/api/fqsq.js" | 43 | import { leftMenu, deleteSlbdcdy } from "@/api/workFlow.js" |
| 44 | import { deleteSlbdcdy } from "@/api/ywbl.js"; | ||
| 45 | export default { | 44 | export default { |
| 46 | data () { | 45 | data () { |
| 47 | return { | 46 | return { | ... | ... |
| ... | @@ -53,8 +53,7 @@ | ... | @@ -53,8 +53,7 @@ |
| 53 | </template> | 53 | </template> |
| 54 | <script> | 54 | <script> |
| 55 | import { mapGetters } from 'vuex' | 55 | import { mapGetters } from 'vuex' |
| 56 | import { leftMenu } from "@/api/fqsq.js" | 56 | import { leftMenu, deleteFlow } from "@/api/workFlow.js" |
| 57 | import { deleteFlow } from "@/api/ywbl.js"; | ||
| 58 | export default { | 57 | export default { |
| 59 | data () { | 58 | data () { |
| 60 | return { | 59 | return { | ... | ... |
| ... | @@ -48,7 +48,7 @@ | ... | @@ -48,7 +48,7 @@ |
| 48 | </div> | 48 | </div> |
| 49 | </template> | 49 | </template> |
| 50 | <script> | 50 | <script> |
| 51 | import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/fqsq.js"; | 51 | import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/opinion.js"; |
| 52 | import { mapGetters } from 'vuex' | 52 | import { mapGetters } from 'vuex' |
| 53 | export default { | 53 | export default { |
| 54 | computed: { | 54 | computed: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:41:45 | 4 | * @LastEditTime: 2023-05-17 10:41:45 |
| 5 | --> | 5 | --> |
| ... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
| 21 | </template> | 21 | </template> |
| 22 | 22 | ||
| 23 | <script> | 23 | <script> |
| 24 | import { stopTask } from "@/api/fqsq.js"; | 24 | import { stopTask } from "@/api/workFlow.js"; |
| 25 | export default { | 25 | export default { |
| 26 | props: { | 26 | props: { |
| 27 | formData: { | 27 | formData: { | ... | ... |
| ... | @@ -19,10 +19,15 @@ | ... | @@ -19,10 +19,15 @@ |
| 19 | prop="index" | 19 | prop="index" |
| 20 | width="50" | 20 | width="50" |
| 21 | :render-header="renderHeader"> | 21 | :render-header="renderHeader"> |
| 22 | <template slot-scope="scope"> | 22 | <template slot-scope="scope"> |
| 23 | <i | 23 | <i |
| 24 | class="el-icon-minus pointer" | 24 | class="el-icon-minus pointer" |
| 25 | @click="deleClick(scope.$index, scope.row)"></i> | 25 | @click="deleClick(scope.$index, scope.row)" |
| 26 | v-if="!$route.query.viewtype == 1" | ||
| 27 | ></i> | ||
| 28 | <div style="text-align:center;" v-else> | ||
| 29 | {{ scope.$index+1}} | ||
| 30 | </div> | ||
| 26 | </template> | 31 | </template> |
| 27 | </el-table-column> | 32 | </el-table-column> |
| 28 | <el-table-column prop="yt" label="土地用途" min-width="100"> | 33 | <el-table-column prop="yt" label="土地用途" min-width="100"> |
| ... | @@ -64,12 +69,12 @@ | ... | @@ -64,12 +69,12 @@ |
| 64 | </el-date-picker> | 69 | </el-date-picker> |
| 65 | </template> | 70 | </template> |
| 66 | </el-table-column> | 71 | </el-table-column> |
| 67 | <el-table-column prop="syqx" label="土地使用期限" min-width="100"> | 72 | <el-table-column prop="tdsyqx" label="土地使用期限" min-width="100"> |
| 68 | <template slot-scope="scope"> | 73 | <template slot-scope="scope"> |
| 69 | <el-input | 74 | <el-input |
| 70 | class="item" | 75 | class="item" |
| 71 | :disabled="disabled" | 76 | :disabled="disabled" |
| 72 | v-model="scope.row.syqx" | 77 | v-model="scope.row.tdsyqx" |
| 73 | placeholder="请输入内容" | 78 | placeholder="请输入内容" |
| 74 | @blur="addrow(scope.row)"> | 79 | @blur="addrow(scope.row)"> |
| 75 | ></el-input> | 80 | ></el-input> | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:41:57 | 4 | * @LastEditTime: 2023-05-17 10:41:57 |
| 5 | --> | 5 | --> |
| ... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
| 46 | 46 | ||
| 47 | <script> | 47 | <script> |
| 48 | 48 | ||
| 49 | import { getTaskBackNode, sendBackTask } from "@/api/fqsq.js" | 49 | import { getTaskBackNode, sendBackTask } from "@/api/workFlow.js" |
| 50 | import { popupCacel } from "@/utils/popup.js"; | 50 | import { popupCacel } from "@/utils/popup.js"; |
| 51 | 51 | ||
| 52 | export default { | 52 | export default { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:42:01 | 4 | * @LastEditTime: 2023-05-17 10:42:01 |
| 5 | --> | 5 | --> |
| ... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
| 24 | </template> | 24 | </template> |
| 25 | 25 | ||
| 26 | <script> | 26 | <script> |
| 27 | import { completeTask, getNextLinkInfo } from "@/api/fqsq.js" | 27 | import { completeTask, getNextLinkInfo } from "@/api/workFlow.js" |
| 28 | export default { | 28 | export default { |
| 29 | components: { | 29 | components: { |
| 30 | }, | 30 | }, | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-12 16:37:53 | 4 | * @LastEditTime: 2023-07-13 11:06:42 |
| 5 | */ | 5 | */ |
| 6 | import { getWorkFlowImage } from "@/api/workflow/jsydsyqFlow.js"; | ||
| 7 | import { getPrintTemplateByCode } from "@/api/system"; | 6 | 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 { getZrzbsm } from "@/api/lpb"; |
| 20 | import { ywPopupDialog } from "@/utils/popup.js"; | 21 | import { ywPopupDialog } from "@/utils/popup.js"; |
| ... | @@ -205,10 +206,10 @@ export default { | ... | @@ -205,10 +206,10 @@ export default { |
| 205 | res.result[0].state ? that.$message({ | 206 | res.result[0].state ? that.$message({ |
| 206 | message: '登簿成功', | 207 | message: '登簿成功', |
| 207 | type: 'success' | 208 | type: 'success' |
| 208 | }) : ywPopupDialog("登簿错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%') | 209 | }) : ywPopupDialog("登簿错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%', true) |
| 209 | } | 210 | } |
| 210 | else { | 211 | else { |
| 211 | ywPopupDialog("登簿错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%') | 212 | ywPopupDialog("登簿错误明细", "workflow/components/dialog/dblist", { result: res.result }, '30%', true) |
| 212 | } | 213 | } |
| 213 | } else { | 214 | } else { |
| 214 | that.$message.error(res.message) | 215 | that.$message.error(res.message) | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-11 13:59:14 | 4 | * @LastEditTime: 2023-07-11 13:59:14 |
| 5 | */ | 5 | */ |
| ... | @@ -37,8 +37,7 @@ export default { | ... | @@ -37,8 +37,7 @@ export default { |
| 37 | //根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性 | 37 | //根据tabname获取选中的表单 此操作为了获取后端返回的表单对象,使用里面的是否可操作的属性 |
| 38 | for (let item of this.tabList) { | 38 | for (let item of this.tabList) { |
| 39 | if (item.value === tabname) { | 39 | if (item.value === tabname) { |
| 40 | this.currentSelectTab = item | 40 | this.currentSelectTab = item; |
| 41 | console.log(item, 'item11111111111'); | ||
| 42 | break; | 41 | break; |
| 43 | } | 42 | } |
| 44 | } | 43 | } | ... | ... |
| ... | @@ -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" | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-06-09 16:55:31 | 4 | * @LastEditTime: 2023-06-09 16:55:31 |
| 5 | --> | 5 | --> |
| ... | @@ -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 | // 引入左侧菜单 | ... | ... |
| ... | @@ -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/ywbl"; |
| 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", |
| ... | @@ -217,7 +217,7 @@ | ... | @@ -217,7 +217,7 @@ |
| 217 | "&sqywbm=" + | 217 | "&sqywbm=" + |
| 218 | item.djywbm | 218 | item.djywbm |
| 219 | ); | 219 | ); |
| 220 | window.open(href, `urlname${item.bsmSlsq}`); | 220 | window.open(href, `djbworkFrame${item.bsmSlsq}`); |
| 221 | }else{ | 221 | }else{ |
| 222 | const { href } = this.$router.resolve( | 222 | const { href } = this.$router.resolve( |
| 223 | "/workFrame?bsmSlsq=" + | 223 | "/workFrame?bsmSlsq=" + |
| ... | @@ -228,7 +228,7 @@ | ... | @@ -228,7 +228,7 @@ |
| 228 | "&sqywbm=" + | 228 | "&sqywbm=" + |
| 229 | item.djywbm | 229 | item.djywbm |
| 230 | ); | 230 | ); |
| 231 | window.open(href, `urlname${item.bsmSlsq}`); | 231 | window.open(href, `workFrame${item.bsmSlsq}`); |
| 232 | } | 232 | } |
| 233 | 233 | ||
| 234 | localStorage.setItem('ywbl', JSON.stringify(item)); | 234 | localStorage.setItem('ywbl', JSON.stringify(item)); | ... | ... |
| 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="房屋性质:"> | ... | ... |
| 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 | <!-- 受理信息 --> |
| ... | @@ -74,18 +74,16 @@ | ... | @@ -74,18 +74,16 @@ |
| 74 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | 74 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> |
| 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.ghytmc"></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 disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> |
| 85 | </el-form-item> | 85 | </el-form-item> |
| 86 | </el-col> | 86 | </el-col> |
| 87 | </el-row> | ||
| 88 | <el-row :gutter="10"> | ||
| 89 | <el-col :span="8"> | 87 | <el-col :span="8"> |
| 90 | <el-form-item label="取得价格:"> | 88 | <el-form-item label="取得价格:"> |
| 91 | <div style="display:flex"> | 89 | <div style="display:flex"> |
| ... | @@ -98,23 +96,11 @@ | ... | @@ -98,23 +96,11 @@ |
| 98 | </div> | 96 | </div> |
| 99 | </el-form-item> | 97 | </el-form-item> |
| 100 | </el-col> | 98 | </el-col> |
| 101 | |||
| 102 | <el-col :span="16"> | ||
| 103 | <el-form-item label="坐落:"> | ||
| 104 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> | ||
| 105 | </el-form-item> | ||
| 106 | </el-col> | ||
| 107 | </el-row> | 99 | </el-row> |
| 108 | <el-row :gutter="10"> | 100 | <el-row :gutter="10"> |
| 109 | <el-col :span="8"> | 101 | <el-col :span="24"> |
| 110 | <el-form-item label="使用期限:"> | 102 | <el-form-item label="坐落:"> |
| 111 | <el-input disabled v-model="ruleForm.jsydsyq.tdsyqx"></el-input> | 103 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> |
| 112 | </el-form-item> | ||
| 113 | </el-col> | ||
| 114 | |||
| 115 | <el-col :span="16"> | ||
| 116 | <el-form-item label="使用权起止时间:"> | ||
| 117 | <el-input disabled v-model="ruleForm.jsydsyq.syqqzsj"></el-input> | ||
| 118 | </el-form-item> | 104 | </el-form-item> |
| 119 | </el-col> | 105 | </el-col> |
| 120 | </el-row> | 106 | </el-row> | ... | ... |
| 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 | <el-input v-model="ruleForm.tdsyq.nydmj" :disabled="!ableOperation" | 91 | <div class="flex"> |
| 92 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 92 | <el-input v-model="ruleForm.tdsyq.nydmj" :disabled="!ableOperation" |
| 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="耕地面积:"> |
| 97 | <el-input v-model="ruleForm.tdsyq.gdmj" :disabled="!ableOperation" | 103 | <div class="flex"> |
| 98 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 104 | <el-input v-model="ruleForm.tdsyq.gdmj" :disabled="!ableOperation" |
| 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="林地面积:"> |
| 103 | <el-input v-model="ruleForm.tdsyq.ldmj" :disabled="!ableOperation" | 115 | <div class="flex"> |
| 104 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 116 | <el-input v-model="ruleForm.tdsyq.ldmj" :disabled="!ableOperation" |
| 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="草地面积:"> |
| 111 | <el-input v-model="ruleForm.tdsyq.cdmj" :disabled="!ableOperation" | 129 | <div class="flex"> |
| 112 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 130 | <el-input v-model="ruleForm.tdsyq.cdmj" :disabled="!ableOperation" |
| 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="其他农用地面积:"> |
| 117 | <el-input v-model="ruleForm.tdsyq.qtnydmj" :disabled="!ableOperation" | 141 | <div class="flex"> |
| 118 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 142 | <el-input v-model="ruleForm.tdsyq.qtnydmj" :disabled="!ableOperation" |
| 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="建筑使用面积:"> |
| 123 | <el-input v-model="ruleForm.tdsyq.jsydmj" :disabled="!ableOperation" | 153 | <div class="flex"> |
| 124 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 154 | <el-input v-model="ruleForm.tdsyq.jsydmj" :disabled="!ableOperation" |
| 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="未利用地面积:"> |
| 131 | <el-input v-model="ruleForm.tdsyq.wlydmj" :disabled="!ableOperation" | 167 | <div class="flex"> |
| 132 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> | 168 | <el-input v-model="ruleForm.tdsyq.wlydmj" :disabled="!ableOperation" |
| 133 | </el-form-item> | 169 | oninput="value = (value.match(/^\d*(\.?\d{0,3})/g)[0]) || null"></el-input> |
| 134 | </el-col> | 170 | <el-select v-model="mjdw" :disabled="!ableOperation" style="width:20%"> |
| 135 | <el-col :span="8"> | 171 | <el-option v-for="item in dictData['A7']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
| 136 | <el-form-item label="面积单位:"> | 172 | </el-option> |
| 137 | <el-input v-model="ruleForm.tdsyq.mjdw" :disabled="!ableOperation"></el-input> | 173 | </el-select> |
| 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 | <!-- 表单部分 --> |
| ... | @@ -198,11 +203,11 @@ | ... | @@ -198,11 +203,11 @@ |
| 198 | "/djbworkFrameview?bsmSlsq=" + | 203 | "/djbworkFrameview?bsmSlsq=" + |
| 199 | item.bsmSlsq + | 204 | item.bsmSlsq + |
| 200 | "&bestepid=" + | 205 | "&bestepid=" + |
| 201 | item.bestepid+ | 206 | item.bestepid + |
| 202 | "&bsmBusiness=" + | 207 | "&bsmBusiness=" + |
| 203 | "&viewtype=1" | 208 | "&viewtype=1" |
| 204 | ); | 209 | ); |
| 205 | window.open(href, `urlname${item.bsmSlsq}`); | 210 | window.open(href, `djbworkFrameview${item.bsmSlsq}`); |
| 206 | } else { | 211 | } else { |
| 207 | const { href } = this.$router.resolve( | 212 | const { href } = this.$router.resolve( |
| 208 | "/workFrameView?bsmSlsq=" + | 213 | "/workFrameView?bsmSlsq=" + |
| ... | @@ -212,7 +217,7 @@ | ... | @@ -212,7 +217,7 @@ |
| 212 | "&bsmBusiness=" + | 217 | "&bsmBusiness=" + |
| 213 | "&viewtype=1" | 218 | "&viewtype=1" |
| 214 | ); | 219 | ); |
| 215 | window.open(href, `urlname${item.bsmSlsq}`); | 220 | window.open(href, `workFrameView${item.bsmSlsq}`); |
| 216 | } | 221 | } |
| 217 | 222 | ||
| 218 | 223 | ... | ... |
| 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/ywbl.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/ywbl.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/ywbl.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/ywbl.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/ywbl.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/ywbl.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,7 +60,7 @@ | ... | @@ -55,7 +60,7 @@ |
| 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/selectQlxx.js"; |
| 61 | import jump from "../components/mixin/djbbljump"; | 66 | import jump from "../components/mixin/djbbljump"; | ... | ... |
| 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/ywbl.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/ywbl.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/ywbl.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 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-07 09:48:53 | 4 | * @LastEditTime: 2023-07-07 09:48:53 |
| 5 | --> | 5 | --> |
| ... | @@ -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/ywbl.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/ywbl.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/ywbl.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/ywbl.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/ywbl.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/ywbl.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: { | ... | ... |
-
Please register or sign in to post a comment