import req from '@/request.js' const portal = window.context.portal const headers = { 'Content-type': 'application/x-www-form-urlencoded' } export default { //账面净值 bookValue(data, cb) { req.post(portal + `/biz/home/bookValue`, data).then(res => { cb(res.data) }) }, //经营性资产 businessStatistics(data, cb) { req.post(portal + `/biz/home/businessStatistics`, data).then(res => { cb(res.data) }) }, //土地资产 landStatistics(data, cb) { req.post(portal + `/biz/home/landStatistics`, data).then(res => { cb(res.data) }) }, //固定资产价值 fixedStatistics(data, cb) { req.post(portal + `/biz/home/fixedStatistics`, data).then(res => { cb(res.data) }) }, //借款利息统计 loanStatistics(data, cb) { req.post(portal + `/biz/home/loanStatistics`, data).then(res => { cb(res.data) }) }, //股权公司统计 stockStatistics(data, cb) { req.post(portal + `/biz/home/stockStatistics`, data).then(res => { cb(res.data) }) }, //无形资产统计 intangibleStatistics(data, cb) { req.post(portal + `/biz/home/intangibleStatistics`, data).then(res => { cb(res.data) }) }, //公益资产统计 publicStatistics(data, cb) { req.post(portal + `/biz/home/publicStatistics`, data).then(res => { cb(res.data) }) }, }