5a21fb10 by renchao@pashanhoo.com

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcsjsb-web into dev

2 parents 271ba058 5e202800
Showing 195 changed files with 1066 additions and 158 deletions
......@@ -10,7 +10,7 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap
class business {
/**
* @description: 成功率统计
* @param {*} startDate
* @param {*} startDate
* @param {*} endDate
* @param {*} qxdm
* @author: renchao
......@@ -27,4 +27,4 @@ class business {
})
}
}
export default new business()
\ No newline at end of file
export default new business()
......
......@@ -39,6 +39,7 @@ export function getAreaReportPage (data) {
/**
* @description: 接入数据上报分页
* @param {*} data
* @author: renchao
*/
export function getReceiveDataReportPage (data) {
......@@ -51,6 +52,7 @@ export function getReceiveDataReportPage (data) {
/**
* @description: 数据上报分页
* @param {*} data
* @author: renchao
*/
export function getDataReportPage (data) {
......@@ -61,6 +63,11 @@ export function getDataReportPage (data) {
})
}
/**
* @description: 获取数据上报数据
* @param {*} data
* @author: renchao
*/
export function getSjsbReportPage (data) {
return request({
url: urlHeader + 'getSjsbReportPage',
......@@ -70,6 +77,7 @@ export function getSjsbReportPage (data) {
}
/**
* @description: 查询数据上报详情tabs选项卡
* @param {*} params
* @author: renchao
*/
export function getTabsDetail (params) {
......@@ -81,6 +89,7 @@ export function getTabsDetail (params) {
}
/**
* @description: 查询数据上报详情
* @param {*} params
* @author: renchao
*/
export function getReportDetail (params) {
......
......@@ -5,15 +5,21 @@
*/
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
/*
获取全部字典数据
*/
/**
* @description: 获取全部字典数据
* @author: renchao
*/
export function getAllDict () {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict',
method: 'post'
})
}
/**
* @description: 获取字典类型列表
* @param {*} data
* @author: renchao
*/
export function getQlxxDictList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/getDictList',
......@@ -21,9 +27,11 @@ export function getQlxxDictList (data) {
data
})
}
/*
获取字典子级列表
*/
/**
* @description: 获取字典子级列表
* @param {*} bsmDict
* @author: renchao
*/
export function getChildDictList (bsmDict) {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList',
......@@ -33,9 +41,11 @@ export function getChildDictList (bsmDict) {
}
})
}
/*
编辑字典数据
*/
/**
* @description: 编辑字典数据
* @param {*} data
* @author: renchao
*/
export function editDictNode (data) {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode',
......@@ -44,9 +54,10 @@ export function editDictNode (data) {
})
}
/*
刷新字典缓存
*/
/**
* @description: 刷新字典缓存
* @author: renchao
*/
export function refreshDictCache () {
return request({
url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjDb {
//登记登簿信息
/**
* @description: 登记登簿信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjDbById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjDb/detail",
......@@ -17,7 +21,11 @@ class djfDjDb {
},
});
}
//修改登记登簿信息
/**
* @description: 修改登记登簿信息
* @param {*} data
* @author: renchao
*/
async updateDjfDjDb (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjDb/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjFz {
//登记发证信息
/**
* @description: 登记发证信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjFzDetailById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjFz/detail",
......@@ -17,7 +21,11 @@ class djfDjFz {
},
});
}
//修改登记发证信息
/**
* @description: 修改登记发证信息
* @param {*} data
* @author: renchao
*/
async updateDjfDjFz (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjFz/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjGd {
// 登记归档信息-业务表单
/**
* @description: 登记归档信息-业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjGdById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjGd/detail",
......@@ -17,7 +21,11 @@ class djfDjGd {
},
});
}
// 登记归档信息-业务-修改
/**
* @description: 登记归档信息-业务-修改
* @param {*} data
* @author: renchao
*/
async updateDjfDjGd (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjGd/edit",
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjSf {
// 登记收费信息
/**
* @description: 登记收费信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjSfById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/detail',
......@@ -17,7 +21,11 @@ class djfDjSf {
}
})
}
// 登记收费信息-修改
/**
* @description: 登记收费信息-修改
* @param {*} data
* @author: renchao
*/
async updateDjfDjSf (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/DjfDjSf/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjSh {
//登记审核信息
/**
* @description: 登记审核信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjShById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSh/detail",
......@@ -17,7 +21,11 @@ class djfDjSh {
},
});
}
//修改登记审核信息
/**
* @description: 修改登记审核信息
* @param {*} data
* @author: renchao
*/
async updateDjfDjSh (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSh/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjSj {
//登记收件信息
/**
* @description: 登记收件信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjSjById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSj/detail",
......@@ -17,7 +21,11 @@ class djfDjSj {
},
});
}
//修改登记收件信息
/**
* @description: 修改登记收件信息
* @param {*} data
* @author: renchao
*/
async updateDjfDjSj (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSj/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjSqr {
// 申请人属性信息-业务表单
/**
* @description: 申请人属性信息-业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjSqrById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSqr/detail",
......@@ -17,7 +21,11 @@ class djfDjSqr {
},
});
}
// 申请人属性信息-业务-修改
/**
* @description: 申请人属性信息-业务-修改
* @param {*} data
* @author: renchao
*/
async updateDjfDjSqr (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSqr/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djfDjSz {
//登记缮证信息
/**
* @description: 登记缮证信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjfDjSzById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSz/detail",
......@@ -17,7 +21,11 @@ class djfDjSz {
},
});
}
//修改登记缮证信息
/**
* @description: 修改登记缮证信息
* @param {*} data
* @author: renchao
*/
async updateDjfDjSz (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjfDjSz/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class djtDjSlsq {
// 登记受理申请信息 -- 业务表单
/**
* @description: 登记受理申请信息 -- 业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getDjtDjSlsqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/detail",
......@@ -17,7 +21,11 @@ class djtDjSlsq {
},
});
}
// 登记受理申请信息 -- 业务修改
/**
* @description: 登记受理申请信息 -- 业务修改
* @param {*} data
* @author: renchao
*/
async updateDjtDjSlsq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/edit",
......@@ -25,7 +33,11 @@ class djtDjSlsq {
data,
});
}
//修改登记受理申请信息
/**
* @description: 修改登记受理申请信息
* @param {*} data
* @author: renchao
*/
async updateDjtDjSlsq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/DjtDjSlsq/updateDjtDjSlsq",
......
......@@ -7,11 +7,13 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class efficient {
/*
获取对应的业务量总数
startDate:开始日期
endDate:结束日期
*/
/**
* @description: 获取对应的业务量总数
* @param {*} startDate:开始日期
* @param {*} endDate:结束日期
* @param {*} qxdm
* @author: renchao
*/
async getProcessCounts (startDate, endDate, qxdm) {
return request({
url: SERVER.SERVERAPI + "/rest/statistics/Efficient/getProcessCounts",
......@@ -23,12 +25,13 @@ class efficient {
},
});
}
/*
获取各区县业务对应的天数
recType:业务代码
startDate:开始日期
endDate:结束日期
*/
/**
* @description: 获取各区县业务对应的天数
* @param {*} recType:业务代码
* @param {*} startDate:开始日期
* @param {*} endDate:结束日期
* @author: renchao
*/
async getProcessDays (recType, startDate, endDate) {
return request({
url: SERVER.SERVERAPI + "/rest/statistics/Efficient/getProcessDays",
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class fjF100 {
// 非结构化文档
/**
* @description: 非结构化文档
* @param {*} bsmSjsb
* @author: renchao
*/
async getFjF100ById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/FjF100/detail',
......@@ -18,7 +22,11 @@ class fjF100 {
})
}
//非结构化文档-修改
/**
* @description: 非结构化文档-修改
* @param {*} data
* @author: renchao
*/
async updateFjF100 (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/FjF100/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ktfQtDzdzw {
// 点状定着物信息
/**
* @description: 点状定着物信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getKtfQtDzdzwById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/detail',
......@@ -17,7 +21,11 @@ class ktfQtDzdzw {
}
})
}
// 点状定着物信息-修改
/**
* @description: 点状定着物信息-修改
* @param {*} data
* @author: renchao
*/
async updateKtfQtDzdzw (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfQtDzdzw/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ktfQtMzdzw {
// 面状定着物
/**
* @description: 面状定着物
* @param {*} bsmSjsb
* @author: renchao
*/
async getKtfQtMzdzwById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/detail',
......@@ -17,7 +21,11 @@ class ktfQtMzdzw {
}
})
}
// 面状定着物-修改
/**
* @description: 面状定着物-修改
* @param {*} data
* @author: renchao
*/
async updateKtfQtMzdzw (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfQtMzdzw/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ktfQtXzdzw {
// 线状定着物
/**
* @description: 线状定着物
* @param {*} bsmSjsb
* @author: renchao
*/
async getKtfQtXzdzwById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/detail',
......@@ -17,7 +21,11 @@ class ktfQtXzdzw {
}
})
}
// 线状定着物-修改
/**
* @description: 线状定着物-修改
* @param {*} data
* @author: renchao
*/
async updateKtfQtXzdzw (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfQtXzdzw/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ktfZdbhqk {
//宗地变化情况
/**
* @description: 宗地变化情况
* @param {*} bsmSjsb
* @author: renchao
*/
async getKtfZdbhqkById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/detail',
......@@ -17,7 +21,11 @@ class ktfZdbhqk {
}
})
}
//修改宗地变化情况
/**
* @description: 修改宗地变化情况
* @param {*} data
* @author: renchao
*/
async updateKtfZdbhqk (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfZdbhqk/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ktfZhYhydzb {
// 用海,用岛坐标
/**
* @description: 用海,用岛坐标
* @param {*} bsmSjsb
* @author: renchao
*/
async getKtfZhYhydzbById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/detail',
......@@ -17,7 +21,11 @@ class ktfZhYhydzb {
}
})
}
// 用海,用岛坐标-修改
/**
* @description: 用海,用岛坐标-修改
* @param {*} data
* @author: renchao
*/
async updateKtfZhYhydzb (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhydzb/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ktfZhYhzk {
//用海状况
/**
* @description: 用海状况
* @param {*} bsmSjsb
* @author: renchao
*/
async getKtfZhYhzkById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/detail',
......@@ -17,7 +21,11 @@ class ktfZhYhzk {
}
})
}
//修改用海状况
/**
* @description: 修改用海状况
* @param {*} data
* @author: renchao
*/
async updateKtfZhYhzk (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KtfZhYhzk/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttFwC {
// 层信息- 业务表单
/**
* @description: 层信息- 业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttFwCById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/KttFwC/detail",
......@@ -17,7 +21,11 @@ class kttFwC {
},
});
}
// 层信息-业务-修改
/**
* @description: 层信息-业务-修改
* @param {*} data
* @author: renchao
*/
async updateKttFwC (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/KttFwC/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttFwH {
// 户信息- 业务表单
/**
* @description: 户信息- 业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttFwHById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/KttFwH/detail",
......@@ -17,7 +21,11 @@ class kttFwH {
},
});
}
// 户信息-业务-修改
/**
* @description: 户信息-业务-修改
* @param {*} data
* @author: renchao
*/
async updateKttFwH (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/KttFwH/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttFwLjz {
// 逻辑幢信息 -- 业务表单
/**
* @description: 逻辑幢信息 -- 业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttFwLjzById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/KttFwLjz/detail",
......@@ -17,7 +21,11 @@ class kttFwLjz {
},
});
}
// 逻辑幢信息 -- 业务修改
/**
* @description: 逻辑幢信息 -- 业务修改
* @param {*} data
* @author: renchao
*/
async updateKttFwLjz (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/KttFwLjz/edit",
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttFwZrz {
// 自然幢信息
/**
* @description: 自然幢信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttFwZrzById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/detail',
......@@ -17,7 +21,11 @@ class kttFwZrz {
}
})
}
// 自然幢信息-修改
/**
* @description: 自然幢信息-修改
* @param {*} data
* @author: renchao
*/
async updateKttFwZrz (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttFwZrz/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttGyJzd {
//界址点
/**
* @description: 界址点
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttGyJzdById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/detail',
......@@ -17,7 +21,11 @@ class kttGyJzd {
}
})
}
//修改界址点
/**
* @description: 修改界址点
* @param {*} data
* @author: renchao
*/
async updateKttGyJzd (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttGyJzd/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttGyJzx {
//界址线信息
/**
* @description: 界址线信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttGyJzxById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/detail',
......@@ -17,7 +21,11 @@ class kttGyJzx {
}
})
}
//修改界址线信息
/**
* @description: 修改界址线信息
* @param {*} data
* @author: renchao
*/
async updateKttGyJzx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttGyJzx/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttGzw {
//构筑物
/**
* @description: 构筑物
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttGzwById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttGzw/detail',
......@@ -17,7 +21,11 @@ class kttGzw {
}
})
}
//修改构筑物
/**
* @description: 修改构筑物
* @param {*} data
* @author: renchao
*/
async updateKttGzw (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttGzw/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttZdjbxx {
// 宗地基本信息
/**
* @description: 宗地基本信息
* @param {*} bsmSjsb
* @author: renchao
*/
async kttZdjbxxDetail (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/detail',
......@@ -17,7 +21,11 @@ class kttZdjbxx {
}
})
}
// 宗地基本信息-修改
/**
* @description: 宗地基本信息-修改
* @param {*} data
* @author: renchao
*/
async updateKttZdjbxx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttZdjbxx/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class kttZhjbxx {
//宗海基本信息
/**
* @description: 宗海基本信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getKttZhjbxxById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/detail',
......@@ -17,7 +21,11 @@ class kttZhjbxx {
}
})
}
//修改宗海基本信息
/**
* @description: 修改宗海基本信息
* @param {*} data
* @author: renchao
*/
async updateKttZhjbxx (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/KttZhjbxx/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfFwFdcqDzXm {
// 房地产权_项目内多幢房屋项目属性
/**
* @description: 房地产权_项目内多幢房屋项目属性
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfFwFdcqDzXmById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/detail',
......@@ -17,7 +21,11 @@ class qlfFwFdcqDzXm {
}
})
}
// 房地产权_项目内多幢房屋项目属性-修改
/**
* @description: 房地产权_项目内多幢房屋项目属性-修改
* @param {*} data
* @author: renchao
*/
async updateQlfFwFdcqDzXm (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfFwFdcqDzXm/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfFwFdcqQfsyq {
// 建筑物区分所有权业主共有部分信息
/**
* @description: 建筑物区分所有权业主共有部分信息
* @param {*} data
* @author: renchao
*/
async getQlfFwFdcqQfsyqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/getDataPage",
......@@ -15,7 +19,11 @@ class qlfFwFdcqQfsyq {
data,
});
}
//建筑物区分所有权业主共有部分信息
/**
* @description: 建筑物区分所有权业主共有部分信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfFwFdcqQfsyqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/detail",
......@@ -25,7 +33,11 @@ class qlfFwFdcqQfsyq {
},
});
}
//修改建筑物区分所有权业主共有部分信息
/**
* @description: 修改建筑物区分所有权业主共有部分信息
* @param {*} data
* @author: renchao
*/
async updateQlfFwFdcqQfsyq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfFwFdcqQfsyq/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlCfdj {
// 查封登记信息
/**
* @description: 查封登记信息
* @param {*} data
* @author: renchao
*/
async getQlfQlCfdjList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlCfdj {
data,
});
}
// 查封登记信息
/**
* @description:
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlCfdjById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/detail",
......@@ -25,7 +33,11 @@ class qlfQlCfdj {
},
});
}
// 查封登记信息-修改
/**
* @description: 查封登记信息-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlCfdj (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlCfdj/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlDyaq {
// 抵押权登记
/**
* @description: 抵押权登记
* @param {*} data
* @author: renchao
*/
async getQlfQlDyaqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlDyaq {
data,
});
}
// 抵押权
/**
* @description: 抵押权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlDyaqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/detail",
......@@ -25,7 +33,11 @@ class qlfQlDyaq {
},
});
}
// 抵押权-修改
/**
* @description: 抵押权-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlDyaq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyaq/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlDyiq {
// 地役权
/**
* @description: 地役权
* @param {*} data
* @author: renchao
*/
async getQlfQlDyiqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlDyiq {
data,
});
}
// 地役权信息
/**
* @description: 地役权信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlDyiqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/detail",
......@@ -25,7 +33,11 @@ class qlfQlDyiq {
},
});
}
// 地役权信息-修改
/**
* @description: 地役权信息-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlDyiq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlDyiq/edit",
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlGzdj {
// 更正登记信息
/**
* @description: 更正登记信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlGzdjById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/detail',
......@@ -17,7 +21,11 @@ class qlfQlGzdj {
}
})
}
// 更正登记信息-修改
/**
* @description: 更正登记信息-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlGzdj (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlGzdj/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlHysyq {
// 海域(含无居民海岛)使用权
/**
* @description: 海域(含无居民海岛)使用权
* @param {*} data
* @author: renchao
*/
async getQlfQlHysyqByConditon (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlHysyq {
data,
});
}
//海域(含无居民海岛)使用权
/**
* @description: 海域(含无居民海岛)使用权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlHysyqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/detail",
......@@ -25,7 +33,11 @@ class qlfQlHysyq {
},
});
}
//修改海域(含无居民海岛)使用权
/**
* @description: 修改海域(含无居民海岛)使用权
* @param {*} data
* @author: renchao
*/
async updateQlfQlHysyq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlHysyq/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlJsydsyq {
// 建设用地、宅基地使用权
/**
* @description: 建设用地、宅基地使用权
* @param {*} data
* @author: renchao
*/
async getQlfQlJsydsyqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlJsydsyq/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlJsydsyq {
data,
});
}
//建设用地、宅基地使用权
/**
* @description: 建设用地、宅基地使用权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlJsydsyqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/detail',
......@@ -25,7 +33,11 @@ class qlfQlJsydsyq {
}
})
}
//修改建设用地、宅基地使用权
/**
* @description: 修改建设用地、宅基地使用权
* @param {*} data
* @author: renchao
*/
async updateQlfQlJsydsyq (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlJsydsyq/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlNydsyq {
// 农用地使用权(非林地)
/**
* @description: 农用地使用权(非林地)
* @param {*} data
* @author: renchao
*/
async getQlfQlNydsyqByConditon (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlNydsyq {
data,
});
}
//农用地使用权(非林地)
/**
* @description: 农用地使用权(非林地)
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlNydsyqByID (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/detail",
......@@ -25,7 +33,11 @@ class qlfQlNydsyq {
},
});
}
//修改农用地使用权(非林地)
/**
* @description: 修改农用地使用权(非林地)
* @param {*} data
* @author: renchao
*/
async updateQlfQlNydsyq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlNydsyq/edit",
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlQtxgql {
// 其他相关权利
/**
* @description: 其他相关权利
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlQtxgqlById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/detail',
......@@ -17,7 +21,11 @@ class qlfQlQtxgql {
}
})
}
// 其他相关权利-修改
/**
* @description: 其他相关权利-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlQtxgql (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlQtxgql/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlTdsyq {
// 土地所有权
/**
* @description: 土地所有权
* @param {*} data
* @author: renchao
*/
async getQlfQlTdsyqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlTdsyq/getDataPage",
......@@ -16,6 +20,11 @@ class qlfQlTdsyq {
});
}
//土地所有权
/**
* @description: 土地所有权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlTdsyqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/detail',
......@@ -25,7 +34,11 @@ class qlfQlTdsyq {
}
})
}
//修改土地所有权
/**
* @description: 修改土地所有权
* @param {*} data
* @author: renchao
*/
async updateQlfQlTdsyq (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QlfQlTdsyq/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlYgdj {
// 预告登记信息
/**
* @description: 预告登记信息
* @param {*} data
* @author: renchao
*/
async getQlfQlYgdjList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlYgdj {
data,
});
}
// 预告登记信息
/**
* @description: 预告登记信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlYgdjById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/detail",
......@@ -25,7 +33,11 @@ class qlfQlYgdj {
},
});
}
// 预告登记信息-修改
/**
* @description: 预告登记信息-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlYgdj (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlYgdj/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlYydj {
// 异议登记信息
/**
* @description: 异议登记信息
* @param {*} data
* @author: renchao
*/
async getQlfQlYydjList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlYydj {
data,
});
}
// 异议登记信息
/**
* @description: 异议登记信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlYydjById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/detail",
......@@ -25,7 +33,11 @@ class qlfQlYydj {
},
});
}
// 异议登记信息-修改
/**
* @description: 异议登记信息-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlYydj (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlYydj/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qlfQlZxdj {
// 注销登记
/**
* @description: 注销登记
* @param {*} data
* @author: renchao
*/
async getQlfQlZxdjList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/getDataPage",
......@@ -15,7 +19,11 @@ class qlfQlZxdj {
data,
});
}
// 注销登记信息
/**
* @description: 注销登记信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQlfQlZxdjById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/detail",
......@@ -25,7 +33,11 @@ class qlfQlZxdj {
},
});
}
//注销登记信息 - 修改
/**
* @description: 注销登记信息-修改
* @param {*} data
* @author: renchao
*/
async updateQlfQlZxdj (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QlfQlZxdj/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qltFwFdcqDz {
// 房地产权_项目内多幢房屋信息
/**
* @description: 房地产权_项目内多幢房屋信息
* @param {*} data
* @author: renchao
*/
async getQltFwFdcqDzList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltFwFdcqDz/getDataPage",
......@@ -15,7 +19,11 @@ class qltFwFdcqDz {
data,
});
}
//房地产权_项目内多幢房屋信息
/**
* @description: 房地产权_项目内多幢房屋信息
* @param {*} bsmSjsb
* @author: renchao
*/
async getQltFwFdcqDzById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/detail',
......@@ -25,7 +33,11 @@ class qltFwFdcqDz {
}
})
}
//修改房地产权_项目内多幢房屋信息
/**
* @description: 修改房地产权_项目内多幢房屋信息
* @param {*} data
* @author: renchao
*/
async updateQltFwFdcqDz (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqDz/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qltFwFdcqYz {
// 房地产权(独幢、层、套、间、房屋)
/**
* @description: 房地产权(独幢、层、套、间、房屋)
* @param {*} data
* @author: renchao
*/
async getQltFwFdcqYzList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltFwFdcqYz/getDataPage",
......@@ -15,7 +19,11 @@ class qltFwFdcqYz {
data,
});
}
//房地产权(独幢、层、套、间、房屋)
/**
* @description: 房地产权(独幢、层、套、间、房屋)
* @param {*} bsmSjsb
* @author: renchao
*/
async getQltFwFdcqYzById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/detail',
......@@ -25,7 +33,11 @@ class qltFwFdcqYz {
}
})
}
//修改房地产权(独幢、层、套、间、房屋)
/**
* @description: 修改房地产权(独幢、层、套、间、房屋)
* @param {*} data
* @author: renchao
*/
async updateQltFwFdcqYz (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/QltFwFdcqYz/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qltQlGjzwsyq {
// 构(建)筑物所有权
/**
* @description: 构(建)筑物所有权
* @param {*} data
* @author: renchao
*/
async getQltQlGjzwsyqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/getDataPage",
......@@ -15,7 +19,11 @@ class qltQlGjzwsyq {
data,
});
}
// 构(建)筑物所有权
/**
* @description: 构(建)筑物所有权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQltQlGjzwsyqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/detail",
......@@ -25,7 +33,11 @@ class qltQlGjzwsyq {
},
});
}
//构(建)筑物所有权 - 修改
/**
* @description: 构(建)筑物所有权 - 修改
* @param {*} data
* @author: renchao
*/
async updateQltQlGjzwsyq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltQlGjzwsyq/edit",
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class qltQlLq {
// 林权
/**
* @description: 林权
* @param {*} data
* @author: renchao
*/
async getQltQlLqList (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/getDataPage",
......@@ -15,7 +19,11 @@ class qltQlLq {
data,
});
}
//林权
/**
* @description: 林权
* @param {*} bsmSjsb
* @author: renchao
*/
async getQltQlLqById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/detail",
......@@ -25,7 +33,11 @@ class qltQlLq {
},
});
}
//修改林权
/**
* @description: 修改林权
* @param {*} data
* @author: renchao
*/
async updateQltQlLq (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/QltQlLq/edit",
......
......@@ -10,6 +10,7 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap
const urlHeader = SERVER.SERVERAPI + '/rest/sjsb/RecordLog/'
/**
* @description: 登簿日志分页
* @param {*} data
* @author: renchao
*/
export function getRecordLogPage (data) {
......
......@@ -6,7 +6,11 @@
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class ruleConfig {
// 列表查询
/**
* @description: 列表查询
* @param {*} data
* @author: renchao
*/
async getSysYwsjbList (data) {
return request({
url: SERVER.SERVERAPI + '/rest/SysYwsjb/getSysYwsjbList',
......@@ -14,7 +18,11 @@ class ruleConfig {
data
})
}
// 编辑界面列表查询
/**
* @description: 编辑界面列表查询
* @param {*} id
* @author: renchao
*/
async eidtConfigRule (id) {
return request({
url: SERVER.SERVERAPI + '/rest/SysYwsjb/getSysYwsjbWithSysYwsjbFieldByBsmYwsjb',
......@@ -24,7 +32,11 @@ class ruleConfig {
}
})
}
// 编辑
/**
* @description: 编辑
* @param {*} data
* @author: renchao
*/
async editSysYwsjbWithSysYwsjbField (data) {
return request({
url: SERVER.SERVERAPI + '/rest/SysYwsjb/editSysYwsjbWithSysYwsjbField',
......@@ -32,7 +44,11 @@ class ruleConfig {
data
})
}
// 编辑
/**
* @description: 编辑
* @param {*} id
* @author: renchao
*/
async deleteSysYwsjbWithSysYwsjbFieldByBsmYwsjb (id) {
return request({
url: SERVER.SERVERAPI + '/rest/SysYwsjb/deleteSysYwsjbWithSysYwsjbFieldByBsmYwsjb',
......@@ -42,7 +58,11 @@ class ruleConfig {
}
})
}
// 编辑界面列表查询----根据数据表名查询
/**
* @description: 编辑界面列表查询----根据数据表名查询
* @param {*} bsmYwsjb
* @author: renchao
*/
async getRuleList (bsmYwsjb) {
return request({
url: SERVER.SERVERAPI + '/rest/sjsb/DataReport/getTableColumn',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class sjsbFunctionOper {
// 数据上报表头相关接口
/**
* @description: 数据上报表头相关接口
* @param {*} id
* @author: renchao
*/
async getQltFwFdcqYzByCondition (id) {
return request({
url: '/sjsbFunctionOper/getSjsbTableInfo',
......@@ -17,7 +21,11 @@ class sjsbFunctionOper {
}
})
}
// xml
/**
* @description: xml
* @param {*} id
* @author: renchao
*/
async queryXML (id) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/sjsbFunctionOper/queryXML',
......
......@@ -8,7 +8,11 @@ let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('Ap
class sjsbTask {
// 定时任务
// 定时任务查询接口
/**
* @description: 定时任务查询接口
* @param {*} data
* @author: renchao
*/
async getTaskListByName (data) {
return request({
url: SERVER.SERVERAPI + '/rest/schedule/getScheduleList',
......@@ -20,7 +24,11 @@ class sjsbTask {
}
})
}
// 定时任务新增接口
/**
* @description: 定时任务新增接口
* @param {*} data
* @author: renchao
*/
async sjsbTaskSave (data) {
return request({
url: SERVER.SERVERAPI + '/rest/schedule/add',
......@@ -28,7 +36,11 @@ class sjsbTask {
data
})
}
// 修改定时任务执行时间接口
/**
* @description: 修改定时任务执行时间接口
* @param {*} data
* @author: data
*/
async updateCron (data) {
return request({
url: SERVER.SERVERAPI + '/rest/schedule/update',
......@@ -36,7 +48,11 @@ class sjsbTask {
data
})
}
// 定时任务删除接口
/**
* @description: 定时任务删除接口
* @param {*} id
* @author: renchao
*/
async sjsbTaskRemove (id) {
return request({
url: SERVER.SERVERAPI + '/rest/schedule/delete',
......@@ -46,7 +62,11 @@ class sjsbTask {
}
})
}
// 恢复任务接口
/**
* @description: 恢复任务接口
* @param {*} id
* @author: renchao
*/
async recover (id) {
return request({
url: SERVER.SERVERAPI + '/rest/schedule/recover',
......@@ -56,7 +76,11 @@ class sjsbTask {
}
})
}
// 激活任务接口
/**
* @description: 激活任务接口
* @param {*} id
* @author: renchao
*/
async active (id) {
return request({
url: SERVER.SERVERAPI + '/rest/schedule/active',
......
/*
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-24 09:28:25
*/
import request from '@/utils/request'
// let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
// 获取用户信息
/**
* @description: 获取用户信息
* @author: renchao
*/
export function getUserInfo () {
return request({
url: SERVER.SERVERAPI + '/rest/user/getUserInfo',
......@@ -14,7 +17,11 @@ export function getUserInfo () {
})
}
// 获取菜单信息
/**
* @description: 获取菜单信息
* @param {*} data
* @author: renchao
*/
export function getMenuInfo (data) {
return request({
url: SERVER.SERVERAPI + '/rest/user/getUserAuthorizationMenus',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class work {
// 登记类型总量
/**
* @description: 登记类型总量
* @param {*} data
* @author: renchao
*/
async getDjlxtotal (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/getDjlxtotal',
......@@ -15,7 +19,11 @@ class work {
data
})
}
// 登记业务量
/**
* @description: 登记业务量
* @param {*} data
* @author: renchao
*/
async getdjywltotal (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/getdjywltotal',
......@@ -23,7 +31,11 @@ class work {
data
})
}
// 省厅汇交-区县接入
/**
* @description: 省厅汇交-区县接入
* @param {*} data
* @author: renchao
*/
async getsthjqxjrtotal (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/getsthjqxjrtotal',
......@@ -31,7 +43,11 @@ class work {
data
})
}
// 地图区县总量统计,code区县编码,汉中为:A20
/**
* @description: 地图区县总量统计,code区县编码,汉中为:A20
* @param {*} code
* @author: renchao
*/
async mapViews (code) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/mapViews',
......@@ -41,7 +57,11 @@ class work {
}
})
}
// 数据趋势
/**
* @description: 数据趋势
* @param {*} code
* @author: renchao
*/
async dataTrend (code) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/dataTrend',
......@@ -51,7 +71,11 @@ class work {
}
})
}
// 新建国有房屋信息
/**
* @description: 新建国有房屋信息
* @param {*} code
* @author: renchao
*/
async addhousetotal (code) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/addhousetotal',
......@@ -61,7 +85,11 @@ class work {
}
})
}
// 地图区县成功失败统计,code区县编码,汉中为:A20
/**
* @description: 地图区县成功失败统计,code区县编码,汉中为:A20
* @param {*} code
* @author: renchao
*/
async submitViews (code) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/work/submitViews',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class zdK103 {
//宗地空间属性
/**
* @description: 宗地空间属性
* @param {*} bsmSjsb
* @author: renchao
*/
async getZdK103ById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/ZdK103/detail',
......@@ -17,7 +21,11 @@ class zdK103 {
}
})
}
//修改宗地空间属性
/**
* @description: 修改宗地空间属性
* @param {*} data
* @author: renchao
*/
async updateZdK103 (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/ZdK103/edit',
......
......@@ -7,7 +7,11 @@ import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class zhK105 {
// 宗海空间属性
/**
* @description: 宗海空间属性
* @param {*} bsmSjsb
* @author: renchao
*/
async getZhK105ById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/ZhK105/detail',
......@@ -18,7 +22,11 @@ class zhK105 {
})
}
// 宗海空间属性-修改
/**
* @description: 宗海空间属性-修改
* @param {*} data
* @author: renchao
*/
async updateZhK105 (data) {
return request({
url: SERVER.SERVERAPI + '/rest/reg/ZhK105/edit',
......
......@@ -7,7 +7,11 @@ import request from "@/utils/request";
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))
class zttGyQlr {
// 权利人 -- 业务表单
/**
* @description: 权利人 -- 业务表单
* @param {*} bsmSjsb
* @author: renchao
*/
async getZttGyQlrById (bsmSjsb) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/detail",
......@@ -17,7 +21,11 @@ class zttGyQlr {
},
});
}
// 权利人 -- 业务表单修改
/**
* @description: 权利人 -- 业务表单修改
* @param {*} data
* @author: renchao
*/
async updateZttGyQlr (data) {
return request({
url: SERVER.SERVERAPI + "/rest/reg/ZttGyQlr/edit",
......
......@@ -73,6 +73,10 @@ export default {
this.chart = null;
},
methods: {
/**
* @description: initChart
* @author: renchao
*/
initChart () {
// 初始化echart
this.chart = this.$echarts.init(this.$el, "tdTheme");
......
<!--
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-20 16:36:51
-->
......@@ -32,6 +32,10 @@ export default {
this.getBreadcrumb();
},
methods: {
/**
* @description: getBreadcrumb
* @author: renchao
*/
getBreadcrumb () {
// only show routes with meta.title
this.levelList = this.$route.matched.filter(
......@@ -41,6 +45,11 @@ export default {
this.levelList = this.levelList.slice(-1)
}
},
/**
* @description: isDashboard
* @param {*} route
* @author: renchao
*/
isDashboard (route) {
const name = route && route.name;
if (!name) {
......@@ -50,6 +59,11 @@ export default {
name.trim().toLocaleLowerCase() === "Dashboard".toLocaleLowerCase()
);
},
/**
* @description: pathCompile
* @param {*} path
* @author: renchao
*/
pathCompile (path) {
const { params } = this.$route;
var toPath = pathToRegexp.compile(path);
......@@ -57,4 +71,4 @@ export default {
}
}
}
</script>
\ No newline at end of file
</script>
......
......@@ -144,6 +144,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await djfDjDb.getDjfDjDbById(this.bsmSjsb);
......@@ -153,6 +157,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -229,6 +229,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await djfDjFz.getDjfDjFzDetailById(this.bsmSjsb);
......@@ -238,6 +242,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -183,6 +183,10 @@ export default {
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await djfDjGd.getDjfDjGdById(this.bsmSjsb)
......@@ -192,6 +196,10 @@ export default {
this.$refs.msg.messageShow()
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve) => {
try {
......
......@@ -251,6 +251,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await djfDjSf.getDjfDjSfById(this.bsmSjsb);
......@@ -260,6 +264,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -183,6 +183,11 @@
};
},
methods: {
/**
* @description: changeTraceEnd
* @param {*} item
* @author: renchao
*/
changeTraceEnd (item) {
if (item.SHJSSJ !== null) {
//当前值为空 也会进行判断 所以条件最好不要非空验证
......@@ -196,6 +201,11 @@
}
},
//跟踪API结束时间限制开始时间
/**
* @description: 跟踪API结束时间限制开始时间
* @param {*} item
* @author: renchao
*/
changeTraceStart (item) {
if (item.SHKSSJ !== null) {
//当前值为空 也会进行判断 所以条件最好不要非空验证
......@@ -208,6 +218,10 @@
item.traceEnd = {};
}
},
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await djfDjSh.getDjfDjShById(this.bsmSjsb);
......@@ -217,6 +231,10 @@
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve) => {
try {
......
......@@ -202,6 +202,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await djfDjSj.getDjfDjSjById(this.bsmSjsb);
......@@ -211,6 +215,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -366,6 +366,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await djfDjSqr.getDjfDjSqrById(this.bsmSjsb);
......@@ -375,6 +379,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -161,6 +161,10 @@
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await djfDjSz.getDjfDjSzById(this.bsmSjsb);
......@@ -170,6 +174,10 @@
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve) => {
try {
......
......@@ -268,6 +268,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await djtDjSlsq.getDjtDjSlsqById(this.bsmSjsb);
......@@ -277,6 +281,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -67,6 +67,10 @@ export default {
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await fjF100.getFjF100ById(this.bsmSjsb)
......@@ -76,6 +80,10 @@ export default {
this.$refs.msg.messageShow()
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve) => {
try {
......
......@@ -169,6 +169,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await ktfQtDzdzw.getKtfQtDzdzwById(this.bsmSjsb);
......@@ -177,6 +181,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -168,6 +168,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await ktfQtMzdzw.getKtfQtMzdzwById(this.bsmSjsb);
......@@ -177,6 +181,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -169,6 +169,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await ktfQtXzdzw.getKtfQtXzdzwById(this.bsmSjsb);
......@@ -178,6 +182,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -115,6 +115,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await ktfZdbhqk.getKtfZdbhqkById(this.bsmSjsb);
......@@ -124,6 +128,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -97,6 +97,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await ktfZhYhydzb.getKtfZhYhydzbById(
......@@ -108,6 +112,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -109,6 +109,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await ktfZhYhzk.getKtfZhYhzkById(this.bsmSjsb);
......@@ -118,6 +122,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -103,6 +103,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await zhK105.getZhK105ById(this.bsmSjsb);
......@@ -112,6 +116,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -218,6 +218,10 @@
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await kttFwC.getKttFwCById(this.bsmSjsb);
......@@ -227,6 +231,10 @@
this.$refs.msg.messageShow()
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -518,6 +518,10 @@
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await kttFwH.getKttFwHById(this.bsmSjsb);
......@@ -527,6 +531,10 @@
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -321,6 +321,10 @@
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await kttFwLjz.getKttFwLjzById(this.bsmSjsb);
......@@ -330,6 +334,10 @@
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -371,6 +371,10 @@
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await kttFwZrz.getKttFwZrzById(this.bsmSjsb);
......@@ -380,6 +384,10 @@
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve) => {
try {
......
......@@ -160,6 +160,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await kttGyJzd.getKttGyJzdById(this.bsmSjsb);
......@@ -169,6 +173,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -189,6 +189,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await kttGyJzx.getKttGyJzxById(this.bsmSjsb);
......@@ -198,6 +202,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -160,6 +160,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await kttGzw.getKttGzwById(this.bsmSjsb);
......@@ -169,6 +173,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -445,6 +445,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await kttZdjbxx.kttZdjbxxDetail(this.bsmSjsb);
......@@ -454,6 +458,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -437,6 +437,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await kttZhjbxx.getKttZhjbxxById(this.bsmSjsb);
......@@ -446,6 +450,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -164,6 +164,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfFwFdcqDzXm.getQlfFwFdcqDzXmById(
......@@ -175,6 +179,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -220,6 +220,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfFwFdcqQfsyq.getQlfFwFdcqQfsyqById(
......@@ -231,6 +235,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
<!--
* @Description : 查封登记信息页面
* @Autor : miaofang
* @Autor : miaofang
* @LastEditTime : 2023-05-17 13:52:33
-->
<template>
......@@ -311,6 +311,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlCfdj.getQlfQlCfdjById(this.bsmSjsb);
......@@ -320,6 +324,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -319,6 +319,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlDyaq.getQlfQlDyaqById(this.bsmSjsb);
......@@ -328,6 +332,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -340,6 +340,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlDyiq.getQlfQlDyiqById(this.bsmSjsb);
......@@ -349,6 +353,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -210,6 +210,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlGzdj.getQlfQlGzdjById(this.bsmSjsb);
......@@ -219,6 +223,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -297,6 +297,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlHysyq.getQlfQlHysyqById(this.bsmSjsb);
......@@ -306,6 +310,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -273,6 +273,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlJsydsyq.getQlfQlJsydsyqById(
......@@ -284,6 +288,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -353,6 +353,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlNydsyq.getQlfQlNydsyqByID(
......@@ -364,6 +368,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -344,6 +344,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlQtxgql.getQlfQlQtxgqlById(
......@@ -355,6 +359,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -310,6 +310,10 @@ export default {
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await qlfQlTdsyq.getQlfQlTdsyqById(this.bsmSjsb)
......@@ -319,6 +323,10 @@ export default {
this.$refs.msg.messageShow()
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -461,6 +461,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlYgdj.getQlfQlYgdjById(this.bsmSjsb);
......@@ -470,6 +474,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -212,6 +212,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlYydj.getQlfQlYydjById(this.bsmSjsb);
......@@ -221,6 +225,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -182,6 +182,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData() {
try {
let { result: res } = await qlfQlZxdj.getQlfQlZxdjById(this.bsmSjsb);
......@@ -191,6 +195,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm() {
return new Promise(async (resolve) => {
try {
......
......@@ -315,6 +315,10 @@ export default {
}
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await qltFwFdcqDz.getQltFwFdcqDzById(this.bsmSjsb)
......@@ -324,6 +328,10 @@ export default {
this.$refs.msg.messageShow()
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve, reject) => {
try {
......
......@@ -411,6 +411,10 @@ export default {
};
},
methods: {
/**
* @description: featchData
* @author: renchao
*/
async featchData () {
try {
let { result: res } = await qltFwFdcqYz.getQltFwFdcqYzById(
......@@ -422,6 +426,10 @@ export default {
this.$refs.msg.messageShow();
}
},
/**
* @description: handleUpdateForm
* @author: renchao
*/
handleUpdateForm () {
return new Promise(async (resolve) => {
try {
......