|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459 |
- import request from '@/utils/request'
-
- // 查询固定资产列表
- export function permanentList(query) {
- return request({
- url: '/asset/permanent/list',
- method: 'get',
- params: query
- })
- }
- // 查询一张图
- export function pictureList(query) {
- return request({
- url: '/open/villageAffairs/public/picturePublicList',
- method: 'get',
- params: query
- })
- }
- // 新增一张图
- export function pictureAdd(data) {
- return request({
- url: '/subcontract/picture/add',
- method: 'post',
- data: data
- })
- }
- // 修改一张图
- export function pictureEdit(data) {
- return request({
- url: '/subcontract/picture/edit',
- method: 'post',
- data: data
- })
- }
-
- // 删除一张图
- export function pictureRemove(id) {
- return request({
- url: '/subcontract/picture/remove/' + id,
- method: 'get'
- })
- }
-
- // 一张图详情
- export function pictureGet(query) {
- return request({
- url: '/open/villageAffairs/public/picturePublicDetail',
- method: 'get',
- params: query
- })
- }
-
- // 查询合同
- export function otherPublicList(query) {
- return request({
- url: '/open/villageAffairs/public/otherPublicList',
- method: 'get',
- params: query
- })
- }
-
- // 合同详情
- export function otherPublicDetail(query) {
- return request({
- url: '/open/villageAffairs/public/otherPublicDetail',
- method: 'get',
- params: query
- })
- }
-
- // 删除合同
- export function otherRemove(id) {
- return request({
- url: '/subcontract/other/remove/' + id,
- method: 'get'
- })
- }
-
- // 新增一张图
- export function otherAdd(data) {
- return request({
- url: '/subcontract/other/add',
- method: 'post',
- data: data
- })
- }
-
- // 修改一张图
- export function otherEdit(data) {
- return request({
- url: '/subcontract/other/edit',
- method: 'post',
- data: data
- })
- }
-
- // 复制公开信息
- export function otherCopy(data) {
- return request({
- url: '/subcontract/other/copy',
- method: 'post',
- data: data
- });
- }
-
- // 查询合同信息列表
- export function contractionList(query) {
- return request({
- url: '/contraction/info/list',
- method: 'get',
- params: query
- })
- }
- // 查询合同结款计划列表
- export function listPlan(query) {
- return request({
- url: '/contraction/plan/list',
- method: 'get',
- params: query
- })
- }
- // 新增合同结款计划
- export function addPlan(data) {
- return request({
- url: '/contraction/plan/add',
- method: 'post',
- data: data
- })
- }
- // 修改合同结款计划
- export function updatePlan(data) {
- return request({
- url: '/contraction/plan/edit',
- method: 'post',
- data: data
- })
- }
-
- // 删除合同结款计划
- export function delPlan(id) {
- return request({
- url: '/contraction/plan/remove/' + id,
- method: 'get'
- })
- }
- // 查询合同结款计划详细
- export function getPlan(id) {
- return request({
- url: '/contraction/plan/get/' + id,
- method: 'get'
- })
- }
-
- // 新增固定资产
- export function addPermanent(data) {
- return request({
- url: '/asset/permanent/add',
- method: 'post',
- data: data
- })
- }
- // 查询固定资产详细
- export function getPermanent(id) {
- return request({
- url: '/asset/permanent/get/' + id,
- method: 'get'
- })
- }
-
- // 清除固定资产图层
- export function clearPermanentGeom(id) {
- return request({
- url: '/asset/permanent/clear/' + id,
- method: 'get'
- });
- }
-
- // 修改固定资产
- export function updatePermanent(data) {
- return request({
- url: '/asset/permanent/edit',
- method: 'post',
- data: data
- })
- }
- // 删除固定资产
- export function delPermanent(id) {
- return request({
- url: '/asset/permanent/remove/' + id,
- method: 'get'
- })
- }
- //上传全局方法附件
- export function commonAttach(data) {
- return request({
- url: '/common/attach',
- method: 'post',
- header: { "Content-Type": 'application/x-www-form-urlencoded' },
- data: data
- })
- }
- //上传全局方法附件
- export function commonUpload(data) {
- return request({
- url: '/common/upload',
- method: 'post',
- header: { "Content-Type": 'application/x-www-form-urlencoded' },
- data: data
- })
- }
- //查询已上传附件
- export const attachmentList = (data) => {
- return request({
- url: '/system/attachment/query',
- method: 'get',
- params: data
- })
- }
- //删除已上传附件
- export function systemAttachment(ids) {
- if (ids != undefined) {
- return request({
- url: '/system/attachment/remove/' + ids,
- method: 'get'
- })
- }
- }
- // 新增合同信息
- export function addInfo(data) {
- return request({
- url: '/contraction/info/add',
- method: 'post',
- data: data
- })
- }
- // 查询合同信息详细
- export function getInfo(id) {
- return request({
- url: '/contraction/info/get/' + id,
- method: 'get'
- })
- }
- // 删除合同信息
- export function delInfo(id) {
- return request({
- url: '/contraction/info/remove/' + id,
- method: 'get'
- })
- }
- // 修改合同信息
- export function updateInfo(data) {
- return request({
- url: '/contraction/info/edit',
- method: 'post',
- data: data
- })
- }
- // 财务公开列表
- export function financePublicList(query) {
- return request({
- url: '/open/villageAffairs/public/financePublicList',
- method: 'get',
- params: query
- })
- }
- // 零工公开列表
- export function tempWorkerPublicList(query) {
- return request({
- url: '/open/villageAffairs/public/tempWorkerPublicList',
- method: 'get',
- params: query
- })
- }
- // 重大事项公开列表
- export function majorEventPublicList(query) {
- return request({
- url: '/open/villageAffairs/public/majorEventPublicList',
- method: 'get',
- params: query
- })
- }
- // 重要事项公开列表
- export function importantList(query) {
- return request({
- url: '/open/villageAffairs/public/importantList',
- method: 'get',
- params: query
- })
- }
- // 重要事项公开详情
- export function importantDetail(query) {
- return request({
- url: '/open/villageAffairs/public/importantDetail',
- method: 'get',
- params: query
- })
- }
- // 重要事项公开新增
- export function subcontractAdd(data) {
- return request({
- url: '/subcontract/event/add',
- method: 'post',
- data: data
- })
- }
- // 重要事项公开修改
- export function subcontractEdit(data) {
- return request({
- url: '/subcontract/event/edit',
- method: 'post',
- data: data
- })
- }
- // 重要事项公开删除
- export function subcontractRemove(id) {
- return request({
- url: '/subcontract/event/remove/' + id,
- method: 'get'
- })
- }
- // 财务公开详情
- export function financePublicDetail(query) {
- return request({
- url: '/open/villageAffairs/public/financePublicDetail',
- method: 'get',
- params: query
- })
- }
- // 零工公开详情
- export function tempWorkerPublicDetail(query) {
- return request({
- url: '/open/villageAffairs/public/tempWorkerPublicDetail',
- method: 'get',
- params: query
- })
- }
- // 重大事项公开详情
- export function majorEventPublicDetail(query) {
- return request({
- url: '/open/villageAffairs/public/majorEventPublicDetail',
- method: 'get',
- params: query
- })
- }
-
- //获取区、镇、村地区
- export function treeselectByUser(query) {
- return request({
- url: '/system/dept/treeselectByUser',
- method: 'get',
- params: query
- })
- }
-
- // 查询部门下拉树结构
- export function treeselect() {
- return request({
- url: '/open/depositm/dept/treeselect',
- method: 'get'
- })
- }
-
- //获取账套列表
- export function listByDeptId(query) {
- return request({
- url: '/finance/book/listByDeptId',
- method: 'get',
- params: query
- })
- }
-
- // 切换部门
- export function changeDept(query) {
- return request({
- url: '/system/user/changeDept',
- method: 'get',
- params: query
- })
- }
- // 切换账套
- export function changeBook(query) {
- return request({
- url: '/system/user/changeBook',
- method: 'get',
- params: query
- })
- }
- // 财务公开新增
- export function openAdd(data) {
- return request({
- url: '/open/open/add',
- method: 'post',
- data: data
- })
- }
- // 财务公开修改
- export function openEdit(data) {
- return request({
- url: '/open/open/edit',
- method: 'post',
- data: data
- })
- }
- // 零工公开新增
- export function tempWorkerOpenAdd(data) {
- return request({
- url: '/subcontract/tempWorkerOpen/add',
- method: 'post',
- data: data
- })
- }
- // 零工公开修改
- export function tempWorkerOpenEdit(data) {
- return request({
- url: '/subcontract/tempWorkerOpen/edit',
- method: 'post',
- data: data
- })
- }
- // 重大事项新增
- export function majorEventOpenAdd(data) {
- return request({
- url: '/subcontract/majorEventOpen/add',
- method: 'post',
- data: data
- })
- }
- // 重大事项修改
- export function majorEventOpenEdit(data) {
- return request({
- url: '/subcontract/majorEventOpen/edit',
- method: 'post',
- data: data
- })
- }
- // 财务公开删除
- export function openRemove(id) {
- return request({
- url: '/open/open/remove/' + id,
- method: 'get'
- })
- }
- // 零工公开删除
- export function tempWorkerOpenRemove(id) {
- return request({
- url: '/subcontract/tempWorkerOpen/remove/' + id,
- method: 'get'
- })
- }
- // 零工公开删除
- export function majorEventOpenRemove(id) {
- return request({
- url: '/subcontract/majorEventOpen/remove/' + id,
- method: 'get'
- })
- }
-
- // 查询零工登记列表
- export function listOddjob(query) {
- return request({
- url: '/open/villageAffairs/public/oddjobList',
- method: 'get',
- params: query
- })
- }
-
- // 查询零工登记详细
- export function getOddjobDetail(bookId, id) {
- return request({
- url: '/open/villageAffairs/public/oddjobDetail',
- method: 'get',
- params: {bookId, id},
- })
- }
-
- // 新增零工登记
- export function addOddjob(data) {
- return request({
- url: '/subcontract/oddjob/add',
- method: 'post',
- data: data
- })
- }
-
- // 修改零工登记
- export function updateOddjob(data) {
- return request({
- url: '/subcontract/oddjob/edit',
- method: 'post',
- data: data
- })
- }
-
- // 查询零工登记详细
- export function getOddjob(id) {
- return request({
- url: '/subcontract/oddjob/get/' + id,
- method: 'get'
- })
- }
-
- // 删除零工登记
- export function delOddjob(id) {
- return request({
- url: '/subcontract/oddjob/remove/' + id,
- method: 'get'
- })
- }
-
- // 财务公开榜
- export function financialAmountPublicMonthList(query) {
- return request({
- url: '/open/villageAffairs/public/financialAmountPublicMonthList',
- method: 'get',
- params: query // ?bookId=<账套ID 必填>&yearMonth=<查询年月 必填 yyyy-MM>
- })
- }
-
- // 查询用户个人信息
- export function getUserProfile() {
- return request({
- url: '/system/user/profile/get',
- method: 'get'
- })
- }
-
- // 修改用户个人信息
- export function updateUserProfile(data) {
- return request({
- url: '/system/user/profile/edit',
- method: 'post',
- data: data
- })
- }
-
- // 用户密码重置
- export function updateUserPwd(oldPassword, newPassword) {
- const data = {
- oldPassword,
- newPassword
- }
- return request({
- url: '/system/user/profile/updatePwd',
- method: 'post',
- params: data
- })
- }
-
- // 查询账套基本信息
- export function bookInfo(bookId) {
- return request({
- url: `/open/villageAffairs/public/bookInfo/${bookId}`,
- method: 'get',
- })
- }
-
- // 查询科目余额表 可分页 需授权
- export function trailBalanceList(query) {
- return request({
- url: '/finance/balance/list',
- method: 'get',
- params: query // ?startDate=<开始年月 yyyy-MM>&startSubjectId=<起始科目ID>&endSubjectId=<结束科目ID 如果需要查询单个科目 则设置为和startSubjectId一样即可>&filterZero=<bool 是否过滤掉余额为0结果>&showSubSubject=<bool 是否显示下级科目>&分页参数...
- })
- }
-
- export function getLoginBook() {
- return request({
- url: '/finance/book/getLoginBook',
- method: 'get'
- })
- }
-
- // 查询投票主题列表
- export function listPoll(deptId , query) {
- return request({
- url: `/open/villageAffairs/public/poll/list/${deptId}`,
- method: 'get',
- params: query
- })
- }
-
- // 姓名, 账套ID, 身份证, 返回里会有个id字段
- export function checkFarmer(data) {
- return request({
- url: '/register/checkFarmer',
- method: 'post',
- data: data,
- })
- }
-
- // 是否允许人脸验证
- export function allowFaceVerify() {
- return request({
- url: '/register/face/verified/allow',
- method: 'get'
- })
- }
-
- // 查询投票主题详细
- export function getPoll(id) {
- return request({
- url: `/open/villageAffairs/public/poll/detail/${id}`,
- method: 'get'
- })
- }
-
- // 投票 id为主题ID, option为投票选项ID, 多个用,分隔, userId为认证后的农户ID
- export function votePoll(id, data) {
- return request({
- url: `/open/villageAffairs/public/poll/vote/${id}`,
- method: 'post',
- params: data,
- })
- }
-
- // 新增投票主题
- export function addPoll(data) {
- return request({
- url: '/poll/poll/add',
- method: 'post',
- data: data
- })
- }
-
- // 修改投票主题
- export function updatePoll(data) {
- return request({
- url: '/poll/poll/edit',
- method: 'post',
- data: data
- })
- }
-
- // 删除投票主题
- export function delPoll(id) {
- return request({
- url: '/poll/poll/remove/' + id,
- method: 'get'
- })
- }
-
- // 发布投票主题
- export function publicPoll(id) {
- return request({
- url: '/poll/poll/publicPoll/'+ id,
- method: 'get'
- })
- }
-
- // 获取会计科目列表
- export const subjectData = (query) => {
- return request({
- url: '/finance/subject/listAll',
- method: 'get',
- params: query
- })
- }
-
- //普通明细账接口
- export function listNormalDetails(query) {
- return request({
- url: '/finance/balance/listNormalDetails',
- method: 'get',
- params: query
- })
- }
- //查询凭证信息明细
- export const voucherDetail = (data) => {
- return request({
- url: '/finance/voucher/detail',
- method: 'get',
- params: data
- })
- }
-
- //统计填报列表数据
- export const statisticsList = (data) => {
- return request({
- url: '/entity/statistics/list',
- method: 'get',
- params: data
- })
- }
-
- // 删除统计填报列表数据
- export function delStatisticsRemove(id) {
- return request({
- url: '/entity/statistics/remove/' + id,
- method: 'get'
- })
- }
-
- //统计填报 - 模板
- export const entityStatisticsTemplate = (data) => {
- return request({
- url: '/entity/statistics/entityStatisticsTemplate',
- method: 'get',
- params: data
- })
- }
-
- //统计填报 -保存模板
- export const entityStatisticsSave = (data) => {
- return request({
- url: '/entity/statistics/save',
- method: 'post',
- data: data
- })
- }
-
- //统计填报 - 编辑
- export const entityStatisticsDetail = (id) => {
- return request({
- url: '/entity/statistics/detail/'+id,
- method: 'get'
- })
- }
-
- //阳光村务请求菜单
- export function menus(query) {
- return request({
- url: '/system/mobile/menus',
- method: 'get',
- params: query
- })
- }
-
- //阳光村务请求菜单
- export function nologinMenus(query) {
- return request({
- url: '/open/system/mobile/nologinMenus',
- method: 'get',
- params: query
- })
- }
-
- //公章
- export function current(query) {
- return request({
- url: '/system/dept/get/current',
- method: 'get',
- params: query
- })
- }
-
- //公章
- export function updateSeal(data) {
- return request({
- url: '/system/dept/updateSeal/seal',
- method: 'post',
- data: data
- })
- }
-
- //公章
- export function updateSeal2(data) {
- return request({
- url: '/system/dept/updateSeal/seal2',
- method: 'post',
- data: data
- })
- }
-
- //甲方合同网签
- export function contractFirstList(query) {
- return request({
- url: '/transaction/contract/firstList',
- method: 'get',
- params: query
- })
- }
-
- //乙方合同网签
- export function contractSecondList(query) {
- return request({
- url: '/transaction/contract/secondList',
- method: 'get',
- params: query
- })
- }
-
- //签名
- export function signFirst(data,id) {
- return request({
- url: '/transaction/contract/sign/first/'+id,
- method: 'post',
- data: data
- })
- }
-
- //签名
- export function signSecond(data,id) {
- return request({
- url: '/transaction/contract/sign/second/'+id,
- method: 'post',
- data: data
- })
- }
-
- //甲方合同网签详情
- export function contractGet(query,id) {
- return request({
- url: '/transaction/contract/get/'+id,
- method: 'get',
- params:query
- })
- }
-
- //线下合同附件列表
- export function contractFileList(id) {
- return request({
- url: '/transaction/website/contractFileList/id/'+id,
- method: 'get',
- })
- }
-
- //线上合同预览
- export function previewContractFile(id) {
- return request({
- url: '/transaction/website/previewContractFile/id/'+id,
- method: 'get',
- })
- }
-
- // 查询多标段合同列表
- export function listMultiplelots(query) {
- return request({
- url: '/transaction/multiplelots/list',
- method: 'get',
- params: query
- })
- }
-
- // 查询多标段合同详情
- export function getMultiplelots(query, id) {
- return request({
- url: '/transaction/multiplelots/get/' + id,
- method: 'get',
- params: query
- })
- }
-
- // 标段合同甲方签字
- export function multipleLotsFirstSign(data, id) {
- return request({
- url: '/transaction/multiplelots/firstSign/' + id,
- method: 'post',
- data: data
- })
- }
-
- // 查询标段农户信息
- export function listMultipleLotsNh(query) {
- return request({
- url: '/open/home/mobile/multipleLotsNh/list',
- method: 'get',
- params: query
- })
- }
-
- // 查询标段农户详情
- export function getMultiplelotsNh(query, id) {
- return request({
- url: '/open/home/mobile/multipleLotsNh/get/' + id,
- method: 'get',
- params: query
- })
- }
-
- // 标段合同乙方签字
- export function multipleLotsSecondSign(data, id) {
- return request({
- url: '/open/home/mobile/multiplelotsnh/secondSign/' + id,
- method: 'post',
- data: data
- })
- }
-
- // 查询承包合同列表
- export function listCbht(query) {
- return request({
- url: '/service/cbht/list',
- method: 'get',
- params: query
- })
- }
-
- // 承包合同甲方签名
- export function cbhtFirstSign(data,id) {
- return request({
- url: '/open/home/mobile/cbht/sign/first/' + id,
- method: 'post',
- data: data
- })
- }
-
- // 签字流程归档
- export function signProcessArchive(id) {
- return request({
- url: '/service/cbht/sign/archive/' + id,
- method: 'get'
- });
- }
-
- // 签署合同下载
- export function signedContractDownload(id) {
- return request({
- url: '/open/villageAffairs/public/sign/download/' + id,
- method: 'get'
- });
- }
-
- // 签字合同预览
- export function viewSignedContract(id) {
- return request({
- url: '/open/villageAffairs/public/sign/view/' + id,
- method: 'get'
- });
- }
-
- // 查询承包合同详细
- export function getCbht(query, id) {
- return request({
- url: '/open/home/mobile/cbht/get/' + id,
- method: 'get',
- params: query
- })
- }
-
- // 查询承包方信息
- export function getCbf(idcard) {
- return request({
- url: '/open/home/mobile/cbf/get/' + idcard,
- method: 'get'
- })
- }
-
- // 查询承包合同信息
- export function getCbhtList(query) {
- return request({
- url: '/open/home/mobile/cbht/list',
- method: 'get',
- params: query
- })
- }
-
- // 承包合同乙方签名
- export function cbhtSecondSign(data,id) {
- return request({
- url: '/open/home/mobile/cbht/sign/second/' + id,
- method: 'post',
- data: data
- })
- }
- // 承包方公示结果签字
- export function updateGsjgSign(data) {
- return request({
- url: '/open/home/mobile/updateGsjgSign',
- method: 'post',
- data: data
- })
- }
-
- // 附件查询
- export function attachmentQuery(query) {
- return request({
- url: '/open/home/mobile/attach/query',
- method: 'get',
- params: query
- })
- }
-
- // 附件删除
- export function attachmentRemove(ids) {
- return request({
- url: '/open/home/mobile/attach/remove/' + ids,
- method: 'get'
- })
- }
-
- // 附件上传
- export function attachmentUpload(data) {
- return request({
- url: '/open/home/mobile/common/attach',
- method: 'post',
- header: { "Content-Type": 'application/x-www-form-urlencoded' },
- data: data
- })
- }
-
- // 附件上传
- export function publicUpload(data) {
- return request({
- url: '/open/villageAffairs/public/upload',
- method: 'post',
- header: { "Content-Type": 'application/x-www-form-urlencoded' },
- data: data
- })
- }
-
- // 投诉建议列表
- export function adviceList(query) {
- return request({
- url: '/open/villageAffairs/public/adviceList',
- method: 'get',
- params: query
- })
- }
-
- // 新增投诉建议
- export function addAdvice(data) {
- return request({
- url: '/open/villageAffairs/public/addAdvice',
- method: 'post',
- data: data
- })
- }
-
- // 投诉建议详情
- export function getAdvice(id) {
- return request({
- url: '/open/villageAffairs/public/getAdvice/'+id,
- method: 'get',
- })
- }
-
- // 留言板列表
- export function listMessage(query) {
- return request({
- url: '/open/villageAffairs/public/listMessage',
- method: 'get',
- params: query
- })
- }
-
- // 留言板新增
- export function addMessage(data) {
- return request({
- url: '/open/villageAffairs/public/addMessage',
- method: 'post',
- data: data
- })
- }
-
- // 留言板详情
- export function getMessage(id) {
- return request({
- url: '/open/villageAffairs/public/getMessage/'+id,
- method: 'get',
- })
- }
- //e签宝-发包方合同网签
- export function eqbFbfhtwq(data){
- return request({
- url: '/open/villageAffairs/public/eqbFbfhtwq',
- method: 'post',
- data: data
- })
- }
- //e签宝-发包方批量生成签署流程
- export function batchEqbContractSignProcess(data){
- return request({
- url: '/service/cbf/batchEqbContractSignProcess',
- method: 'post',
- data: data
- })
- }
- //e签宝-发包方批量签署
- export function batchEqbContractSigning(data){
- return request({
- url: '/service/cbf/batchEqbContractSigning',
- method: 'post',
- data: data
- })
- }
-
- //e签宝-批量归档
- export function batchContractCompleted() {
- return request({
- url:'/service/cbf/batchContractCompleted',
- method: 'post',
- })
-
- }
-
- //e签宝-合同网签
- export function eqbCbfhtwq(data){
- return request({
- url: '/open/villageAffairs/public/eqbCbfhtwq',
- method: 'post',
- data: data
- })
- }
- // 资源公开
- export function orcodeList(query) {
- return request({
- url: '/open/assetresource/orcode/list',
- method: 'get',
- params: query
- })
- }
-
- // 资产公开
- export function orcodeListZC(query) {
- return request({
- url: '/open/asset/orcode/list',
- method: 'get',
- params: query
- })
- }
-
- // 5、合同公开
- export function contractionListNew(query) {
- return request({
- url: '/open/contraction/list',
- method: 'get',
- params: query
- })
- }
-
- export function listResource(query) {
- return request({
- url: '/asset/resource/list',
- method: 'get',
- params: query
- })
- }
-
- export function getResource(id) {
- return request({
- url: '/asset/resource/get/' + id,
- method: 'get'
- })
- }
-
- export function clearResourceGeom(id) {
- return request({
- url: '/asset/resource/clear/' + id,
- method: 'get'
- });
- }
-
- // 资源新增
- export function addResource(data) {
- return request({
- url: '/asset/resource/add',
- method: 'post',
- data: data
- })
- }
-
- // 资源新增
- export function updateResource(data) {
- return request({
- url: '/asset/resource/edit',
- method: 'post',
- data: data
- })
- }
-
- // 删除资源性资产
- export function delResource(id) {
- return request({
- url: '/asset/resource/remove/' + id,
- method: 'get'
- })
- }
-
- export function faceVerification(data) {
- return request({
- url: '/register/face/verified',
- method: 'post',
- data:data
- })
-
- }
-
- // 查询当前账套固定资产空间数据
- export function getPermanentList(id) {
- return request({
- url: '/open/asset/getPermanentList/' + id,
- method: 'get'
- })
- }
- // 查询当前账套资源空间数据
- export function getResourceList(id) {
- return request({
- url: '/open/assetresource/getResourceList/' + id,
- method: 'get'
- })
- }
- export const openAttachmentList = (data) => {
- return request({
- url: '/open/attachment/query',
- method: 'get',
- params: data
- })
- }
-
- // 资产详情
- export function assetPropertyDetail(id, parms) {
- return request({
- url: '/open/asset/assetPropertyDetail/' + id,
- method: 'get',
- params: parms,
- });
- }
- //资源详情
- export function assetResourceDetail(id, parms) {
- return request({
- url: '/open/assetresource/assetResourceDetail/' + id,
- method: 'get',
- params: parms,
- });
- }
-
- // 公式科目模板分类列表
- export function expressionReportByCategory(name) {
- return request({
- url: '/finance/expressionReport/category/' + name,
- method: 'get',
- })
- }
-
-
- //查询收支明細表
- export const incomeAndExpenditureDetailReport = (data) => {
- return request({
- url: '/finance/report/incomeAndExpenditureDetailReport',
- method: 'get',
- params: data
- })
- }
-
- //查询收益及收益分配表(模板)
- export const incomeDistributionReportByExpTpl = (data) => {
- return request({
- url: '/finance/report/incomeDistributionReportByExpTpl',
- method: 'get',
- params: data
- })
- }
-
- //查询收支公开榜
- export function financialIncomeExpenditurePublic(data) {
- return request({
- url: '/finance/open/financialIncomeExpenditurePublic',
- method: 'get',
- params: data
- })
- }
-
- //查询资产负债表(公式报表模板)
- export const assetLiabilityReportByExpTpl = (data) => {
- return request({
- url: '/finance/report/assetLiabilityReportByExpTpl',
- method: 'get',
- params: data
- })
- }
-
- // 查询四议两公开列表
- export function listOther(query) {
- return request({
- url: '/subcontract/other/list',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开列表
- export function listSiyigongkai(query) {
- return request({
- url: '/subcontract/siyigongkai/list',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开列表
- export function listOtherOpen(query) {
- return request({
- url: '/open/villageAffairs/public/otherPublicList',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开列表
- export function listSiyigongkaiOpen(query) {
- return request({
- url: '/open/villageAffairs/public/siyigongkaiList',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开详细
- export function otherPublicDetailN(id) {
- return request({
- url: '/open/villageAffairs/public/otherPublicDetail?id=' + id,
- method: 'get'
- })
- }
-
- // 查询四议两公开详细
- export function otherPublicDetailOpen(id) {
- return request({
- url: '/open/villageAffairs/public/otherPublicDetail?id=' + id,
- method: 'get'
- })
- }
-
- // 查询四议两公开详细
- export function getSiyigongkai(id) {
- return request({
- url: '/subcontract/siyigongkai/get/' + id,
- method: 'get'
- })
- }
-
- // 查询四议两公开详细
- export function getSiyigongkaiOpen(id, bookId) {
- return request({
- url: '/open/villageAffairs/public/siyigongkaiDetail',
- method: 'get',
- params: { id, bookId }
- })
- }
-
- // 修改四议两公开
- export function updateSiyigongkai(data) {
- return request({
- url: '/subcontract/siyigongkai/edit',
- method: 'post',
- data: data
- })
- }
-
- // 新增四议两公开
- export function addSiyigongkai(data) {
- return request({
- url: '/subcontract/siyigongkai/add',
- method: 'post',
- data: data
- })
- }
-
- // 删除四议两公开
- export function delSiyigongkai(id) {
- return request({
- url: '/subcontract/siyigongkai/remove/' + id,
- method: 'get'
- })
- }
-
- // 查询四议两公开列表
- export function specialPublicityList(query) {
- return request({
- url: '/open/villageAffairs/public/specialPublicityList',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开列表
- export function specialPublicityDetail(query) {
- return request({
- url: '/open/villageAffairs/public/specialPublicityDetail',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开列表
- export function addReadCount(query) {
- return request({
- url: '/open/villageAffairs/public/addReadCount',
- method: 'get',
- params: query
- })
- }
-
- // 查询四议两公开列表
- export function specialPublicityEdit(data) {
- return request({
- url: '/subcontract/publicity/edit',
- method: 'post',
- data: data
- })
- }
-
- // 查询四议两公开列表
- export function specialPublicityAdd(data) {
- return request({
- url: '/subcontract/publicity/add',
- method: 'post',
- data: data
- })
- }
-
- // 删除四议两公开
- export function specialPublicityRemove(id) {
- return request({
- url: '/subcontract/publicity/remove/' + id,
- method: 'get'
- })
- }
-
- // 查询四议两公开列表
- export function updateSpecialPublicityCount(query) {
- return request({
- url: '/open/villageAffairs/public/updateSpecialPublicityCount',
- method: 'get',
- params: query
- })
- }
-
- // 收支明细公开
- export function financialPublicDetailReport(query) {
- return request({
- url: '/open/finance/financialPublicDetailReport',
- method: 'get',
- params: query
- })
- }
-
-
- // 收支明细公开
- export function jyxzcqkgkList(query) {
- return request({
- url: '/open/asset/jyxzcqkgk/list',
- method: 'get',
- params: query
- })
- }
-
- // 收支明细公开
- export function jyxzyqkgkList(query) {
- return request({
- url: '/open/assetresource/jyxzyqkgk/list',
- method: 'get',
- params: query
- })
- }
-
- export function jyxzcqkgkDetail(id) {
- return request({
- url: '/open/asset/jyxzcqkgk/detail/' + id,
- method: 'get'
- })
- }
-
- export function jyxzyqkgkDetail(id) {
- return request({
- url: '/open/assetresource/jyxzyqkgk/detail/' + id,
- method: 'get'
- })
- }
|