123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- import request from '@/utils/request'
- // 查询参数列表
- export function listConfig(query) {
- return request({
- url: '/system/config/list',
- method: 'get',
- params: query
- })
- }
- export function listConfigfieu(query) {
- return request({
- url: '/system/dept/deptList',
- method: 'get',
- params: query
- })
- }
- // 查询在谈线索信息
- export function listConfigtwo(query) {
- return request({
- url: '/projectInfo/info/' + query,
- method: 'get'
- // params:
- })
- }
- export function listConfigthert(query) {
- return request({
- url: '/projectInvestor/investor/list',
- method: 'get'
- // params:
- })
- }
- export function listConfigfour(query) {
- return request({
- url: '/projectPersion/persion/list',
- method: 'get'
- // params:
- })
- }
- //字典
- export function listConfigther(query) {
- return request({
- url: '/system/dict/data/type/project_status',
- method: 'get'
- // params:
- })
- }
- export function listConfigfive(query) {
- return request({
- url: '/projectConstruction/construction/' +query,
- method: 'get'
- // params:
- })
- }
- export function listConfigsix(query) {
- return request({
- url: '/constructionRate/rate/list',
- method: 'get'
- // params:
- })
- }
- export function listConfigserve(query) {
- return request({
- url: '/constructionEq/constructionEq/list',
- method: 'get'
- // params:
- })
- }
- export function listConfigfunding(query) {
- return request({
- url: '/constructionPay/pay/list',
- method: 'get'
- // params:
- })
- }
- export function listConfigarrival(data) {
- return request({
- url: '/constructionPay/pay/payForMoneyALL',
- method: 'post',
- data: data
- })
- }
- export function listConfigintegration(data) {
- return request({
- url: '/constructionPayInfo/payInfo/' + data,
- method: 'get'
- // data: data
- })
- }
- // 查询参数详细
- export function getConfig(configId) {
- return request({
- url: '/projectInvestor/investor/' + configId,
- method: 'get'
- })
- }
- // 根据参数键名查询参数值
- export function getConfigKey(configKey) {
- return request({
- url: '/system/config/configKey/' + configKey,
- method: 'get'
- })
- }
- export function getConfigKeytwo(configKey) {
- return request({
- url: '/projectPersion/persion/' + configKey,
- method: 'get'
- })
- }
- // 新增参数配置
- export function addConfig(data) {
- return request({
- url: '/projectInvestor/investor',
- method: 'post',
- data: data
- })
- }
- export function addConfigalking (data) {
- return request({
- url: '/projectInfo/info',
- method: 'post',
- data: data
- })
- }
- export function addConfigtwo(data) {
- return request({
- url: '/projectPersion/persion',
- method: 'post',
- data: data
- })
- }
- export function addConfigther(data) {
- return request({
- url: '/constructionRate/rate',
- method: 'post',
- data: data
- })
- }
- export function addConfigtherction(data) {
- return request({
- url: '/projectConstruction/construction',
- method: 'post',
- data: data
- })
- }
- export function addConfigfour(data) {
- return request({
- url: '/constructionEq/constructionEq',
- method: 'post',
- data: data
- })
- }
- export function addConfigfiv(data) {
- return request({
- url: '/constructionPay/pay',
- method: 'post',
- data: data
- })
- }
- export function addConfigsix(data) {
- return request({
- url: '/constructionPayInfo/payInfo',
- method: 'post',
- data: data
- })
- }
- // 修改参数配置
- export function updateConfig(data) {
- return request({
- url: '/projectInvestor/investor',
- method: 'put',
- data: data
- })
- }
- export function updateConfigalking(data) {
- return request({
- url: '/projectInfo/info',
- method: 'put',
- data: data
- })
- }
- export function updateConfigtwo(data) {
- return request({
- url: '/projectPersion/persion',
- method: 'put',
- data: data
- })
- }
- // 删除参数配置
- export function delConfig(configId) {
- return request({
- url: '/projectInvestor/investor/' + configId,
- method: 'delete'
- })
- }
- export function delConfigtwo(configId) {
- return request({
- url: '/projectPersion/persion/' + configId,
- method: 'delete'
- })
- }
- export function delConfigther(configId) {
- return request({
- url: '/constructionRate/rate/' + configId,
- method: 'delete'
- })
- }
- export function delConfigfour(configId) {
- return request({
- url: '/constructionEq/constructionEq/' + configId,
- method: 'delete'
- })
- }
- export function delConfigfive(configId) {
- return request({
- url: '/constructionPay/pay/' + configId,
- method: 'delete'
- })
- }
- // 清理参数缓存
- export function clearCache() {
- return request({
- url: '/system/config/clearCache',
- method: 'delete'
- })
- }
- // 导出参数
- export function exportConfig(query) {
- return request({
- url: '/system/config/export',
- method: 'get',
- params: query
- })
- }
|