Merge branch 'dev'
Showing
86 changed files
with
606 additions
and
773 deletions
src/api/businessApply.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 业务办理 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:13:24 | ||
| 5 | */ | ||
| 6 | |||
| 7 | import request from '@/utils/request' | ||
| 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 9 | |||
| 10 | /** | ||
| 11 | * @description: 业务办理-获取收藏业务集合 | ||
| 12 | * @author: renchao | ||
| 13 | */ | ||
| 14 | export function getCollectBiz () { | ||
| 15 | return request({ | ||
| 16 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getCollectBiz', | ||
| 17 | method: 'post' | ||
| 18 | }) | ||
| 19 | } | ||
| 20 | |||
| 21 | |||
| 22 | /** | ||
| 23 | * @description: 业务办理-获取左侧菜单 | ||
| 24 | * @author: renchao | ||
| 25 | */ | ||
| 26 | export function getleftMenu () { | ||
| 27 | return request({ | ||
| 28 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getleftMenu', | ||
| 29 | method: 'post' | ||
| 30 | }) | ||
| 31 | } | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @description: 登记簿补录 | ||
| 35 | * @author: renchao | ||
| 36 | */ | ||
| 37 | export function getRepairBiz () { | ||
| 38 | return request({ | ||
| 39 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getRepairBiz', | ||
| 40 | method: 'post' | ||
| 41 | }) | ||
| 42 | } | ||
| 43 | |||
| 44 | /** | ||
| 45 | * @description: 一并申请业务 | ||
| 46 | * @author: renchao | ||
| 47 | */ | ||
| 48 | export function getTogetherBiz () { | ||
| 49 | return request({ | ||
| 50 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getTogetherBiz', | ||
| 51 | method: 'post' | ||
| 52 | }) | ||
| 53 | } | ||
| 54 | |||
| 55 | /** | ||
| 56 | * @description: 业务办理-获取下个节点内容 | ||
| 57 | * @param {*} bsmSqyw | ||
| 58 | * @author: renchao | ||
| 59 | */ | ||
| 60 | export function getNextNode (bsmSqyw) { | ||
| 61 | return request({ | ||
| 62 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw, | ||
| 63 | method: 'post' | ||
| 64 | }) | ||
| 65 | } | ||
| 66 | |||
| 67 | /** | ||
| 68 | * @description: 业务办理-业务申请-添加收藏业务 | ||
| 69 | * @param {*} bsmSqyw | ||
| 70 | * @author: renchao | ||
| 71 | */ | ||
| 72 | export function addCollectBiz (bsmSqyw) { | ||
| 73 | return request({ | ||
| 74 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw, | ||
| 75 | method: 'post' | ||
| 76 | }) | ||
| 77 | } | ||
| 78 | |||
| 79 | /** | ||
| 80 | * @description: 业务办理-业务申请-取消收藏业务 | ||
| 81 | * @param {*} bsmSqyw | ||
| 82 | * @author: renchao | ||
| 83 | */ | ||
| 84 | export function deleteCollectBiz (bsmSqyw) { | ||
| 85 | return request({ | ||
| 86 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, | ||
| 87 | method: 'post' | ||
| 88 | }) | ||
| 89 | } |
src/api/dict.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 字典接口 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-16 16:06:51 | ||
| 5 | */ | ||
| 6 | import request from '@/utils/request' | ||
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 8 | |||
| 9 | |||
| 10 | /** | ||
| 11 | * @description: 获取全部字典数据 | ||
| 12 | * @author: renchao | ||
| 13 | */ | ||
| 14 | export function getAllDict () { | ||
| 15 | return request({ | ||
| 16 | url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict', | ||
| 17 | method: 'post' | ||
| 18 | }) | ||
| 19 | } | ||
| 20 | export function getQlxxDictList (data) { | ||
| 21 | return request({ | ||
| 22 | url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList', | ||
| 23 | method: 'post', | ||
| 24 | data | ||
| 25 | }) | ||
| 26 | } | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @description: 获取字典子级列表 | ||
| 30 | * @param {*} bsmDict | ||
| 31 | * @author: renchao | ||
| 32 | */ | ||
| 33 | export function getChildDictList (bsmDict) { | ||
| 34 | return request({ | ||
| 35 | url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList', | ||
| 36 | method: 'get', | ||
| 37 | params: { | ||
| 38 | bsmDict: bsmDict | ||
| 39 | } | ||
| 40 | }) | ||
| 41 | } | ||
| 42 | |||
| 43 | /** | ||
| 44 | * @description: 编辑字典数据 | ||
| 45 | * @param {*} data | ||
| 46 | * @author: renchao | ||
| 47 | */ | ||
| 48 | export function editDictNode (data) { | ||
| 49 | return request({ | ||
| 50 | url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode', | ||
| 51 | method: 'post', | ||
| 52 | data | ||
| 53 | }) | ||
| 54 | } | ||
| 55 | |||
| 56 | |||
| 57 | /** | ||
| 58 | * @description: 刷新字典缓存 | ||
| 59 | * @author: renchao | ||
| 60 | */ | ||
| 61 | export function refreshDictCache () { | ||
| 62 | return request({ | ||
| 63 | url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache', | ||
| 64 | method: 'get' | ||
| 65 | }) | ||
| 66 | } |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: 模板管理 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-16 13:49:57 | 4 | * @LastEditTime: 2023-05-16 16:02:32 |
| 5 | */ | 5 | */ |
| 6 | |||
| 6 | import request from '@/utils/request' | 7 | import request from '@/utils/request' |
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
| 9 | |||
| 8 | /** | 10 | /** |
| 9 | * @description: 获取自然幢下其他户 | 11 | * @description: 获取打印模板列表 |
| 10 | * @param {*} data | 12 | * @param {*} data |
| 11 | * @author: renchao | 13 | * @author: renchao |
| 12 | */ | 14 | */ |
| 13 | export function selectOtherH (data) { | 15 | export function selectPrintTemplateList (data) { |
| 14 | return request({ | 16 | return request({ |
| 15 | url: 'ywbl/ywsq/selectOtherH', | 17 | url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList', |
| 16 | method: 'post', | 18 | method: 'post', |
| 17 | data | 19 | data |
| 18 | }) | 20 | }) |
| 19 | } | 21 | } |
| 22 | |||
| 20 | /** | 23 | /** |
| 21 | * @description: 业务办理-选择抵押权信息-根据条件进行列表查询 | 24 | * @description: 新增打印模板列表 |
| 22 | * @param {*} data | 25 | * @param {*} data |
| 23 | * @author: renchao | 26 | * @author: renchao |
| 24 | */ | 27 | */ |
| 25 | export function selectDiyaq (data) { | 28 | export function addPrintTemplate (data) { |
| 26 | return request({ | 29 | return request({ |
| 27 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq', | 30 | url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate', |
| 28 | method: 'post', | 31 | method: 'post', |
| 29 | data | 32 | data |
| 30 | }) | 33 | }) |
| 31 | } | 34 | } |
| 35 | |||
| 32 | /** | 36 | /** |
| 33 | * @description: 业务办理-选择查封信息-根据条件进行列表查询 | 37 | * @description: 编辑打印模板列表 |
| 34 | * @param {*} data | 38 | * @param {*} data |
| 35 | * @author: renchao | 39 | * @author: renchao |
| 36 | */ | 40 | */ |
| 37 | export function selectCfdj (data) { | 41 | export function editPrintTemplate (data) { |
| 38 | return request({ | 42 | return request({ |
| 39 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj', | 43 | url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate', |
| 40 | method: 'post', | 44 | method: 'post', |
| 41 | data | 45 | data |
| 42 | }) | 46 | }) |
| 43 | } | 47 | } |
| 44 | 48 | ||
| 45 | /** | 49 | /** |
| 46 | * @description: 业务办理-业务申请-添加收藏业务 | 50 | * @description: 删除打印模板列表 |
| 47 | * @param {*} bsmSqyw | 51 | * @param {*} params |
| 48 | * @author: renchao | 52 | * @author: renchao |
| 49 | */ | 53 | */ |
| 50 | export function deleteCollectBiz (bsmSqyw) { | 54 | export function delPrintTemplate (params) { |
| 51 | return request({ | 55 | return request({ |
| 52 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, | 56 | url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate', |
| 53 | method: 'post' | 57 | method: 'get', |
| 54 | }) | 58 | params: params |
| 59 | }) | ||
| 55 | } | 60 | } |
| 56 | 61 | ||
| 57 | /** | 62 | /** |
| 58 | * @description: 选择补录权利信息 | 63 | * @description: 根据模板编号获取打印模板 |
| 59 | * @param {*} data | 64 | * @param {*} params |
| 60 | * @author: renchao | 65 | * @author: renchao |
| 61 | */ | 66 | */ |
| 62 | export function selectRepairQlxx (data) { | 67 | export function getPrintTemplateByCode (params) { |
| 63 | return request({ | 68 | return request({ |
| 64 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx', | 69 | url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode', |
| 65 | method: 'post', | 70 | method: 'get', |
| 66 | data | 71 | params: params |
| 67 | }) | 72 | }) |
| 68 | } | 73 | } | ... | ... |
src/api/search.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 综合查询 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:23:50 | ||
| 5 | */ | ||
| 6 | import request from '@/utils/request' | ||
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 8 | |||
| 9 | |||
| 10 | /** | ||
| 11 | * @description: 根据条件进行列表查询 | ||
| 12 | * @param {*} data | ||
| 13 | * @author: renchao | ||
| 14 | */ | ||
| 15 | export function getDjbBysearch (data) { | ||
| 16 | return request({ | ||
| 17 | url: SERVER.SERVERAPI + '/rest/zhcx/search/qlxx/getDjbBysearch', | ||
| 18 | method: 'post', | ||
| 19 | data: data | ||
| 20 | }) | ||
| 21 | } | ||
| 22 | /** | ||
| 23 | * @description: 进度查询列表 | ||
| 24 | * @param {*} data | ||
| 25 | * @author: renchao | ||
| 26 | */ | ||
| 27 | export function getJdcxBysearch (data) { | ||
| 28 | return request({ | ||
| 29 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getJdcxBysearch', | ||
| 30 | method: 'post', | ||
| 31 | data | ||
| 32 | }) | ||
| 33 | } | ||
| 34 | |||
| 35 | /** | ||
| 36 | * @description: 证书领取查询 | ||
| 37 | * @param {*} data | ||
| 38 | * @author: renchao | ||
| 39 | */ | ||
| 40 | export function getBdcqzReceiveList (data) { | ||
| 41 | return request({ | ||
| 42 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getBdcqzReceiveList', | ||
| 43 | method: 'post', | ||
| 44 | data | ||
| 45 | }) | ||
| 46 | } | ||
| 47 | |||
| 48 | /** | ||
| 49 | * @description: 在建工程抵押查询 | ||
| 50 | * @param {*} data | ||
| 51 | * @author: renchao | ||
| 52 | */ | ||
| 53 | export function getZjgcdyList (data) { | ||
| 54 | return request({ | ||
| 55 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getZjgcdyList', | ||
| 56 | method: 'post', | ||
| 57 | data | ||
| 58 | }) | ||
| 59 | } | ||
| 60 | |||
| 61 | |||
| 62 |
| 1 | /* | 1 | /* |
| 2 | * @Description: 系统管理 | 2 | * @Description: 系统通知 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-16 16:02:32 | 4 | * @LastEditTime: 2023-05-16 16:02:32 |
| 5 | */ | 5 | */ |
| ... | @@ -8,43 +8,6 @@ import request from '@/utils/request' | ... | @@ -8,43 +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 sysSqywmbszSearch (data) { | ||
| 16 | return request({ | ||
| 17 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search', | ||
| 18 | method: 'post', | ||
| 19 | data | ||
| 20 | }) | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @description: 其他及附记模板-读取明细 | ||
| 25 | * @param {*} id | ||
| 26 | * @author: renchao | ||
| 27 | */ | ||
| 28 | export function getSysSqywmbszDetailById (id) { | ||
| 29 | return request({ | ||
| 30 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, | ||
| 31 | method: 'get' | ||
| 32 | }) | ||
| 33 | } | ||
| 34 | /** | ||
| 35 | * @description: 其他及附记模板-修改申请业务模板设置 | ||
| 36 | * @param {*} data | ||
| 37 | * @author: renchao | ||
| 38 | */ | ||
| 39 | export function updateSysSqywmbsz (data) { | ||
| 40 | return request({ | ||
| 41 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz', | ||
| 42 | method: 'put', | ||
| 43 | data | ||
| 44 | }) | ||
| 45 | } | ||
| 46 | |||
| 47 | /** | ||
| 48 | * @description: 新增系统通知 | 11 | * @description: 新增系统通知 |
| 49 | * @param {*} data | 12 | * @param {*} data |
| 50 | * @author: renchao | 13 | * @author: renchao |
| ... | @@ -159,68 +122,3 @@ export function setAllRead () { | ... | @@ -159,68 +122,3 @@ export function setAllRead () { |
| 159 | method: 'get' | 122 | method: 'get' |
| 160 | }) | 123 | }) |
| 161 | } | 124 | } |
| 162 | |||
| 163 | /** | ||
| 164 | * @description: 获取打印模板列表 | ||
| 165 | * @param {*} data | ||
| 166 | * @author: renchao | ||
| 167 | */ | ||
| 168 | export function selectPrintTemplateList (data) { | ||
| 169 | return request({ | ||
| 170 | url: SERVER.SERVERAPI + '/rest/system/print/selectPrintTemplateList', | ||
| 171 | method: 'post', | ||
| 172 | data | ||
| 173 | }) | ||
| 174 | } | ||
| 175 | |||
| 176 | /** | ||
| 177 | * @description: 新增打印模板列表 | ||
| 178 | * @param {*} data | ||
| 179 | * @author: renchao | ||
| 180 | */ | ||
| 181 | export function addPrintTemplate (data) { | ||
| 182 | return request({ | ||
| 183 | url: SERVER.SERVERAPI + '/rest/system/print/addPrintTemplate', | ||
| 184 | method: 'post', | ||
| 185 | data | ||
| 186 | }) | ||
| 187 | } | ||
| 188 | |||
| 189 | /** | ||
| 190 | * @description: 编辑打印模板列表 | ||
| 191 | * @param {*} data | ||
| 192 | * @author: renchao | ||
| 193 | */ | ||
| 194 | export function editPrintTemplate (data) { | ||
| 195 | return request({ | ||
| 196 | url: SERVER.SERVERAPI + '/rest/system/print/editPrintTemplate', | ||
| 197 | method: 'post', | ||
| 198 | data | ||
| 199 | }) | ||
| 200 | } | ||
| 201 | |||
| 202 | /** | ||
| 203 | * @description: 删除打印模板列表 | ||
| 204 | * @param {*} params | ||
| 205 | * @author: renchao | ||
| 206 | */ | ||
| 207 | export function delPrintTemplate (params) { | ||
| 208 | return request({ | ||
| 209 | url: SERVER.SERVERAPI + '/rest/system/print/delPrintTemplate', | ||
| 210 | method: 'get', | ||
| 211 | params: params | ||
| 212 | }) | ||
| 213 | } | ||
| 214 | |||
| 215 | /** | ||
| 216 | * @description: 根据模板编号获取打印模板 | ||
| 217 | * @param {*} params | ||
| 218 | * @author: renchao | ||
| 219 | */ | ||
| 220 | export function getPrintTemplateByCode (params) { | ||
| 221 | return request({ | ||
| 222 | url: SERVER.SERVERAPI + '/rest/system/print/getPrintTemplateByCode', | ||
| 223 | method: 'get', | ||
| 224 | params: params | ||
| 225 | }) | ||
| 226 | } | ... | ... |
src/api/sysPushRecord.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 数据推送 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:23:50 | ||
| 5 | */ | ||
| 6 | import request from '@/utils/request' | ||
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 8 | |||
| 9 | |||
| 10 | // 数据上报推送查询 | ||
| 11 | export function list (data) { | ||
| 12 | return request({ | ||
| 13 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/list', | ||
| 14 | method: 'post', | ||
| 15 | data | ||
| 16 | }) | ||
| 17 | } | ||
| 18 | |||
| 19 | // 数据上报推送 | ||
| 20 | export function push (data) { | ||
| 21 | return request({ | ||
| 22 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/push', | ||
| 23 | method: 'post', | ||
| 24 | data | ||
| 25 | }) | ||
| 26 | } | ||
| 27 | |||
| 28 | // 数据上报推送 | ||
| 29 | export function detail (bsm) { | ||
| 30 | return request({ | ||
| 31 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/detail?bsm=' + bsm, | ||
| 32 | method: 'get' | ||
| 33 | }) | ||
| 34 | } | ||
| 35 | |||
| 36 | |||
| 37 |
src/api/sysSerial.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 系统序列号设置 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:24:24 | ||
| 5 | */ | ||
| 6 | import request from '@/utils/request' | ||
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 8 | /** | ||
| 9 | * @description: 证书管理-获取序列号 | ||
| 10 | * @param {*} params | ||
| 11 | * @author: renchao | ||
| 12 | */ | ||
| 13 | export function getSysSerialSingle (params) { | ||
| 14 | return request({ | ||
| 15 | url: SERVER.SERVERAPI + '/rest/system/sysSerial/getSysSerialSingle', | ||
| 16 | method: 'get', | ||
| 17 | params: params | ||
| 18 | }) | ||
| 19 | } |
src/api/sysSqywmbsz.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 申请业务模板设置 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-16 16:02:32 | ||
| 5 | */ | ||
| 6 | |||
| 7 | import request from '@/utils/request' | ||
| 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 9 | |||
| 10 | /** | ||
| 11 | * @description: 其他及附记模板-列表详情 | ||
| 12 | * @param {*} data | ||
| 13 | * @author: renchao | ||
| 14 | */ | ||
| 15 | export function sysSqywmbszSearch (data) { | ||
| 16 | return request({ | ||
| 17 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/search', | ||
| 18 | method: 'post', | ||
| 19 | data | ||
| 20 | }) | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @description: 其他及附记模板-读取明细 | ||
| 25 | * @param {*} id | ||
| 26 | * @author: renchao | ||
| 27 | */ | ||
| 28 | export function getSysSqywmbszDetailById (id) { | ||
| 29 | return request({ | ||
| 30 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/getSysSqywmbszDetailById?id=' + id, | ||
| 31 | method: 'get' | ||
| 32 | }) | ||
| 33 | } | ||
| 34 | /** | ||
| 35 | * @description: 其他及附记模板-修改申请业务模板设置 | ||
| 36 | * @param {*} data | ||
| 37 | * @author: renchao | ||
| 38 | */ | ||
| 39 | export function updateSysSqywmbsz (data) { | ||
| 40 | return request({ | ||
| 41 | url: SERVER.SERVERAPI + '/rest/system/sysSqywmbsz/updateSysSqywmbsz', | ||
| 42 | method: 'put', | ||
| 43 | data | ||
| 44 | }) | ||
| 45 | } |
| ... | @@ -28,61 +28,3 @@ export function getMenuInfo () { | ... | @@ -28,61 +28,3 @@ export function getMenuInfo () { |
| 28 | method: 'get', | 28 | method: 'get', |
| 29 | }) | 29 | }) |
| 30 | } | 30 | } |
| 31 | |||
| 32 | /** | ||
| 33 | * @description: 获取全部字典数据 | ||
| 34 | * @author: renchao | ||
| 35 | */ | ||
| 36 | export function getAllDict () { | ||
| 37 | return request({ | ||
| 38 | url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict', | ||
| 39 | method: 'post' | ||
| 40 | }) | ||
| 41 | } | ||
| 42 | export function getQlxxDictList (data) { | ||
| 43 | return request({ | ||
| 44 | url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList', | ||
| 45 | method: 'post', | ||
| 46 | data | ||
| 47 | }) | ||
| 48 | } | ||
| 49 | |||
| 50 | /** | ||
| 51 | * @description: 获取字典子级列表 | ||
| 52 | * @param {*} bsmDict | ||
| 53 | * @author: renchao | ||
| 54 | */ | ||
| 55 | export function getChildDictList (bsmDict) { | ||
| 56 | return request({ | ||
| 57 | url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList', | ||
| 58 | method: 'get', | ||
| 59 | params: { | ||
| 60 | bsmDict: bsmDict | ||
| 61 | } | ||
| 62 | }) | ||
| 63 | } | ||
| 64 | |||
| 65 | /** | ||
| 66 | * @description: 编辑字典数据 | ||
| 67 | * @param {*} data | ||
| 68 | * @author: renchao | ||
| 69 | */ | ||
| 70 | export function editDictNode (data) { | ||
| 71 | return request({ | ||
| 72 | url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode', | ||
| 73 | method: 'post', | ||
| 74 | data | ||
| 75 | }) | ||
| 76 | } | ||
| 77 | |||
| 78 | |||
| 79 | /** | ||
| 80 | * @description: 刷新字典缓存 | ||
| 81 | * @author: renchao | ||
| 82 | */ | ||
| 83 | export function refreshDictCache () { | ||
| 84 | return request({ | ||
| 85 | url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache', | ||
| 86 | method: 'get' | ||
| 87 | }) | ||
| 88 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
src/api/workflow/search.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: 待办已办箱 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:13:24 | ||
| 5 | */ | ||
| 6 | |||
| 7 | import request from '@/utils/request' | ||
| 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 9 | |||
| 10 | |||
| 11 | /** | ||
| 12 | * @description: 待办箱列表查询接口 | ||
| 13 | * @param {*} data | ||
| 14 | * @author: renchao | ||
| 15 | */ | ||
| 16 | export function searchTaskToDo (data) { | ||
| 17 | return request({ | ||
| 18 | url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo', | ||
| 19 | method: 'post', | ||
| 20 | data | ||
| 21 | }) | ||
| 22 | } | ||
| 23 | |||
| 24 | /** | ||
| 25 | * @description: 已办箱列表查询接口 | ||
| 26 | * @param {*} data | ||
| 27 | * @author: renchao | ||
| 28 | */ | ||
| 29 | export function searchTaskDone (data) { | ||
| 30 | return request({ | ||
| 31 | url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone', | ||
| 32 | method: 'post', | ||
| 33 | data | ||
| 34 | }) | ||
| 35 | } |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: 业务申请 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:13:24 | 4 | * @LastEditTime: 2023-05-17 10:13:24 |
| 5 | */ | 5 | */ |
| ... | @@ -8,63 +8,6 @@ import request from '@/utils/request' | ... | @@ -8,63 +8,6 @@ import request from '@/utils/request' |
| 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 8 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
| 9 | 9 | ||
| 10 | /** | 10 | /** |
| 11 | * @description: 业务办理-获取收藏业务集合 | ||
| 12 | * @author: renchao | ||
| 13 | */ | ||
| 14 | export function getCollectBiz () { | ||
| 15 | return request({ | ||
| 16 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getCollectBiz', | ||
| 17 | method: 'post' | ||
| 18 | }) | ||
| 19 | } | ||
| 20 | |||
| 21 | |||
| 22 | /** | ||
| 23 | * @description: 业务办理-获取左侧菜单 | ||
| 24 | * @author: renchao | ||
| 25 | */ | ||
| 26 | export function getleftMenu () { | ||
| 27 | return request({ | ||
| 28 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getleftMenu', | ||
| 29 | method: 'post' | ||
| 30 | }) | ||
| 31 | } | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @description: 登记簿补录 | ||
| 35 | * @author: renchao | ||
| 36 | */ | ||
| 37 | export function getRepairBiz () { | ||
| 38 | return request({ | ||
| 39 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getRepairBiz', | ||
| 40 | method: 'post' | ||
| 41 | }) | ||
| 42 | } | ||
| 43 | |||
| 44 | /** | ||
| 45 | * @description: 一并申请业务 | ||
| 46 | * @author: renchao | ||
| 47 | */ | ||
| 48 | export function getTogetherBiz () { | ||
| 49 | return request({ | ||
| 50 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getTogetherBiz', | ||
| 51 | method: 'post' | ||
| 52 | }) | ||
| 53 | } | ||
| 54 | |||
| 55 | /** | ||
| 56 | * @description: 业务办理-获取下个节点内容 | ||
| 57 | * @param {*} bsmSqyw | ||
| 58 | * @author: renchao | ||
| 59 | */ | ||
| 60 | export function getNextNode (bsmSqyw) { | ||
| 61 | return request({ | ||
| 62 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/getNextNode?parentid=' + bsmSqyw, | ||
| 63 | method: 'post' | ||
| 64 | }) | ||
| 65 | } | ||
| 66 | |||
| 67 | /** | ||
| 68 | * @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记) | 11 | * @description: 业务办理-选择单元-根据条件进行列表查询-国有建设用地使用权、房屋所有权(首次登记) |
| 69 | * @param {*} data | 12 | * @param {*} data |
| 70 | * @author: renchao | 13 | * @author: renchao |
| ... | @@ -76,43 +19,17 @@ export function selectScBdcdy (data) { | ... | @@ -76,43 +19,17 @@ export function selectScBdcdy (data) { |
| 76 | data | 19 | data |
| 77 | }) | 20 | }) |
| 78 | } | 21 | } |
| 79 | |||
| 80 | /** | ||
| 81 | * @description: 待办箱列表查询接口 | ||
| 82 | * @param {*} data | ||
| 83 | * @author: renchao | ||
| 84 | */ | ||
| 85 | export function searchTaskToDo (data) { | ||
| 86 | return request({ | ||
| 87 | url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskToDo', | ||
| 88 | method: 'post', | ||
| 89 | data | ||
| 90 | }) | ||
| 91 | } | ||
| 92 | |||
| 93 | /** | ||
| 94 | * @description: 已办箱列表查询接口 | ||
| 95 | * @param {*} data | ||
| 96 | * @author: renchao | ||
| 97 | */ | ||
| 98 | export function searchTaskDone (data) { | ||
| 99 | return request({ | ||
| 100 | url: SERVER.SERVERAPI + '/rest/workBox/search/searchTaskDone', | ||
| 101 | method: 'post', | ||
| 102 | data | ||
| 103 | }) | ||
| 104 | } | ||
| 105 | /** | 22 | /** |
| 106 | * @description: 业务办理-选择权利信息-根据条件进行列表查询 | 23 | * @description: 业务办理-选择权利信息-根据条件进行列表查询 |
| 107 | * @param {*} data | 24 | * @param {*} data |
| 108 | * @author: renchao | 25 | * @author: renchao |
| 109 | */ | 26 | */ |
| 110 | export function selectQlxx (data) { | 27 | export function selectQlxx (data) { |
| 111 | return request({ | 28 | return request({ |
| 112 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx', | 29 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectQlxx', |
| 113 | method: 'post', | 30 | method: 'post', |
| 114 | data | 31 | data |
| 115 | }) | 32 | }) |
| 116 | } | 33 | } |
| 117 | 34 | ||
| 118 | /** | 35 | /** |
| ... | @@ -121,11 +38,11 @@ export function selectQlxx (data) { | ... | @@ -121,11 +38,11 @@ export function selectQlxx (data) { |
| 121 | * @author: renchao | 38 | * @author: renchao |
| 122 | */ | 39 | */ |
| 123 | export function selectDiyaq (data) { | 40 | export function selectDiyaq (data) { |
| 124 | return request({ | 41 | return request({ |
| 125 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq', | 42 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDiyaq', |
| 126 | method: 'post', | 43 | method: 'post', |
| 127 | data | 44 | data |
| 128 | }) | 45 | }) |
| 129 | } | 46 | } |
| 130 | 47 | ||
| 131 | /** | 48 | /** |
| ... | @@ -134,35 +51,11 @@ export function selectDiyaq (data) { | ... | @@ -134,35 +51,11 @@ export function selectDiyaq (data) { |
| 134 | * @author: renchao | 51 | * @author: renchao |
| 135 | */ | 52 | */ |
| 136 | export function selectCfdj (data) { | 53 | export function selectCfdj (data) { |
| 137 | return request({ | 54 | return request({ |
| 138 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj', | 55 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectCfdj', |
| 139 | method: 'post', | 56 | method: 'post', |
| 140 | data | 57 | data |
| 141 | }) | 58 | }) |
| 142 | } | ||
| 143 | |||
| 144 | /** | ||
| 145 | * @description: 业务办理-业务申请-添加收藏业务 | ||
| 146 | * @param {*} bsmSqyw | ||
| 147 | * @author: renchao | ||
| 148 | */ | ||
| 149 | export function addCollectBiz (bsmSqyw) { | ||
| 150 | return request({ | ||
| 151 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/addCollectBiz?bsmSqyw=' + bsmSqyw, | ||
| 152 | method: 'post' | ||
| 153 | }) | ||
| 154 | } | ||
| 155 | |||
| 156 | /** | ||
| 157 | * @description: 业务办理-业务申请-取消收藏业务 | ||
| 158 | * @param {*} bsmSqyw | ||
| 159 | * @author: renchao | ||
| 160 | */ | ||
| 161 | export function deleteCollectBiz (bsmSqyw) { | ||
| 162 | return request({ | ||
| 163 | url: SERVER.SERVERAPI + '/rest/ywbl/BusinessApply/deleteCollectBiz?bsmSqyw=' + bsmSqyw, | ||
| 164 | method: 'post' | ||
| 165 | }) | ||
| 166 | } | 59 | } |
| 167 | 60 | ||
| 168 | /** | 61 | /** |
| ... | @@ -171,11 +64,11 @@ export function deleteCollectBiz (bsmSqyw) { | ... | @@ -171,11 +64,11 @@ export function deleteCollectBiz (bsmSqyw) { |
| 171 | * @author: renchao | 64 | * @author: renchao |
| 172 | */ | 65 | */ |
| 173 | export function selectOtherH (data) { | 66 | export function selectOtherH (data) { |
| 174 | return request({ | 67 | return request({ |
| 175 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectOtherH', | 68 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectOtherH', |
| 176 | method: 'post', | 69 | method: 'post', |
| 177 | data | 70 | data |
| 178 | }) | 71 | }) |
| 179 | } | 72 | } |
| 180 | 73 | ||
| 181 | /** | 74 | /** |
| ... | @@ -184,11 +77,11 @@ export function selectOtherH (data) { | ... | @@ -184,11 +77,11 @@ export function selectOtherH (data) { |
| 184 | * @author: renchao | 77 | * @author: renchao |
| 185 | */ | 78 | */ |
| 186 | export function selectNydsyqQlxx (data) { | 79 | export function selectNydsyqQlxx (data) { |
| 187 | return request({ | 80 | return request({ |
| 188 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectNydsyqQlxx', | 81 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectNydsyqQlxx', |
| 189 | method: 'post', | 82 | method: 'post', |
| 190 | data | 83 | data |
| 191 | }) | 84 | }) |
| 192 | } | 85 | } |
| 193 | 86 | ||
| 194 | 87 | ||
| ... | @@ -198,33 +91,33 @@ export function selectNydsyqQlxx (data) { | ... | @@ -198,33 +91,33 @@ export function selectNydsyqQlxx (data) { |
| 198 | * @author: renchao | 91 | * @author: renchao |
| 199 | */ | 92 | */ |
| 200 | export function selectZdjbxx (data) { | 93 | export function selectZdjbxx (data) { |
| 201 | return request({ | 94 | return request({ |
| 202 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxx', | 95 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxx', |
| 203 | method: 'post', | 96 | method: 'post', |
| 204 | data | 97 | data |
| 205 | }) | 98 | }) |
| 206 | } | 99 | } |
| 207 | 100 | ||
| 208 | /* | 101 | /* |
| 209 | 业务办理-选择单元-查询宗地基本信息 | 102 | 业务办理-选择单元-查询宗地基本信息 |
| 210 | */ | 103 | */ |
| 211 | export function selectZdjbxxSplitMergeLast (data) { | 104 | export function selectZdjbxxSplitMergeLast (data) { |
| 212 | return request({ | 105 | return request({ |
| 213 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxxSplitMergeLast', | 106 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZdjbxxSplitMergeLast', |
| 214 | method: 'post', | 107 | method: 'post', |
| 215 | data | 108 | data |
| 216 | }) | 109 | }) |
| 217 | } | 110 | } |
| 218 | 111 | ||
| 219 | /* | 112 | /* |
| 220 | 业务办理-选择单元-查询自然幢信息 | 113 | 业务办理-选择单元-查询自然幢信息 |
| 221 | */ | 114 | */ |
| 222 | export function selectZrz (data) { | 115 | export function selectZrz (data) { |
| 223 | return request({ | 116 | return request({ |
| 224 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZrzQjdc', | 117 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectZrzQjdc', |
| 225 | method: 'post', | 118 | method: 'post', |
| 226 | data | 119 | data |
| 227 | }) | 120 | }) |
| 228 | } | 121 | } |
| 229 | 122 | ||
| 230 | /** | 123 | /** |
| ... | @@ -233,11 +126,11 @@ export function selectZrz (data) { | ... | @@ -233,11 +126,11 @@ export function selectZrz (data) { |
| 233 | * @author: renchao | 126 | * @author: renchao |
| 234 | */ | 127 | */ |
| 235 | export function selectDz (data) { | 128 | export function selectDz (data) { |
| 236 | return request({ | 129 | return request({ |
| 237 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDz', | 130 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectDz', |
| 238 | method: 'post', | 131 | method: 'post', |
| 239 | data | 132 | data |
| 240 | }) | 133 | }) |
| 241 | } | 134 | } |
| 242 | 135 | ||
| 243 | 136 | ||
| ... | @@ -245,11 +138,11 @@ export function selectDz (data) { | ... | @@ -245,11 +138,11 @@ export function selectDz (data) { |
| 245 | 业务办理-选择单元-查询户信息 | 138 | 业务办理-选择单元-查询户信息 |
| 246 | */ | 139 | */ |
| 247 | export function selectH (data) { | 140 | export function selectH (data) { |
| 248 | return request({ | 141 | return request({ |
| 249 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectH', | 142 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectH', |
| 250 | method: 'post', | 143 | method: 'post', |
| 251 | data | 144 | data |
| 252 | }) | 145 | }) |
| 253 | } | 146 | } |
| 254 | 147 | ||
| 255 | /** | 148 | /** |
| ... | @@ -271,22 +164,22 @@ export function selectTdsyqQlxx (data) { | ... | @@ -271,22 +164,22 @@ export function selectTdsyqQlxx (data) { |
| 271 | * @author: renchao | 164 | * @author: renchao |
| 272 | */ | 165 | */ |
| 273 | export function selectJsydQlxx (data) { | 166 | export function selectJsydQlxx (data) { |
| 274 | return request({ | 167 | return request({ |
| 275 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxx', | 168 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxx', |
| 276 | method: 'post', | 169 | method: 'post', |
| 277 | data | 170 | data |
| 278 | }) | 171 | }) |
| 279 | } | 172 | } |
| 280 | 173 | ||
| 281 | /* | 174 | /* |
| 282 | 业务办理-选择单元-查询建设用地、宅基地信息 | 175 | 业务办理-选择单元-查询建设用地、宅基地信息 |
| 283 | */ | 176 | */ |
| 284 | export function selectJsydQlxxSplitMergeBefore (data) { | 177 | export function selectJsydQlxxSplitMergeBefore (data) { |
| 285 | return request({ | 178 | return request({ |
| 286 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxxSplitMergeBefore', | 179 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectJsydQlxxSplitMergeBefore', |
| 287 | method: 'post', | 180 | method: 'post', |
| 288 | data | 181 | data |
| 289 | }) | 182 | }) |
| 290 | } | 183 | } |
| 291 | 184 | ||
| 292 | /** | 185 | /** |
| ... | @@ -295,11 +188,11 @@ export function selectJsydQlxxSplitMergeBefore (data) { | ... | @@ -295,11 +188,11 @@ export function selectJsydQlxxSplitMergeBefore (data) { |
| 295 | * @returns {*} | 188 | * @returns {*} |
| 296 | */ | 189 | */ |
| 297 | export function selectFwsyq (data) { | 190 | export function selectFwsyq (data) { |
| 298 | return request({ | 191 | return request({ |
| 299 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectFwsyqQlxx', | 192 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectFwsyqQlxx', |
| 300 | method: 'post', | 193 | method: 'post', |
| 301 | data | 194 | data |
| 302 | }) | 195 | }) |
| 303 | } | 196 | } |
| 304 | /** | 197 | /** |
| 305 | * 业务办理-预告登记-选择权利信息-根据条件进行列表查询 | 198 | * 业务办理-预告登记-选择权利信息-根据条件进行列表查询 |
| ... | @@ -307,11 +200,11 @@ export function selectFwsyq (data) { | ... | @@ -307,11 +200,11 @@ export function selectFwsyq (data) { |
| 307 | * @returns {*} | 200 | * @returns {*} |
| 308 | */ | 201 | */ |
| 309 | export function selectYgdj100 (data) { | 202 | export function selectYgdj100 (data) { |
| 310 | return request({ | 203 | return request({ |
| 311 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj100', | 204 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj100', |
| 312 | method: 'post', | 205 | method: 'post', |
| 313 | data | 206 | data |
| 314 | }) | 207 | }) |
| 315 | } | 208 | } |
| 316 | /** | 209 | /** |
| 317 | * 业务办理-预告登记-选择权利信息-根据条件进行列表查询 | 210 | * 业务办理-预告登记-选择权利信息-根据条件进行列表查询 |
| ... | @@ -319,11 +212,11 @@ export function selectYgdj100 (data) { | ... | @@ -319,11 +212,11 @@ export function selectYgdj100 (data) { |
| 319 | * @returns {*} | 212 | * @returns {*} |
| 320 | */ | 213 | */ |
| 321 | export function selectYgdj200 (data) { | 214 | export function selectYgdj200 (data) { |
| 322 | return request({ | 215 | return request({ |
| 323 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj200', | 216 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdj200', |
| 324 | method: 'post', | 217 | method: 'post', |
| 325 | data | 218 | data |
| 326 | }) | 219 | }) |
| 327 | } | 220 | } |
| 328 | /** | 221 | /** |
| 329 | * 业务办理-预告抵押登记-选择权利信息-根据条件进行列表查询 | 222 | * 业务办理-预告抵押登记-选择权利信息-根据条件进行列表查询 |
| ... | @@ -331,11 +224,11 @@ export function selectYgdj200 (data) { | ... | @@ -331,11 +224,11 @@ export function selectYgdj200 (data) { |
| 331 | * @returns {*} | 224 | * @returns {*} |
| 332 | */ | 225 | */ |
| 333 | export function selectYgdy (data) { | 226 | export function selectYgdy (data) { |
| 334 | return request({ | 227 | return request({ |
| 335 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdy', | 228 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectYgdy', |
| 336 | method: 'post', | 229 | method: 'post', |
| 337 | data | 230 | data |
| 338 | }) | 231 | }) |
| 339 | } | 232 | } |
| 340 | /** | 233 | /** |
| 341 | * 根据自然幢查询房屋信息 | 234 | * 根据自然幢查询房屋信息 |
| ... | @@ -343,9 +236,21 @@ export function selectYgdy (data) { | ... | @@ -343,9 +236,21 @@ export function selectYgdy (data) { |
| 343 | * @returns {*} | 236 | * @returns {*} |
| 344 | */ | 237 | */ |
| 345 | export function selectHQjdc (data) { | 238 | export function selectHQjdc (data) { |
| 346 | return request({ | 239 | return request({ |
| 347 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectHQjdc', | 240 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectHQjdc', |
| 348 | method: 'post', | 241 | method: 'post', |
| 349 | data | 242 | data |
| 350 | }) | 243 | }) |
| 244 | } | ||
| 245 | /** | ||
| 246 | * @description: 选择补录权利信息 | ||
| 247 | * @param {*} data | ||
| 248 | * @author: renchao | ||
| 249 | */ | ||
| 250 | export function selectRepairQlxx (data) { | ||
| 251 | return request({ | ||
| 252 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectRepairQlxx', | ||
| 253 | method: 'post', | ||
| 254 | data | ||
| 255 | }) | ||
| 351 | } | 256 | } | ... | ... |
src/api/zhcx.js
deleted
100644 → 0
| 1 | /* | ||
| 2 | * @Description: 综合查询-登记簿查询 | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-05-17 10:23:50 | ||
| 5 | */ | ||
| 6 | import request from '@/utils/request' | ||
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | ||
| 8 | |||
| 9 | |||
| 10 | /** | ||
| 11 | * @description: 根据条件进行列表查询 | ||
| 12 | * @param {*} data | ||
| 13 | * @author: renchao | ||
| 14 | */ | ||
| 15 | export function getDjbBysearch (data) { | ||
| 16 | return request({ | ||
| 17 | url: SERVER.SERVERAPI + '/rest/zhcx/search/qlxx/getDjbBysearch', | ||
| 18 | method: 'post', | ||
| 19 | data: data | ||
| 20 | }) | ||
| 21 | } | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @description: 获取登记封面 | ||
| 25 | * @param {*} qlbsm | ||
| 26 | * @author: renchao | ||
| 27 | */ | ||
| 28 | export function getDjbfm (qlbsm) { | ||
| 29 | return request({ | ||
| 30 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/djbfm/' + qlbsm, | ||
| 31 | method: 'get' | ||
| 32 | }) | ||
| 33 | } | ||
| 34 | |||
| 35 | /** | ||
| 36 | * @description: 获取登记目录 | ||
| 37 | * @param {*} data | ||
| 38 | * @author: renchao | ||
| 39 | */ | ||
| 40 | export function getBdcqldjmlByBdcdyid (data) { | ||
| 41 | return request({ | ||
| 42 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getBdcqldjmlByBdcdyid', | ||
| 43 | method: 'get', | ||
| 44 | params: data | ||
| 45 | }) | ||
| 46 | } | ||
| 47 | |||
| 48 | /** | ||
| 49 | * @description: 获取宗地信息 | ||
| 50 | * @param {*} qlbsm | ||
| 51 | * @author: renchao | ||
| 52 | */ | ||
| 53 | export function getZdjbxx (qlbsm) { | ||
| 54 | return request({ | ||
| 55 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/zdjbxx/' + qlbsm, | ||
| 56 | method: 'get' | ||
| 57 | }) | ||
| 58 | } | ||
| 59 | |||
| 60 | /** | ||
| 61 | * @description: 获取宗地信息 | ||
| 62 | * @param {*} data | ||
| 63 | * @author: renchao | ||
| 64 | */ | ||
| 65 | export function getZdjjxxBybdcdyid (data) { | ||
| 66 | return request({ | ||
| 67 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getZdjjxxBybdcdyid', | ||
| 68 | method: 'get', | ||
| 69 | params: data | ||
| 70 | }) | ||
| 71 | } | ||
| 72 | |||
| 73 | /** | ||
| 74 | * @description: 获取宗地信息 | ||
| 75 | * @param {*} data | ||
| 76 | * @author: renchao | ||
| 77 | */ | ||
| 78 | export function getZdjjxxBySLdy (data) { | ||
| 79 | return request({ | ||
| 80 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getZdjjxxBybdcdyid', | ||
| 81 | method: 'get', | ||
| 82 | params: data | ||
| 83 | }) | ||
| 84 | } | ||
| 85 | |||
| 86 | /** | ||
| 87 | * @description: 获取不动产权利及其他事项 | ||
| 88 | * @param {*} data | ||
| 89 | * @author: renchao | ||
| 90 | */ | ||
| 91 | export function getBdcqljqtsx (data) { | ||
| 92 | return request({ | ||
| 93 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getBdcqljqtsx', | ||
| 94 | method: 'get', | ||
| 95 | params: data | ||
| 96 | }) | ||
| 97 | } | ||
| 98 | |||
| 99 | /** | ||
| 100 | * @description: 获取不动产权利及其他事项页面信息 | ||
| 101 | * @param {*} qlbsm | ||
| 102 | * @author: renchao | ||
| 103 | */ | ||
| 104 | export function getQlname (qlbsm) { | ||
| 105 | return request({ | ||
| 106 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/qlname/' + qlbsm, | ||
| 107 | method: 'get' | ||
| 108 | }) | ||
| 109 | } | ||
| 110 | |||
| 111 | /** | ||
| 112 | * @description: 获取权利详细信息 | ||
| 113 | * @param {*} qlbsm | ||
| 114 | * @author: renchao | ||
| 115 | */ | ||
| 116 | export function getDetail (qlbsm) { | ||
| 117 | return request({ | ||
| 118 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/detail/' + qlbsm, | ||
| 119 | method: 'get' | ||
| 120 | }) | ||
| 121 | } | ||
| 122 | |||
| 123 | /** | ||
| 124 | * @description: 获取建设用地使用权 | ||
| 125 | * @param {*} data | ||
| 126 | * @author: renchao | ||
| 127 | */ | ||
| 128 | export function getJsydsyqList (data) { | ||
| 129 | return request({ | ||
| 130 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getJsydsyqList', | ||
| 131 | method: 'post', | ||
| 132 | data | ||
| 133 | }) | ||
| 134 | } | ||
| 135 | /** | ||
| 136 | * @description: 获取抵押权 | ||
| 137 | * @param {*} data | ||
| 138 | * @author: renchao | ||
| 139 | */ | ||
| 140 | export function getDiyaqList (data) { | ||
| 141 | return request({ | ||
| 142 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyaqList', | ||
| 143 | method: 'post', | ||
| 144 | data | ||
| 145 | }) | ||
| 146 | } | ||
| 147 | /** | ||
| 148 | * @description: 获取地役权 | ||
| 149 | * @param {*} data | ||
| 150 | * @author: renchao | ||
| 151 | */ | ||
| 152 | export function getDiyiqList (data) { | ||
| 153 | return request({ | ||
| 154 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getDiyiqList', | ||
| 155 | method: 'post', | ||
| 156 | data | ||
| 157 | }) | ||
| 158 | } | ||
| 159 | /** | ||
| 160 | * @description: 获取预告登记 | ||
| 161 | * @param {*} data | ||
| 162 | * @author: renchao | ||
| 163 | */ | ||
| 164 | export function getYgdjList (data) { | ||
| 165 | return request({ | ||
| 166 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYgdjList', | ||
| 167 | method: 'post', | ||
| 168 | data | ||
| 169 | }) | ||
| 170 | } | ||
| 171 | /** | ||
| 172 | * @description: 获取异议登记 | ||
| 173 | * @param {*} data | ||
| 174 | * @author: renchao | ||
| 175 | */ | ||
| 176 | export function getYydjList (data) { | ||
| 177 | return request({ | ||
| 178 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getYydjList', | ||
| 179 | method: 'post', | ||
| 180 | data | ||
| 181 | }) | ||
| 182 | } | ||
| 183 | /** | ||
| 184 | * @description: 获取查封登记 | ||
| 185 | * @param {*} data | ||
| 186 | * @author: renchao | ||
| 187 | */ | ||
| 188 | export function getCfdjList (data) { | ||
| 189 | return request({ | ||
| 190 | url: SERVER.SERVERAPI + '/rest/zhcx/djbcx/getCfdjList', | ||
| 191 | method: 'post', | ||
| 192 | data | ||
| 193 | }) | ||
| 194 | } | ||
| 195 | /** | ||
| 196 | * @description: 进度查询列表 | ||
| 197 | * @param {*} data | ||
| 198 | * @author: renchao | ||
| 199 | */ | ||
| 200 | export function getJdcxBysearch (data) { | ||
| 201 | return request({ | ||
| 202 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getJdcxBysearch', | ||
| 203 | method: 'post', | ||
| 204 | data | ||
| 205 | }) | ||
| 206 | } | ||
| 207 | |||
| 208 | /** | ||
| 209 | * @description: 证书领取查询 | ||
| 210 | * @param {*} data | ||
| 211 | * @author: renchao | ||
| 212 | */ | ||
| 213 | export function getBdcqzReceiveList (data) { | ||
| 214 | return request({ | ||
| 215 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getBdcqzReceiveList', | ||
| 216 | method: 'post', | ||
| 217 | data | ||
| 218 | }) | ||
| 219 | } | ||
| 220 | |||
| 221 | /** | ||
| 222 | * @description: 在建工程抵押查询 | ||
| 223 | * @param {*} data | ||
| 224 | * @author: renchao | ||
| 225 | */ | ||
| 226 | export function getZjgcdyList (data) { | ||
| 227 | return request({ | ||
| 228 | url: SERVER.SERVERAPI + '/rest/zhcx/search/getZjgcdyList', | ||
| 229 | method: 'post', | ||
| 230 | data | ||
| 231 | }) | ||
| 232 | } | ||
| 233 | |||
| 234 | // 数据上报推送查询 | ||
| 235 | export function getSjsbPushList (data) { | ||
| 236 | return request({ | ||
| 237 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/list', | ||
| 238 | method: 'post', | ||
| 239 | data | ||
| 240 | }) | ||
| 241 | } | ||
| 242 | |||
| 243 | // 数据上报推送 | ||
| 244 | export function pushSjsbRecord (data) { | ||
| 245 | return request({ | ||
| 246 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/push', | ||
| 247 | method: 'post', | ||
| 248 | data | ||
| 249 | }) | ||
| 250 | } | ||
| 251 | |||
| 252 | // 数据上报推送 | ||
| 253 | export function detail (bsm) { | ||
| 254 | return request({ | ||
| 255 | url: SERVER.SERVERAPI + '/rest/system/sysPushRecord/detail?bsm=' + bsm, | ||
| 256 | method: 'get' | ||
| 257 | }) | ||
| 258 | } | ||
| 259 | |||
| 260 | |||
| 261 |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: 证书管理 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:24:24 | 4 | * @LastEditTime: 2023-05-17 10:24:24 |
| 5 | */ | 5 | */ |
| 6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
| 8 | /** | 8 | |
| 9 | * @description: 证书管理-获取序列号 | ||
| 10 | * @param {*} params | ||
| 11 | * @author: renchao | ||
| 12 | */ | ||
| 13 | export function getSysSerialSingle (params) { | ||
| 14 | return request({ | ||
| 15 | url: SERVER.SERVERAPI + '/rest/system/sysSerial/getSysSerialSingle', | ||
| 16 | method: 'get', | ||
| 17 | params: params | ||
| 18 | }) | ||
| 19 | } | ||
| 20 | /** | 9 | /** |
| 21 | * @description: 证书管理-证书入库列表 | 10 | * @description: 证书管理-证书入库列表 |
| 22 | * @param {*} data | 11 | * @param {*} data |
| ... | @@ -162,4 +151,4 @@ export function getZsglInfo (params) { | ... | @@ -162,4 +151,4 @@ export function getZsglInfo (params) { |
| 162 | method: 'get', | 151 | method: 'get', |
| 163 | params | 152 | params |
| 164 | }) | 153 | }) |
| 165 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 154 | } | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:34:47 | 4 | * @LastEditTime: 2023-05-17 10:34:47 |
| 5 | */ | 5 | */ |
| 6 | import { getAllDict } from '@/api/user' | 6 | import { getAllDict } from '@/api/dict' |
| 7 | const state = { | 7 | const state = { |
| 8 | dictData: {}, | 8 | dictData: {}, |
| 9 | addDict: false, | 9 | addDict: false, | ... | ... |
| ... | @@ -63,7 +63,7 @@ import { mapGetters } from "vuex"; | ... | @@ -63,7 +63,7 @@ import { mapGetters } from "vuex"; |
| 63 | import { leftMenu, deleteSlbdcdy } from "@/api/workFlow.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 { getBdcqljqtsx } from "@/api/registerBook.js"; | 66 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
| 67 | import { loadTreeData, getNode } from "./djbFrameData.js"; | 67 | import { loadTreeData, getNode } from "./djbFrameData.js"; |
| 68 | export default { | 68 | export default { |
| 69 | data() { | 69 | data() { | ... | ... |
| ... | @@ -3,7 +3,7 @@ | ... | @@ -3,7 +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 { getPrintTemplateByCode } from "@/api/system"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
| 7 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; | 7 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; |
| 8 | import { uploadUndo } from "@/api/clxx"; | 8 | import { uploadUndo } from "@/api/clxx"; |
| 9 | import { deleteFlow } from "@/api/djbbl"; | 9 | import { deleteFlow } from "@/api/djbbl"; | ... | ... |
| ... | @@ -83,7 +83,7 @@ | ... | @@ -83,7 +83,7 @@ |
| 83 | // 获取权利类型数组 | 83 | // 获取权利类型数组 |
| 84 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; | 84 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; |
| 85 | 85 | ||
| 86 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 86 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
| 87 | export default { | 87 | export default { |
| 88 | components: { | 88 | components: { |
| 89 | selectBdc, | 89 | selectBdc, | ... | ... |
| ... | @@ -87,7 +87,7 @@ import { addRepairRecord } from "@/api/djbbl.js"; | ... | @@ -87,7 +87,7 @@ import { addRepairRecord } from "@/api/djbbl.js"; |
| 87 | // 获取权利类型数组 | 87 | // 获取权利类型数组 |
| 88 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; | 88 | import { getQllxByBdcdyid } from "@/api/djbbl.js"; |
| 89 | 89 | ||
| 90 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 90 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
| 91 | export default { | 91 | export default { |
| 92 | components: { | 92 | components: { |
| 93 | selectBdc, | 93 | selectBdc, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-12 09:23:03 | 4 | * @LastEditTime: 2023-07-12 09:23:03 |
| 5 | --> | 5 | --> |
| ... | @@ -112,7 +112,7 @@ | ... | @@ -112,7 +112,7 @@ |
| 112 | import * as G2 from '@antv/g2' | 112 | import * as G2 from '@antv/g2' |
| 113 | import vueSeamlessScroll from "vue-seamless-scroll" | 113 | import vueSeamlessScroll from "vue-seamless-scroll" |
| 114 | import { getHomeNoticeList, getHomeTodoList, getHomeDoneList, getHomeFrequentProjects } from "@/api/home.js"; | 114 | import { getHomeNoticeList, getHomeTodoList, getHomeDoneList, getHomeFrequentProjects } from "@/api/home.js"; |
| 115 | import { setReadStatus } from '@/api/system' | 115 | import { setReadStatus } from '@/api/sysNotice' |
| 116 | import addDialog from "./components/addProject.vue"; | 116 | import addDialog from "./components/addProject.vue"; |
| 117 | export default { | 117 | export default { |
| 118 | name: 'home', | 118 | name: 'home', |
| ... | @@ -363,4 +363,4 @@ | ... | @@ -363,4 +363,4 @@ |
| 363 | padding: 3px 10px 5px 10px; | 363 | padding: 3px 10px 5px 10px; |
| 364 | overflow: hidden; | 364 | overflow: hidden; |
| 365 | } | 365 | } |
| 366 | </style> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 366 | </style> | ... | ... |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | </template> | 58 | </template> |
| 59 | 59 | ||
| 60 | <script> | 60 | <script> |
| 61 | import { addSysInterface, editSysInterface} from "@/api/jkfw.js" | 61 | import { addSysInterface, editSysInterface} from "@/api/ptjk.js" |
| 62 | export default { | 62 | export default { |
| 63 | components: { | 63 | components: { |
| 64 | }, | 64 | }, | ... | ... |
| ... | @@ -44,10 +44,10 @@ | ... | @@ -44,10 +44,10 @@ |
| 44 | 44 | ||
| 45 | <script> | 45 | <script> |
| 46 | import vueJsonEditor from 'vue-json-editor' | 46 | import vueJsonEditor from 'vue-json-editor' |
| 47 | import {interfaceRetrieve } from "@/api/jkfw.js" | 47 | import {interfaceRetrieve } from "@/api/ptjk.js" |
| 48 | export default { | 48 | export default { |
| 49 | components: { | 49 | components: { |
| 50 | vueJsonEditor | 50 | vueJsonEditor |
| 51 | }, | 51 | }, |
| 52 | computed: { | 52 | computed: { |
| 53 | }, | 53 | }, |
| ... | @@ -95,7 +95,7 @@ export default { | ... | @@ -95,7 +95,7 @@ export default { |
| 95 | //关闭弹窗 | 95 | //关闭弹窗 |
| 96 | closeDialog () { | 96 | closeDialog () { |
| 97 | this.$emit("input", false); | 97 | this.$emit("input", false); |
| 98 | this.interfaceParams = {} | 98 | this.interfaceParams = {} |
| 99 | this.returnMessage = {} | 99 | this.returnMessage = {} |
| 100 | this.hasJsonFlag = true | 100 | this.hasJsonFlag = true |
| 101 | }, | 101 | }, | ... | ... |
| ... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
| 40 | import { mapGetters } from 'vuex' | 40 | import { mapGetters } from 'vuex' |
| 41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
| 42 | import { datas, sendThis } from "./ptjkdata" | 42 | import { datas, sendThis } from "./ptjkdata" |
| 43 | import { getSysInterfaceList } from '@/api/jkfw' | 43 | import { getSysInterfaceList } from '@/api/ptjk.js' |
| 44 | import addDialog from "./components/addDialog.vue" | 44 | import addDialog from "./components/addDialog.vue" |
| 45 | import retrieveDialog from "./components/retrieveDialog.vue" | 45 | import retrieveDialog from "./components/retrieveDialog.vue" |
| 46 | export default { | 46 | export default { | ... | ... |
| ... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
| 23 | </template> | 23 | </template> |
| 24 | 24 | ||
| 25 | <script> | 25 | <script> |
| 26 | import { getBdcqldjmlByBdcdyid } from "@/api/registerBook.js"; | 26 | import { getBdcqldjmlByBdcdyid } from "@/api/djbDetail.js"; |
| 27 | export default { | 27 | export default { |
| 28 | data() { | 28 | data() { |
| 29 | return { | 29 | return { | ... | ... |
| ... | @@ -49,7 +49,7 @@ | ... | @@ -49,7 +49,7 @@ |
| 49 | </template> | 49 | </template> |
| 50 | 50 | ||
| 51 | <script> | 51 | <script> |
| 52 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 52 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
| 53 | export default { | 53 | export default { |
| 54 | name: "bdcqljqtsx", | 54 | name: "bdcqljqtsx", |
| 55 | data() { | 55 | data() { | ... | ... |
| ... | @@ -60,7 +60,7 @@ | ... | @@ -60,7 +60,7 @@ |
| 60 | <script> | 60 | <script> |
| 61 | import { datas } from "./qlxxFormData.js"; | 61 | import { datas } from "./qlxxFormData.js"; |
| 62 | import { getSjlx } from "@/utils/dictionary.js"; | 62 | import { getSjlx } from "@/utils/dictionary.js"; |
| 63 | import { getCfdjList } from "@/api/registerBook.js"; | 63 | import { getCfdjList } from "@/api/djbDetail.js"; |
| 64 | export default { | 64 | export default { |
| 65 | data () { | 65 | data () { |
| 66 | return { | 66 | return { | ... | ... |
| ... | @@ -70,7 +70,7 @@ | ... | @@ -70,7 +70,7 @@ |
| 70 | <script> | 70 | <script> |
| 71 | import { datas } from "./qlxxFormData.js"; | 71 | import { datas } from "./qlxxFormData.js"; |
| 72 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 72 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
| 73 | import { getDiyaqList } from "@/api/registerBook.js"; | 73 | import { getDiyaqList } from "@/api/djbDetail.js"; |
| 74 | export default { | 74 | export default { |
| 75 | data () { | 75 | data () { |
| 76 | return { | 76 | return { | ... | ... |
| ... | @@ -64,7 +64,7 @@ | ... | @@ -64,7 +64,7 @@ |
| 64 | <script> | 64 | <script> |
| 65 | import { datas } from "./qlxxFormData.js"; | 65 | import { datas } from "./qlxxFormData.js"; |
| 66 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 66 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
| 67 | import { getDiyiqList } from "@/api/registerBook.js"; | 67 | import { getDiyiqList } from "@/api/djbDetail.js"; |
| 68 | export default { | 68 | export default { |
| 69 | data () { | 69 | data () { |
| 70 | return { | 70 | return { | ... | ... |
| ... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
| 11 | </div> | 11 | </div> |
| 12 | </template> | 12 | </template> |
| 13 | <script> | 13 | <script> |
| 14 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 14 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
| 15 | import { loadTreeData, getNode } from "./djbFrameData.js"; | 15 | import { loadTreeData, getNode } from "./djbFrameData.js"; |
| 16 | export default { | 16 | export default { |
| 17 | data () { | 17 | data () { | ... | ... |
| ... | @@ -11,9 +11,9 @@ | ... | @@ -11,9 +11,9 @@ |
| 11 | </div> | 11 | </div> |
| 12 | </template> | 12 | </template> |
| 13 | <script> | 13 | <script> |
| 14 | import { getBdcqljqtsx } from "@/api/registerBook.js"; | 14 | import { getBdcqljqtsx } from "@/api/djbDetail.js"; |
| 15 | import { loadTreeData, getNode } from "./djbFrameData.js"; | 15 | import { loadTreeData, getNode } from "./djbFrameData.js"; |
| 16 | import { searchTaskToDo } from "@/api/ywbl"; | 16 | import { searchTaskToDo } from "@/api/workflow/search.js"; |
| 17 | import { | 17 | import { |
| 18 | leftMenu | 18 | leftMenu |
| 19 | } from "@/api/workFlow.js"; | 19 | } from "@/api/workFlow.js"; | ... | ... |
| ... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
| 59 | <script> | 59 | <script> |
| 60 | import { datas } from "./qlxxFormData.js"; | 60 | import { datas } from "./qlxxFormData.js"; |
| 61 | import { getSjlx } from "@/utils/dictionary.js"; | 61 | import { getSjlx } from "@/utils/dictionary.js"; |
| 62 | import { getJsydsyqList } from "@/api/registerBook.js"; | 62 | import { getJsydsyqList } from "@/api/djbDetail.js"; |
| 63 | export default { | 63 | export default { |
| 64 | data () { | 64 | data () { |
| 65 | return { | 65 | return { | ... | ... |
| ... | @@ -70,7 +70,7 @@ | ... | @@ -70,7 +70,7 @@ |
| 70 | <script> | 70 | <script> |
| 71 | import { datas } from "./qlxxFormData.js"; | 71 | import { datas } from "./qlxxFormData.js"; |
| 72 | import { getSjlx } from "@/utils/dictionary.js"; | 72 | import { getSjlx } from "@/utils/dictionary.js"; |
| 73 | import { getFdcq2List } from "@/api/registerBook.js"; | 73 | import { getFdcq2List } from "@/api/djbDetail.js"; |
| 74 | export default { | 74 | export default { |
| 75 | data () { | 75 | data () { |
| 76 | return { | 76 | return { | ... | ... |
| ... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
| 59 | <script> | 59 | <script> |
| 60 | import { datas } from "./qlxxFormData.js"; | 60 | import { datas } from "./qlxxFormData.js"; |
| 61 | import { getSjlx } from "@/utils/dictionary.js"; | 61 | import { getSjlx } from "@/utils/dictionary.js"; |
| 62 | import { getJsydsyqList } from "@/api/registerBook.js"; | 62 | import { getJsydsyqList } from "@/api/djbDetail.js"; |
| 63 | export default { | 63 | export default { |
| 64 | data () { | 64 | data () { |
| 65 | return { | 65 | return { | ... | ... |
| ... | @@ -96,7 +96,7 @@ | ... | @@ -96,7 +96,7 @@ |
| 96 | <script> | 96 | <script> |
| 97 | import { datas } from "./qlxxFormData.js"; | 97 | import { datas } from "./qlxxFormData.js"; |
| 98 | import { getSjlx } from "@/utils/dictionary.js"; | 98 | import { getSjlx } from "@/utils/dictionary.js"; |
| 99 | import { getNydsyqList } from "@/api/registerBook.js"; | 99 | import { getNydsyqList } from "@/api/djbDetail.js"; |
| 100 | export default { | 100 | export default { |
| 101 | data () { | 101 | data () { |
| 102 | return { | 102 | return { | ... | ... |
| ... | @@ -59,7 +59,7 @@ | ... | @@ -59,7 +59,7 @@ |
| 59 | <script> | 59 | <script> |
| 60 | import { datas } from "./qlxxFormData.js"; | 60 | import { datas } from "./qlxxFormData.js"; |
| 61 | import { getSjlx } from "@/utils/dictionary.js"; | 61 | import { getSjlx } from "@/utils/dictionary.js"; |
| 62 | import { getTdsyqList } from "@/api/registerBook.js"; | 62 | import { getTdsyqList } from "@/api/djbDetail.js"; |
| 63 | export default { | 63 | export default { |
| 64 | data () { | 64 | data () { |
| 65 | return { | 65 | return { | ... | ... |
| ... | @@ -57,7 +57,7 @@ | ... | @@ -57,7 +57,7 @@ |
| 57 | 57 | ||
| 58 | <script> | 58 | <script> |
| 59 | import { datas } from "./qlxxFormData.js"; | 59 | import { datas } from "./qlxxFormData.js"; |
| 60 | import { getYgdjList } from "@/api/registerBook.js"; | 60 | import { getYgdjList } from "@/api/djbDetail.js"; |
| 61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
| 62 | export default { | 62 | export default { |
| 63 | data () { | 63 | data () { | ... | ... |
| ... | @@ -57,7 +57,7 @@ | ... | @@ -57,7 +57,7 @@ |
| 57 | 57 | ||
| 58 | <script> | 58 | <script> |
| 59 | import { datas } from "./qlxxFormData.js"; | 59 | import { datas } from "./qlxxFormData.js"; |
| 60 | import { getYydjList } from "@/api/registerBook.js"; | 60 | import { getYydjList } from "@/api/djbDetail.js"; |
| 61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; | 61 | import { getSjlx, getDictLeabel } from "@/utils/dictionary.js"; |
| 62 | export default { | 62 | export default { |
| 63 | data () { | 63 | data () { | ... | ... |
| ... | @@ -133,7 +133,7 @@ | ... | @@ -133,7 +133,7 @@ |
| 133 | 133 | ||
| 134 | <script> | 134 | <script> |
| 135 | import store from '@/store/index.js' | 135 | import store from '@/store/index.js' |
| 136 | import { getZdjjxxBybdcdyid } from "@/api/registerBook.js"; | 136 | import { getZdjjxxBybdcdyid } from "@/api/djbDetail.js"; |
| 137 | 137 | ||
| 138 | export default { | 138 | export default { |
| 139 | data () { | 139 | data () { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-26 15:40:23 | 4 | * @LastEditTime: 2023-05-26 15:40:23 |
| 5 | --> | 5 | --> |
| ... | @@ -16,7 +16,7 @@ | ... | @@ -16,7 +16,7 @@ |
| 16 | </div> | 16 | </div> |
| 17 | </template> | 17 | </template> |
| 18 | <script> | 18 | <script> |
| 19 | import { pushSjsbRecord } from "@/api/zhcx.js"; | 19 | import { push } from "@/api/sysPushRecord.js"; |
| 20 | export default { | 20 | export default { |
| 21 | props: { | 21 | props: { |
| 22 | formData: { | 22 | formData: { |
| ... | @@ -29,7 +29,7 @@ | ... | @@ -29,7 +29,7 @@ |
| 29 | methods: { | 29 | methods: { |
| 30 | pushRecord () { | 30 | pushRecord () { |
| 31 | this.$startLoading() | 31 | this.$startLoading() |
| 32 | pushSjsbRecord(this.formData).then((res) => { | 32 | push(this.formData).then((res) => { |
| 33 | this.$endLoading() | 33 | this.$endLoading() |
| 34 | if (res.code === 200) { | 34 | if (res.code === 200) { |
| 35 | this.$message.success("推送成功"); | 35 | this.$message.success("推送成功"); | ... | ... |
| ... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
| 32 | import { mapGetters } from "vuex"; | 32 | import { mapGetters } from "vuex"; |
| 33 | import table from "@/utils/mixin/table"; | 33 | import table from "@/utils/mixin/table"; |
| 34 | import { datas, sendThis } from "./djbcxdata"; | 34 | import { datas, sendThis } from "./djbcxdata"; |
| 35 | import { getSjsbPushList, detail } from "@/api/zhcx.js"; | 35 | import { list, detail } from "@/api/sysPushRecord.js"; |
| 36 | 36 | ||
| 37 | export default { | 37 | export default { |
| 38 | name: "djbcx", | 38 | name: "djbcx", |
| ... | @@ -67,7 +67,7 @@ | ... | @@ -67,7 +67,7 @@ |
| 67 | // 初始化数据 | 67 | // 初始化数据 |
| 68 | queryClick () { | 68 | queryClick () { |
| 69 | this.$startLoading() | 69 | this.$startLoading() |
| 70 | getSjsbPushList({ ...this.queryForm, ...this.pageData }).then((res) => { | 70 | list({ ...this.queryForm, ...this.pageData }).then((res) => { |
| 71 | this.$endLoading() | 71 | this.$endLoading() |
| 72 | if (res.code === 200) { | 72 | if (res.code === 200) { |
| 73 | let { total, records } = res.result; | 73 | let { total, records } = res.result; | ... | ... |
| ... | @@ -54,7 +54,7 @@ | ... | @@ -54,7 +54,7 @@ |
| 54 | 54 | ||
| 55 | <script> | 55 | <script> |
| 56 | import { addFwmxCxjgXx, getFwmxInfo,printJtcfInfo } from "@/api/sqcx"; | 56 | import { addFwmxCxjgXx, getFwmxInfo,printJtcfInfo } from "@/api/sqcx"; |
| 57 | import { getPrintTemplateByCode } from "@/api/system"; | 57 | import { getPrintTemplateByCode } from "@/api/print"; |
| 58 | import { datas, sendThis } from "./dydjbdata"; | 58 | import { datas, sendThis } from "./dydjbdata"; |
| 59 | import { getLodop } from "@/utils/LodopFuncs" | 59 | import { getLodop } from "@/utils/LodopFuncs" |
| 60 | import dydjbInfo from "./dydjbInfo.vue"; | 60 | import dydjbInfo from "./dydjbInfo.vue"; | ... | ... |
| ... | @@ -119,7 +119,7 @@ | ... | @@ -119,7 +119,7 @@ |
| 119 | import { getLodop } from "@/utils/LodopFuncs" | 119 | import { getLodop } from "@/utils/LodopFuncs" |
| 120 | import printView from "./printView.vue"; | 120 | import printView from "./printView.vue"; |
| 121 | import { getIdCardInfo } from '@/utils/operation.js' | 121 | import { getIdCardInfo } from '@/utils/operation.js' |
| 122 | import { getPrintTemplateByCode } from "@/api/system"; | 122 | import { getPrintTemplateByCode } from "@/api/print"; |
| 123 | import { addJtfcCxjgXx, getJtfcInfo, printJtcfInfo } from "@/api/sqcx"; | 123 | import { addJtfcCxjgXx, getJtfcInfo, printJtcfInfo } from "@/api/sqcx"; |
| 124 | export default { | 124 | export default { |
| 125 | components: { | 125 | components: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 16:42:17 | 4 | * @LastEditTime: 2023-07-13 16:42:17 |
| 5 | --> | 5 | --> |
| ... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
| 32 | 32 | ||
| 33 | <script> | 33 | <script> |
| 34 | import { getUuid, judgeSort, realMove, findParents, removeTreeListItem } from '@/utils/operation' | 34 | import { getUuid, judgeSort, realMove, findParents, removeTreeListItem } from '@/utils/operation' |
| 35 | import { editDictNode, getChildDictList } from '@/api/user' | 35 | import { editDictNode, getChildDictList } from '@/api/dict' |
| 36 | export default { | 36 | export default { |
| 37 | props: { | 37 | props: { |
| 38 | formData: { | 38 | formData: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 16:31:56 | 4 | * @LastEditTime: 2023-07-13 16:31:56 |
| 5 | --> | 5 | --> |
| ... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
| 39 | </template> | 39 | </template> |
| 40 | <script> | 40 | <script> |
| 41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
| 42 | import { getQlxxDictList, getChildDictList, refreshDictCache } from "@/api/user.js" | 42 | import { getQlxxDictList, getChildDictList, refreshDictCache } from "@/api/dict.js" |
| 43 | import { datas, sendThis } from "./dictionaries" | 43 | import { datas, sendThis } from "./dictionaries" |
| 44 | import editDialog from "./components/editDialog.vue" | 44 | import editDialog from "./components/editDialog.vue" |
| 45 | export default { | 45 | export default { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 16:42:26 | 4 | * @LastEditTime: 2023-07-13 16:42:26 |
| 5 | --> | 5 | --> |
| ... | @@ -45,7 +45,7 @@ | ... | @@ -45,7 +45,7 @@ |
| 45 | import { getLodop } from "@/utils/LodopFuncs" | 45 | import { getLodop } from "@/utils/LodopFuncs" |
| 46 | import { mapGetters } from 'vuex' | 46 | import { mapGetters } from 'vuex' |
| 47 | import store from '@/store/index.js' | 47 | import store from '@/store/index.js' |
| 48 | import { addPrintTemplate, editPrintTemplate } from "@/api/system.js" | 48 | import { addPrintTemplate, editPrintTemplate } from "@/api/print.js" |
| 49 | export default { | 49 | export default { |
| 50 | computed: { | 50 | computed: { |
| 51 | ...mapGetters(['dictData']), | 51 | ...mapGetters(['dictData']), | ... | ... |
| ... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
| 28 | import { getLodop } from "@/utils/LodopFuncs" | 28 | import { getLodop } from "@/utils/LodopFuncs" |
| 29 | import table from "@/utils/mixin/table" | 29 | import table from "@/utils/mixin/table" |
| 30 | import { datas, sendThis } from "./dymbgl" | 30 | import { datas, sendThis } from "./dymbgl" |
| 31 | import { selectPrintTemplateList, delPrintTemplate } from "@/api/system.js" | 31 | import { selectPrintTemplateList, delPrintTemplate } from "@/api/print.js" |
| 32 | export default { | 32 | export default { |
| 33 | name: "dymbgl", | 33 | name: "dymbgl", |
| 34 | mixins: [table], | 34 | mixins: [table], | ... | ... |
| ... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
| 25 | </template> | 25 | </template> |
| 26 | 26 | ||
| 27 | <script> | 27 | <script> |
| 28 | import { addSysNotice } from "@/api/system.js" | 28 | import { addSysNotice } from "@/api/sysNotice.js" |
| 29 | import { upload } from "@/api/file.js" | 29 | import { upload } from "@/api/file.js" |
| 30 | export default { | 30 | export default { |
| 31 | props: { | 31 | props: { | ... | ... |
| ... | @@ -31,7 +31,7 @@ | ... | @@ -31,7 +31,7 @@ |
| 31 | <script> | 31 | <script> |
| 32 | import table from "@/utils/mixin/table"; | 32 | import table from "@/utils/mixin/table"; |
| 33 | import { datas, sendThis } from "./flfgdata"; | 33 | import { datas, sendThis } from "./flfgdata"; |
| 34 | import { getSysPolicyList, deleteSysNotice } from "@/api/system.js" | 34 | import { getSysPolicyList, deleteSysNotice } from "@/api/sysNotice.js" |
| 35 | import addDialog from "./components/addDialog.vue"; | 35 | import addDialog from "./components/addDialog.vue"; |
| 36 | export default { | 36 | export default { |
| 37 | name: "flfg", | 37 | name: "flfg", | ... | ... |
| ... | @@ -117,7 +117,7 @@ | ... | @@ -117,7 +117,7 @@ |
| 117 | </template> | 117 | </template> |
| 118 | 118 | ||
| 119 | <script> | 119 | <script> |
| 120 | import { updateSysSqywmbsz, getSysSqywmbszDetailById } from '@/api/system' | 120 | import { updateSysSqywmbsz, getSysSqywmbszDetailById } from '@/api/sysSqywmbsz' |
| 121 | export default { | 121 | export default { |
| 122 | props: { | 122 | props: { |
| 123 | formData: { | 123 | formData: { | ... | ... |
| ... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
| 32 | </template> | 32 | </template> |
| 33 | <script> | 33 | <script> |
| 34 | import { mapGetters } from 'vuex' | 34 | import { mapGetters } from 'vuex' |
| 35 | import { sysSqywmbszSearch } from '@/api/system' | 35 | import { sysSqywmbszSearch } from '@/api/sysSqywmbsz' |
| 36 | import table from "@/utils/mixin/table" | 36 | import table from "@/utils/mixin/table" |
| 37 | import { datas, sendThis } from "./qtjfjmb" | 37 | import { datas, sendThis } from "./qtjfjmb" |
| 38 | export default { | 38 | export default { | ... | ... |
| ... | @@ -54,7 +54,7 @@ | ... | @@ -54,7 +54,7 @@ |
| 54 | </el-form> | 54 | </el-form> |
| 55 | </template> | 55 | </template> |
| 56 | <script> | 56 | <script> |
| 57 | import { addSysNotice, updateSysNotice } from "@/api/system.js"; | 57 | import { addSysNotice, updateSysNotice } from "@/api/sysNotice.js"; |
| 58 | import { upload } from "@/api/file.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 { | ... | ... |
| ... | @@ -39,7 +39,7 @@ | ... | @@ -39,7 +39,7 @@ |
| 39 | <script> | 39 | <script> |
| 40 | import table from "@/utils/mixin/table"; | 40 | import table from "@/utils/mixin/table"; |
| 41 | import { datas, sendThis } from "./xttzdata"; | 41 | import { datas, sendThis } from "./xttzdata"; |
| 42 | import { getSysNoticeList, deleteSysNotice, publishNotice, unPublishNotice } from "@/api/system.js" | 42 | import { getSysNoticeList, deleteSysNotice, publishNotice, unPublishNotice } from "@/api/sysNotice.js" |
| 43 | import addDialog from "./components/addDialog.vue"; | 43 | import addDialog from "./components/addDialog.vue"; |
| 44 | export default { | 44 | export default { |
| 45 | name: "xttz", | 45 | name: "xttz", | ... | ... |
| ... | @@ -31,7 +31,7 @@ | ... | @@ -31,7 +31,7 @@ |
| 31 | <script> | 31 | <script> |
| 32 | import table from "@/utils/mixin/table"; | 32 | import table from "@/utils/mixin/table"; |
| 33 | import { datas, sendThis } from "./xttzviewdata"; | 33 | import { datas, sendThis } from "./xttzviewdata"; |
| 34 | import { getSysNoticeList, setReadStatus, setAllRead } from "@/api/system.js" | 34 | import { getSysNoticeList, setReadStatus, setAllRead } from "@/api/sysNotice.js" |
| 35 | import addDialog from "./components/addDialog.vue"; | 35 | import addDialog from "./components/addDialog.vue"; |
| 36 | export default { | 36 | export default { |
| 37 | name: "xttzview", | 37 | name: "xttzview", | ... | ... |
| ... | @@ -3,7 +3,7 @@ | ... | @@ -3,7 +3,7 @@ |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 11:06:42 | 4 | * @LastEditTime: 2023-07-13 11:06:42 |
| 5 | */ | 5 | */ |
| 6 | import { getPrintTemplateByCode } from "@/api/system"; | 6 | import { getPrintTemplateByCode } from "@/api/print"; |
| 7 | import { uploadUndo } from "@/api/clxx"; | 7 | import { uploadUndo } from "@/api/clxx"; |
| 8 | import { getLodop } from "@/utils/LodopFuncs" | 8 | import { getLodop } from "@/utils/LodopFuncs" |
| 9 | import { | 9 | import { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-04-13 10:32:28 | 4 | * @LastEditTime: 2023-04-13 10:32:28 |
| 5 | --> | 5 | --> |
| ... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
| 40 | <script> | 40 | <script> |
| 41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
| 42 | import { datas, sendThis } from "./cwrzdata" | 42 | import { datas, sendThis } from "./cwrzdata" |
| 43 | import { getErrorLogList } from "@/api/xtjk.js" | 43 | import { getErrorLogList } from "@/api/view.js" |
| 44 | export default { | 44 | export default { |
| 45 | name: "cwrz", | 45 | name: "cwrz", |
| 46 | components: {}, | 46 | components: {}, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-04-13 10:31:33 | 4 | * @LastEditTime: 2023-04-13 10:31:33 |
| 5 | --> | 5 | --> |
| ... | @@ -40,7 +40,7 @@ | ... | @@ -40,7 +40,7 @@ |
| 40 | <script> | 40 | <script> |
| 41 | import table from "@/utils/mixin/table" | 41 | import table from "@/utils/mixin/table" |
| 42 | import { datas, sendThis } from "./czrzdata" | 42 | import { datas, sendThis } from "./czrzdata" |
| 43 | import { getOperationLogList } from "@/api/xtjk.js" | 43 | import { getOperationLogList } from "@/api/view.js" |
| 44 | export default { | 44 | export default { |
| 45 | name: "czrz", | 45 | name: "czrz", |
| 46 | components: {}, | 46 | components: {}, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-05-17 10:42:27 | 4 | * @LastEditTime: 2023-05-17 10:42:27 |
| 5 | --> | 5 | --> |
| ... | @@ -146,7 +146,7 @@ | ... | @@ -146,7 +146,7 @@ |
| 146 | </template> | 146 | </template> |
| 147 | <script> | 147 | <script> |
| 148 | import table from "@/utils/mixin/table" | 148 | import table from "@/utils/mixin/table" |
| 149 | import { getServerInfo } from "@/api/xtjk.js" | 149 | import { getServerInfo } from "@/api/view.js" |
| 150 | export default { | 150 | export default { |
| 151 | name: "zjjk", | 151 | name: "zjjk", |
| 152 | components: {}, | 152 | components: {}, | ... | ... |
| ... | @@ -104,7 +104,7 @@ | ... | @@ -104,7 +104,7 @@ |
| 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 } from "@/api/ywbl"; | 107 | import { searchTaskToDo } from "@/api/workflow/search.js"; |
| 108 | import { judgeUserTaskPermission, deleteFlow, claimTask } from "@/api/workFlow.js"; | 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 { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-06-30 17:09:35 | 4 | * @LastEditTime: 2023-06-30 17:09:35 |
| 5 | --> | 5 | --> |
| ... | @@ -60,7 +60,7 @@ | ... | @@ -60,7 +60,7 @@ |
| 60 | </template> | 60 | </template> |
| 61 | 61 | ||
| 62 | <script> | 62 | <script> |
| 63 | import { getFdcqLSInfo } from "@/api/registerBook.js"; | 63 | import { getFdcqLSInfo } from "@/api/djbDetail.js"; |
| 64 | import { datas } from "@/views/registerBook/qlxxFormData.js"; | 64 | import { datas } from "@/views/registerBook/qlxxFormData.js"; |
| 65 | 65 | ||
| 66 | export default { | 66 | export default { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 16:31:05 | 4 | * @LastEditTime: 2023-07-13 16:31:05 |
| 5 | --> | 5 | --> |
| ... | @@ -130,7 +130,7 @@ | ... | @@ -130,7 +130,7 @@ |
| 130 | import searchMin from "../components/mixin/index"; | 130 | import searchMin from "../components/mixin/index"; |
| 131 | import table from "@/utils/mixin/table"; | 131 | import table from "@/utils/mixin/table"; |
| 132 | import { datas, sendThis } from "./ybxdata"; | 132 | import { datas, sendThis } from "./ybxdata"; |
| 133 | import { searchTaskDone } from "@/api/ywbl"; | 133 | import { searchTaskDone } from "@/api/workflow/search.js"; |
| 134 | import searchBox from "../components/search.vue"; | 134 | import searchBox from "../components/search.vue"; |
| 135 | export default { | 135 | export default { |
| 136 | name: "ybx", | 136 | name: "ybx", | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 14:47:30 | 4 | * @LastEditTime: 2023-07-13 14:47:30 |
| 5 | --> | 5 | --> |
| ... | @@ -79,7 +79,7 @@ | ... | @@ -79,7 +79,7 @@ |
| 79 | import { ywPopupDialog } from "@/utils/popup.js"; | 79 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 80 | import { datas, sendThis } from "../javascript/cfdj.js"; | 80 | import { datas, sendThis } from "../javascript/cfdj.js"; |
| 81 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 81 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 82 | import { selectCfdj } from "@/api/ywbl.js"; | 82 | import { selectCfdj } from "@/api/ywsq.js"; |
| 83 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; | 83 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; |
| 84 | export default { | 84 | export default { |
| 85 | props: { | 85 | props: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 14:47:36 | 4 | * @LastEditTime: 2023-07-13 14:47:36 |
| 5 | --> | 5 | --> |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | import { ywPopupDialog } from "@/utils/popup.js"; | 66 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 67 | import { datas, sendThis } from "../javascript/diyaq.js"; | 67 | import { datas, sendThis } from "../javascript/diyaq.js"; |
| 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 69 | import { selectDiyaq } from "@/api/ywbl.js"; | 69 | import { selectDiyaq } from "@/api/ywsq.js"; |
| 70 | import { startBusinessFlow } from "@/api/workFlow.js"; | 70 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 71 | export default { | 71 | export default { |
| 72 | mixins: [table, jump], | 72 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:23:28 | 4 | * @LastEditTime: 2023-07-13 15:23:28 |
| 5 | --> | 5 | --> |
| ... | @@ -133,7 +133,7 @@ | ... | @@ -133,7 +133,7 @@ |
| 133 | import { ywPopupDialog } from "@/utils/popup.js"; | 133 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 134 | import { datas, sendThis } from "../javascript/fwsyq.js"; | 134 | import { datas, sendThis } from "../javascript/fwsyq.js"; |
| 135 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; | 135 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; |
| 136 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywbl.js"; | 136 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; |
| 137 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; | 137 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; |
| 138 | export default { | 138 | export default { |
| 139 | mixins: [table, jump], | 139 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:23:44 | 4 | * @LastEditTime: 2023-07-13 15:23:44 |
| 5 | --> | 5 | --> |
| ... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
| 52 | import { ywPopupDialog } from "@/utils/popup.js"; | 52 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 53 | import { datas, sendThis } from "../javascript/nydsyq100.js"; | 53 | import { datas, sendThis } from "../javascript/nydsyq100.js"; |
| 54 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 54 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 55 | import { selectZdjbxx } from "@/api/ywbl.js"; | 55 | import { selectZdjbxx } from "@/api/ywsq.js"; |
| 56 | import { startBusinessFlow } from "@/api/workFlow.js"; | 56 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 57 | export default { | 57 | export default { |
| 58 | mixins: [table, jump], | 58 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:23:51 | 4 | * @LastEditTime: 2023-07-13 15:23:51 |
| 5 | --> | 5 | --> |
| ... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
| 52 | import { ywPopupDialog } from "@/utils/popup.js"; | 52 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 53 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; | 53 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; |
| 54 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 54 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 55 | import { selectNydsyqQlxx } from "@/api/ywbl.js"; | 55 | import { selectNydsyqQlxx } from "@/api/ywsq.js"; |
| 56 | import { startBusinessFlow } from "@/api/workFlow.js"; | 56 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 57 | export default { | 57 | export default { |
| 58 | mixins: [table, jump], | 58 | mixins: [table, jump], | ... | ... |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | import { ywPopupDialog } from "@/utils/popup.js"; | 66 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 67 | import { datas, sendThis } from "../javascript/selecBdcql.js"; | 67 | import { datas, sendThis } from "../javascript/selecBdcql.js"; |
| 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 69 | import { selectQlxx } from "@/api/ywbl.js"; | 69 | import { selectQlxx } from "@/api/ywsq.js"; |
| 70 | import { startBusinessFlow } from "@/api/workFlow.js"; | 70 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 71 | import { getQllxByBsmSqyw } from "@/api/sysSqdjyw.js"; | 71 | import { getQllxByBsmSqyw } from "@/api/sysSqdjyw.js"; |
| 72 | export default { | 72 | export default { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:26:46 | 4 | * @LastEditTime: 2023-07-13 15:26:46 |
| 5 | --> | 5 | --> |
| ... | @@ -62,7 +62,7 @@ | ... | @@ -62,7 +62,7 @@ |
| 62 | import { ywPopupDialog } from "@/utils/popup.js"; | 62 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 63 | import { startRepairFlow } from "@/api/workFlow.js"; | 63 | import { startRepairFlow } from "@/api/workFlow.js"; |
| 64 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; | 64 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; |
| 65 | import { selectRepairQlxx } from "@/api/selectQlxx.js"; | 65 | import { selectRepairQlxx } from "@/api/ywsq.js"; |
| 66 | import jump from "../components/mixin/djbbljump"; | 66 | import jump from "../components/mixin/djbbljump"; |
| 67 | export default { | 67 | export default { |
| 68 | name: "djbcx", | 68 | name: "djbcx", | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:26:51 | 4 | * @LastEditTime: 2023-07-13 15:26:51 |
| 5 | --> | 5 | --> |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; | 59 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; |
| 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 61 | import { selectFwsyq } from "@/api/ywbl.js"; | 61 | import { selectFwsyq } from "@/api/ywsq.js"; |
| 62 | import { startBusinessFlow } from "@/api/workFlow.js"; | 62 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:26:55 | 4 | * @LastEditTime: 2023-07-13 15:26:55 |
| 5 | --> | 5 | --> |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { datas, sendThis } from "../javascript/selectH.js"; | 59 | import { datas, sendThis } from "../javascript/selectH.js"; |
| 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 61 | import { selectHQjdc } from "@/api/ywbl.js"; | 61 | import { selectHQjdc } from "@/api/ywsq.js"; |
| 62 | import { startBusinessFlow } from "@/api/workFlow.js"; | 62 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:27:00 | 4 | * @LastEditTime: 2023-07-13 15:27:00 |
| 5 | --> | 5 | --> |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | import { ywPopupDialog } from "@/utils/popup.js"; | 66 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 67 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; | 67 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; |
| 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 69 | import { selectJsydQlxx } from "@/api/ywbl.js"; | 69 | import { selectJsydQlxx } from "@/api/ywsq.js"; |
| 70 | import { startBusinessFlow } from "@/api/workFlow.js"; | 70 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 71 | export default { | 71 | export default { |
| 72 | mixins: [table, jump], | 72 | mixins: [table, jump], | ... | ... |
| ... | @@ -144,7 +144,7 @@ | ... | @@ -144,7 +144,7 @@ |
| 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 { selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMergeLast } from "@/api/ywbl.js"; | 147 | import { selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMergeLast } from "@/api/ywsq.js"; |
| 148 | import { startBusinessFlow } from "@/api/workFlow.js"; | 148 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 149 | export default { | 149 | export default { |
| 150 | mixins: [table, jump], | 150 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:27:13 | 4 | * @LastEditTime: 2023-07-13 15:27:13 |
| 5 | --> | 5 | --> |
| ... | @@ -56,7 +56,7 @@ | ... | @@ -56,7 +56,7 @@ |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import table from "@/utils/mixin/table"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { selectZdjbxx } from "@/api/ywbl.js"; | 59 | import { selectZdjbxx } from "@/api/ywsq.js"; |
| 60 | import { startBusinessFlow } from "@/api/workFlow.js"; | 60 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | 61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; |
| 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:27:16 | 4 | * @LastEditTime: 2023-07-13 15:27:16 |
| 5 | --> | 5 | --> |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | import { ywPopupDialog } from "@/utils/popup.js"; | 66 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 67 | import { datas, sendThis } from "../javascript/selectTdsyq.js"; | 67 | import { datas, sendThis } from "../javascript/selectTdsyq.js"; |
| 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 69 | import { selectTdsyqQlxx } from "@/api/ywbl.js"; | 69 | import { selectTdsyqQlxx } from "@/api/ywsq.js"; |
| 70 | import { startBusinessFlow } from "@/api/workFlow.js"; | 70 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 71 | export default { | 71 | export default { |
| 72 | mixins: [table, jump], | 72 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:27:19 | 4 | * @LastEditTime: 2023-07-13 15:27:19 |
| 5 | --> | 5 | --> |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 59 | import table from "@/utils/mixin/table"; | 59 | import table from "@/utils/mixin/table"; |
| 60 | import jump from "./mixin/jump"; | 60 | import jump from "./mixin/jump"; |
| 61 | import { selectYgdj200 } from "@/api/ywbl.js"; | 61 | import { selectYgdj200 } from "@/api/ywsq.js"; |
| 62 | import { startBusinessFlow } from "@/api/workFlow.js"; | 62 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:27:26 | 4 | * @LastEditTime: 2023-07-13 15:27:26 |
| 5 | --> | 5 | --> |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 59 | import table from "@/utils/mixin/table"; | 59 | import table from "@/utils/mixin/table"; |
| 60 | import jump from "./mixin/jump"; | 60 | import jump from "./mixin/jump"; |
| 61 | import { selectYgdy } from "@/api/ywbl.js"; | 61 | import { selectYgdy } from "@/api/ywsq.js"; |
| 62 | import { startBusinessFlow } from "@/api/workFlow.js"; | 62 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [table, jump], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-13 15:27:34 | 4 | * @LastEditTime: 2023-07-13 15:27:34 |
| 5 | --> | 5 | --> |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 58 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 59 | import table from "@/utils/mixin/table"; | 59 | import table from "@/utils/mixin/table"; |
| 60 | import jump from "./mixin/jump"; | 60 | import jump from "./mixin/jump"; |
| 61 | import { selectHQjdc } from "@/api/ywbl.js"; | 61 | import { selectHQjdc } from "@/api/ywsq.js"; |
| 62 | import { startBusinessFlow } from "@/api/workFlow.js"; | 62 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [table, jump], | ... | ... |
| ... | @@ -91,7 +91,7 @@ | ... | @@ -91,7 +91,7 @@ |
| 91 | </div> | 91 | </div> |
| 92 | </template> | 92 | </template> |
| 93 | <script> | 93 | <script> |
| 94 | import { getCollectBiz, getleftMenu, getNextNode, getRepairBiz, getTogetherBiz, addCollectBiz, deleteCollectBiz } from "@/api/ywbl" | 94 | import { getCollectBiz, getleftMenu, getNextNode, getRepairBiz, getTogetherBiz, addCollectBiz, deleteCollectBiz } from "@/api/businessApply.js" |
| 95 | export default { | 95 | export default { |
| 96 | data () { | 96 | data () { |
| 97 | return { | 97 | return { | ... | ... |
| ... | @@ -42,7 +42,7 @@ | ... | @@ -42,7 +42,7 @@ |
| 42 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100"> | 42 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100"> |
| 43 | </el-input> | 43 | </el-input> |
| 44 | </el-form-item> | 44 | </el-form-item> |
| 45 | </el-col> | 45 | </el-col> |
| 46 | </el-row> | 46 | </el-row> |
| 47 | <el-row> | 47 | <el-row> |
| 48 | <el-col :span="5"> | 48 | <el-col :span="5"> |
| ... | @@ -92,7 +92,7 @@ | ... | @@ -92,7 +92,7 @@ |
| 92 | import { mapGetters } from "vuex"; | 92 | import { mapGetters } from "vuex"; |
| 93 | import table from "@/utils/mixin/table"; | 93 | import table from "@/utils/mixin/table"; |
| 94 | import { datas, sendThis } from "./djbcxdata"; | 94 | import { datas, sendThis } from "./djbcxdata"; |
| 95 | import { getDjbBysearch } from "@/api/zhcx.js"; | 95 | import { getDjbBysearch } from "@/api/search.js"; |
| 96 | 96 | ||
| 97 | export default { | 97 | export default { |
| 98 | name: "djbcx", | 98 | name: "djbcx", | ... | ... |
| ... | @@ -83,7 +83,7 @@ | ... | @@ -83,7 +83,7 @@ |
| 83 | import { mapGetters } from 'vuex' | 83 | import { mapGetters } from 'vuex' |
| 84 | import table from "@/utils/mixin/table"; | 84 | import table from "@/utils/mixin/table"; |
| 85 | import { datas, sendThis } from "./jdcxdata"; | 85 | import { datas, sendThis } from "./jdcxdata"; |
| 86 | import { getJdcxBysearch } from "@/api/zhcx.js" | 86 | import { getJdcxBysearch } from "@/api/search.js" |
| 87 | export default { | 87 | export default { |
| 88 | name: "jdcx", | 88 | name: "jdcx", |
| 89 | components: {}, | 89 | components: {}, | ... | ... |
| ... | @@ -50,8 +50,8 @@ | ... | @@ -50,8 +50,8 @@ |
| 50 | <script> | 50 | <script> |
| 51 | import table from "@/utils/mixin/table"; | 51 | import table from "@/utils/mixin/table"; |
| 52 | import { datas, sendThis } from "./zslqcx"; | 52 | import { datas, sendThis } from "./zslqcx"; |
| 53 | import { getBdcqzReceiveList } from "@/api/zhcx" | 53 | import { getBdcqzReceiveList } from "@/api/search.js" |
| 54 | import { bdcqzPreview } from "@/api/bdcqz" | 54 | import { bdcqzPreview } from "@/api/bdcqz.js" |
| 55 | export default { | 55 | export default { |
| 56 | components: {}, | 56 | components: {}, |
| 57 | mixins: [table], | 57 | mixins: [table], | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-06-19 13:32:04 | 4 | * @LastEditTime: 2023-06-19 13:32:04 |
| 5 | --> | 5 | --> |
| ... | @@ -48,7 +48,7 @@ | ... | @@ -48,7 +48,7 @@ |
| 48 | <script> | 48 | <script> |
| 49 | import table from "@/utils/mixin/table"; | 49 | import table from "@/utils/mixin/table"; |
| 50 | import { datas, sendThis } from "./zxgcdycx"; | 50 | import { datas, sendThis } from "./zxgcdycx"; |
| 51 | import { getZjgcdyList } from "@/api/zhcx" | 51 | import { getZjgcdyList } from "@/api/search.js" |
| 52 | export default { | 52 | export default { |
| 53 | components: {}, | 53 | components: {}, |
| 54 | mixins: [table], | 54 | mixins: [table], | ... | ... |
| ... | @@ -59,7 +59,8 @@ | ... | @@ -59,7 +59,8 @@ |
| 59 | </template> | 59 | </template> |
| 60 | 60 | ||
| 61 | <script> | 61 | <script> |
| 62 | import { getZsStartNo, getSysSerialSingle, getZsEndNo, zsff, getZsglInfo } from "@/api/zsgl.js" | 62 | import { getZsStartNo, getZsEndNo, zsff, getZsglInfo } from "@/api/zsgl.js" |
| 63 | import { getSysSerialSingle } from "@/api/sysSerial.js" | ||
| 63 | export default { | 64 | export default { |
| 64 | props: { | 65 | props: { |
| 65 | formData: { | 66 | formData: { | ... | ... |
| ... | @@ -67,7 +67,8 @@ | ... | @@ -67,7 +67,8 @@ |
| 67 | 67 | ||
| 68 | <script> | 68 | <script> |
| 69 | import store from '@/store/index.js' | 69 | import store from '@/store/index.js' |
| 70 | import { getSysSerialSingle, zsrk, getZsglInfo } from "@/api/zsgl.js" | 70 | import { zsrk, getZsglInfo } from "@/api/zsgl.js" |
| 71 | import { getSysSerialSingle } from "@/api/sysSerial.js" | ||
| 71 | export default { | 72 | export default { |
| 72 | props: { | 73 | props: { |
| 73 | formData: { | 74 | formData: { | ... | ... |
-
Please register or sign in to post a comment