diff --git a/pages/operatingStatements/index.vue b/pages/operatingStatements/index.vue index 7465e8e..56e92b1 100644 --- a/pages/operatingStatements/index.vue +++ b/pages/operatingStatements/index.vue @@ -84,16 +84,17 @@ 经营报表 -
+
+ 温馨提示:模糊查询不支持选择经营方法/结算方式 {{pageData.msg.SearchResult[0]}} {{`经营模式: ${BusinessTypeList.filter(item=> item.value===BusinessTypeValue)[0].label}`}} {{`结算模式: ${SettlementModeList.filter(item=> item.value===SettlementModeValue)[0].label}`}}
- 温馨提示:模糊查询不支持选择经营方法/结算方式 + 温馨提示:模糊查询不支持选择经营方法/结算方式
- {{searchText}} + {{copySearchText}} {{subItem}}
@@ -181,7 +182,7 @@ - + - - - - - - - - - - - - -
确认
@@ -285,6 +273,7 @@ queryTime:'',// 传入的时间 lastDay:'',// 首页的实际时间 searchText:'',// 搜索框内容 + copySearchText:'',// 搜索框内容复制 requestText:'',// 已经请求过接口的查询框内容 isScreen:false,// 显示popup里面的内容 checkBoxValue:['MerchantName','Brand','Shop','Serverpart'],// 查询的字段放接口里的 @@ -298,7 +287,8 @@ selectTimeOther:false, timePopup:false, searchTimePopup: [null,null], - showNotice:false + showNotice:false, + showModal:false,// 显示模式 } }, computed:{ @@ -309,20 +299,13 @@ handleShowNotice(){ this.showNotice = !this.showNotice }, - // 查询配置框 点击蒙层关闭 - handleChangePopupMask(e){ - console.log('e',e) - }, // 自定义时间选框里面的选择 handleChangeTimePopup(e,index){ - console.log('e',e) - console.log('index',index) this.searchTimePopup[index] = e.detail.value this.$forceUpdate() }, // 自定义时间选框的确定 handleTimePopup(){ - console.log('this.searchTimePopup',this.searchTimePopup) this.pageData.searchTime = this.searchTimePopup this.$refs.timePopup.close() }, @@ -382,12 +365,8 @@ } const data = await request.$webGet('EShangApiMain/FrameWork/GetFieldEnumTree',req) let list = wrapTreeNode(data.Result_Data.List) - console.log('list',list) return list }, - handleChangeCheckBox(e){ - this.checkChange = e.detail.value - }, handleConfirmCheckChange(){ this.checkBoxValue = this.checkChange this.$refs.popup.close() @@ -434,7 +413,6 @@ this.$forceUpdate() }, toDetail(item){ - console.log('item',item) this.$util.toNextRoute('navigateTo', '/pages/operatingStatements/detail?pcode='+item.Province_Code+'&id=' + item.Serverpart_Id + '&st=' + this.pageData.searchTime[0]+ '&et=' + this.pageData.searchTime[1]+ '&searchKey='+JSON.parse(JSON.stringify(this.checkBoxValue)) + '&searchValue='+this.requestText+ @@ -443,6 +421,7 @@ this.$forceUpdate() }, getList(){ + this.copySearchText= '' uni.showLoading({ title:'正在加载', mask:true @@ -450,30 +429,6 @@ let _this = this let searchTime = this.pageData.searchTime - // if(this.selectTime){ - // console.log('selectTime',this.selectTime) - // let startTime; - // let endTime; - // if (this.selectTime===1){ - // endTime = moment().subtract(1, 'day').format('YYYY-MM-DD') - // startTime = moment().subtract(7, 'day').format('YYYY-MM-DD') - // searchTime = [startTime,endTime] - // }else if(this.selectTime===2){ - // endTime = moment().subtract(1, 'day').format('YYYY-MM-DD') - // startTime = moment().subtract(30, 'day').format('YYYY-MM-DD') - // searchTime = [startTime,endTime] - // }else if(this.selectTime===3){ - // endTime = moment().subtract(1, 'day').format('YYYY-MM-DD') - // startTime = moment().subtract(90, 'day').format('YYYY-MM-DD') - // searchTime = [startTime,endTime] - // }else if(this.selectTime===3){ - // endTime = moment().subtract(1, 'day').format('YYYY-MM-DD') - // startTime = moment().subtract(180, 'day').format('YYYY-MM-DD') - // searchTime = [startTime,endTime] - // } - // }else{ - // searchTime = this.pageData.searchTime - // } let searchName = '' this.checkBoxValue.forEach(item=>{ if (searchName){ @@ -488,14 +443,12 @@ endTime: searchTime[1], SearchKeyName:searchName, SearchKeyValue:this.searchText, - BusinessType:this.BusinessTypeValue?this.BusinessTypeValue:'', - SettlementMode:this.SettlementModeValue?this.SettlementModeValue:'', + BusinessType:this.searchText?'':this.BusinessTypeValue?this.BusinessTypeValue:'', + SettlementMode:this.searchText?'':this.SettlementModeValue?this.SettlementModeValue:'', // additionalCode: this.ProvinceCode=='330000' ? '451200,630000' :'' } - console.log('req',req) // _this.$request.$webGet('WeChat/GetRevenueReport',{ request.$webGet('CommercialApi/Revenue/GetRevenueReport',req).then(res=>{ - console.log('res',res) if(res.Result_Code==100) { _this.pageData.msg = res.Result_Data _this.pageData.msg.countave = (Number(_this.pageData.msg.Province_InsideAmount) / Number(_this.pageData.msg.TotalCount)).toFixed(2) @@ -510,14 +463,20 @@ } // _this.pageData.msg.SearchResult - if (this.BusinessTypeValue === 0 && this.SettlementModeValue === 0){ + if (this.searchText){ + this.showModal = false if (res.Result_Data.SearchResult){ let newList = [] res.Result_Data.SearchResult.forEach(item=>{ newList.push(item.split(this.searchText)) _this.pageData.msg.SearchResult = newList + _this.copySearchText = JSON.parse(JSON.stringify(this.searchText)) }) } + }else{ + if (this.BusinessTypeValue || this.SettlementModeValue){ + this.showModal = true + } } _this.ServerpartList = res.Result_Data.revenueRegionModels }else if(res.Result_Code==200 || res.Result_Code==999){ @@ -534,8 +493,6 @@ uni.hideLoading() _this.pageData.isLoading =false _this.$forceUpdate() - console.log('this.BusinessTypeValue',this.BusinessTypeValue) - console.log('this.SettlementModeValue',this.SettlementModeValue) }) } }, @@ -573,7 +530,6 @@ } this.BusinessTypeList = await this.handleEnumeration('BUSINESS_TYPE') this.SettlementModeList = await this.handleEnumeration('SETTLEMENT_MODES') - console.log('BusinessTypeList',this.BusinessTypeList) this.getList() } } diff --git a/pages/revenue/expenditureData.js b/pages/revenue/expenditureData.js index cd53c90..72e9486 100644 --- a/pages/revenue/expenditureData.js +++ b/pages/revenue/expenditureData.js @@ -94,7 +94,36 @@ const data = [ monthExecute: null,// 本月执行 万元 accumulateExecute: null,// 累计执行 万元 }, - ]// 按本月完成进度占比数排序 + ],// 按本月完成进度占比数排序 + [ + { + name: '服务区', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '城市店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '批发团购及通道费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ]// 按年度计划预算数值排序 ] }, { @@ -189,6 +218,35 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '服务区', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '客房', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '城市店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -907,6 +965,242 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '租赁费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '折旧费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '咨询费/中介费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物业管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '业务招待费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '会议费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职工教育经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '纪检费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '会费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -2210,6 +2504,569 @@ const data = [ ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '物管经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '经营经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '行政经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, { @@ -5307,6 +6164,1436 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '租赁费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '安全生产费(含防疫费)', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '印刷费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '服装费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '中介费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '折旧及摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职工薪酬', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + } + ],// 按告警情况排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '物业管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -5414,7 +7701,36 @@ const data = [ monthExecute: null,// 本月执行 万元 accumulateExecute: null,// 累计执行 万元 }, - ]// 按本月完成进度占比数排序 + ],// 按本月完成进度占比数排序 + [ + { + name: '服务区', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '城市店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '批发团购及通道费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ]// 按年度计划预算数值排序 ] }, { @@ -5509,6 +7825,35 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '服务区', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '客房', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '城市店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -6227,6 +8572,242 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '租赁费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '折旧费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '咨询费/中介费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物业管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '业务招待费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '会议费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职工教育经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '纪检费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '会费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -7530,6 +10111,569 @@ const data = [ ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '物管经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '经营经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '行政经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, { @@ -10627,6 +13771,1436 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '租赁费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '安全生产费(含防疫费)', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '印刷费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '服装费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '中介费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '折旧及摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职工薪酬', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + } + ],// 按告警情况排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '物业管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -10734,7 +15308,36 @@ const data = [ monthExecute: null,// 本月执行 万元 accumulateExecute: null,// 累计执行 万元 }, - ]// 按本月完成进度占比数排序 + ],// 按本月完成进度占比数排序 + [ + { + name: '服务区', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '城市店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '批发团购及通道费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ]// 按年度计划预算数值排序 ] }, { @@ -10829,6 +15432,35 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '服务区', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '客房', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '城市店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -11547,6 +16179,242 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '租赁费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '折旧费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '咨询费/中介费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物业管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '业务招待费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '会议费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职工教育经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '纪检费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '会费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -12850,6 +17718,569 @@ const data = [ ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '物管经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '水电费——其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——电费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '水电费——水费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——物管', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '环保费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '经营经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '行政经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '办公费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '宣传费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '通讯费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '车辆费用/交通费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '综合协调费/差旅费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, { @@ -15947,6 +21378,1436 @@ const data = [ accumulateExecute: null,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '租赁费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '安全生产费(含防疫费)', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '印刷费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '服装费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '中介费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '其他', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '折旧及摊销', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职工薪酬', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + } + ],// 按告警情况排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + ] + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '保险', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工资', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '福利', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '物业管理费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: null,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] } ], @@ -19064,169 +25925,6 @@ const data = [ ],// 按年度计划预算数值排序 ] }, - { - name: '经营经费', - monthRate: 76.86,// 本月完成进度占比 - accumulateRate: 61.33,// 累计完成进度占比 - budgetMonth: 93.50,// 本月预算 万元 - budgetYear: 681.00,// 年度预算 万元 - monthExecute: 71.86,// 本月执行 万元 - accumulateExecute: 417.64,// 累计执行 万元 - list:[ - [ - { - name: '营销费用', - monthRate: 0.00,// 本月完成进度占比 - accumulateRate: 6.88,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 90.00,// 年度预算 万元 - monthExecute: 0.00,// 本月执行 万元 - accumulateExecute: 6.19,// 累计执行 万元 - }, - { - name: '物料消耗——餐饮', - monthRate: 3.89,// 本月完成进度占比 - accumulateRate: 33.24,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 38.00,// 年度预算 万元 - monthExecute: 0.31,// 本月执行 万元 - accumulateExecute: 12.63,// 累计执行 万元 - }, - { - name: '物料消耗——便利店', - monthRate: 51.32,// 本月完成进度占比 - accumulateRate: 57.13,// 累计完成进度占比 - budgetMonth: 20.00,// 本月预算 万元 - budgetYear: 123.00,// 年度预算 万元 - monthExecute: 10.26,// 本月执行 万元 - accumulateExecute: 70.27,// 累计执行 万元 - }, - { - name: '低值易耗品', - monthRate: 106.58,// 本月完成进度占比 - accumulateRate: 76.41,// 累计完成进度占比 - budgetMonth: 57.50,// 本月预算 万元 - budgetYear: 430.00,// 年度预算 万元 - monthExecute: 61.28,// 本月执行 万元 - accumulateExecute: 328.55,// 累计执行 万元 - }, - ],// 按告警情况排序 - [ - { - name: '低值易耗品', - monthRate: 106.58,// 本月完成进度占比 - accumulateRate: 76.41,// 累计完成进度占比 - budgetMonth: 57.50,// 本月预算 万元 - budgetYear: 430.00,// 年度预算 万元 - monthExecute: 61.28,// 本月执行 万元 - accumulateExecute: 328.55,// 累计执行 万元 - }, - { - name: '物料消耗——便利店', - monthRate: 51.32,// 本月完成进度占比 - accumulateRate: 57.13,// 累计完成进度占比 - budgetMonth: 20.00,// 本月预算 万元 - budgetYear: 123.00,// 年度预算 万元 - monthExecute: 10.26,// 本月执行 万元 - accumulateExecute: 70.27,// 累计执行 万元 - }, - { - name: '物料消耗——餐饮', - monthRate: 3.89,// 本月完成进度占比 - accumulateRate: 33.24,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 38.00,// 年度预算 万元 - monthExecute: 0.31,// 本月执行 万元 - accumulateExecute: 12.63,// 累计执行 万元 - }, - { - name: '营销费用', - monthRate: 0.00,// 本月完成进度占比 - accumulateRate: 6.88,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 90.00,// 年度预算 万元 - monthExecute: 0.00,// 本月执行 万元 - accumulateExecute: 6.19,// 累计执行 万元 - }, - ],// 按累计完成进度占比数排序 - [ - { - name: '低值易耗品', - monthRate: 106.58,// 本月完成进度占比 - accumulateRate: 76.41,// 累计完成进度占比 - budgetMonth: 57.50,// 本月预算 万元 - budgetYear: 430.00,// 年度预算 万元 - monthExecute: 61.28,// 本月执行 万元 - accumulateExecute: 328.55,// 累计执行 万元 - }, - { - name: '物料消耗——便利店', - monthRate: 51.32,// 本月完成进度占比 - accumulateRate: 57.13,// 累计完成进度占比 - budgetMonth: 20.00,// 本月预算 万元 - budgetYear: 123.00,// 年度预算 万元 - monthExecute: 10.26,// 本月执行 万元 - accumulateExecute: 70.27,// 累计执行 万元 - }, - { - name: '物料消耗——餐饮', - monthRate: 3.89,// 本月完成进度占比 - accumulateRate: 33.24,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 38.00,// 年度预算 万元 - monthExecute: 0.31,// 本月执行 万元 - accumulateExecute: 12.63,// 累计执行 万元 - }, - { - name: '营销费用', - monthRate: 0.00,// 本月完成进度占比 - accumulateRate: 6.88,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 90.00,// 年度预算 万元 - monthExecute: 0.00,// 本月执行 万元 - accumulateExecute: 6.19,// 累计执行 万元 - }, - ],// 按本月完成进度占比数排序 - [ - { - name: '低值易耗品', - monthRate: 106.58,// 本月完成进度占比 - accumulateRate: 76.41,// 累计完成进度占比 - budgetMonth: 57.50,// 本月预算 万元 - budgetYear: 430.00,// 年度预算 万元 - monthExecute: 61.28,// 本月执行 万元 - accumulateExecute: 328.55,// 累计执行 万元 - }, - { - name: '物料消耗——便利店', - monthRate: 51.32,// 本月完成进度占比 - accumulateRate: 57.13,// 累计完成进度占比 - budgetMonth: 20.00,// 本月预算 万元 - budgetYear: 123.00,// 年度预算 万元 - monthExecute: 10.26,// 本月执行 万元 - accumulateExecute: 70.27,// 累计执行 万元 - }, - { - name: '营销费用', - monthRate: 0.00,// 本月完成进度占比 - accumulateRate: 6.88,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 90.00,// 年度预算 万元 - monthExecute: 0.00,// 本月执行 万元 - accumulateExecute: 6.19,// 累计执行 万元 - }, - { - name: '物料消耗——餐饮', - monthRate: 3.89,// 本月完成进度占比 - accumulateRate: 33.24,// 累计完成进度占比 - budgetMonth: 8.00,// 本月预算 万元 - budgetYear: 38.00,// 年度预算 万元 - monthExecute: 0.31,// 本月执行 万元 - accumulateExecute: 12.63,// 累计执行 万元 - }, - ],// 按年度计划预算数值排序 - ] - }, { name: '行政经费', monthRate: 55.03,// 本月完成进度占比 @@ -19426,6 +26124,169 @@ const data = [ ],// 按年度计划预算数值排序 ] }, + { + name: '经营经费', + monthRate: 76.86,// 本月完成进度占比 + accumulateRate: 61.33,// 累计完成进度占比 + budgetMonth: 93.50,// 本月预算 万元 + budgetYear: 681.00,// 年度预算 万元 + monthExecute: 71.86,// 本月执行 万元 + accumulateExecute: 417.64,// 累计执行 万元 + list:[ + [ + { + name: '营销费用', + monthRate: 0.00,// 本月完成进度占比 + accumulateRate: 6.88,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 90.00,// 年度预算 万元 + monthExecute: 0.00,// 本月执行 万元 + accumulateExecute: 6.19,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: 3.89,// 本月完成进度占比 + accumulateRate: 33.24,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 38.00,// 年度预算 万元 + monthExecute: 0.31,// 本月执行 万元 + accumulateExecute: 12.63,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: 51.32,// 本月完成进度占比 + accumulateRate: 57.13,// 累计完成进度占比 + budgetMonth: 20.00,// 本月预算 万元 + budgetYear: 123.00,// 年度预算 万元 + monthExecute: 10.26,// 本月执行 万元 + accumulateExecute: 70.27,// 累计执行 万元 + }, + { + name: '低值易耗品', + monthRate: 106.58,// 本月完成进度占比 + accumulateRate: 76.41,// 累计完成进度占比 + budgetMonth: 57.50,// 本月预算 万元 + budgetYear: 430.00,// 年度预算 万元 + monthExecute: 61.28,// 本月执行 万元 + accumulateExecute: 328.55,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '低值易耗品', + monthRate: 106.58,// 本月完成进度占比 + accumulateRate: 76.41,// 累计完成进度占比 + budgetMonth: 57.50,// 本月预算 万元 + budgetYear: 430.00,// 年度预算 万元 + monthExecute: 61.28,// 本月执行 万元 + accumulateExecute: 328.55,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: 51.32,// 本月完成进度占比 + accumulateRate: 57.13,// 累计完成进度占比 + budgetMonth: 20.00,// 本月预算 万元 + budgetYear: 123.00,// 年度预算 万元 + monthExecute: 10.26,// 本月执行 万元 + accumulateExecute: 70.27,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: 3.89,// 本月完成进度占比 + accumulateRate: 33.24,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 38.00,// 年度预算 万元 + monthExecute: 0.31,// 本月执行 万元 + accumulateExecute: 12.63,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: 0.00,// 本月完成进度占比 + accumulateRate: 6.88,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 90.00,// 年度预算 万元 + monthExecute: 0.00,// 本月执行 万元 + accumulateExecute: 6.19,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: 106.58,// 本月完成进度占比 + accumulateRate: 76.41,// 累计完成进度占比 + budgetMonth: 57.50,// 本月预算 万元 + budgetYear: 430.00,// 年度预算 万元 + monthExecute: 61.28,// 本月执行 万元 + accumulateExecute: 328.55,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: 51.32,// 本月完成进度占比 + accumulateRate: 57.13,// 累计完成进度占比 + budgetMonth: 20.00,// 本月预算 万元 + budgetYear: 123.00,// 年度预算 万元 + monthExecute: 10.26,// 本月执行 万元 + accumulateExecute: 70.27,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: 3.89,// 本月完成进度占比 + accumulateRate: 33.24,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 38.00,// 年度预算 万元 + monthExecute: 0.31,// 本月执行 万元 + accumulateExecute: 12.63,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: 0.00,// 本月完成进度占比 + accumulateRate: 6.88,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 90.00,// 年度预算 万元 + monthExecute: 0.00,// 本月执行 万元 + accumulateExecute: 6.19,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '低值易耗品', + monthRate: 106.58,// 本月完成进度占比 + accumulateRate: 76.41,// 累计完成进度占比 + budgetMonth: 57.50,// 本月预算 万元 + budgetYear: 430.00,// 年度预算 万元 + monthExecute: 61.28,// 本月执行 万元 + accumulateExecute: 328.55,// 累计执行 万元 + }, + { + name: '物料消耗——便利店', + monthRate: 51.32,// 本月完成进度占比 + accumulateRate: 57.13,// 累计完成进度占比 + budgetMonth: 20.00,// 本月预算 万元 + budgetYear: 123.00,// 年度预算 万元 + monthExecute: 10.26,// 本月执行 万元 + accumulateExecute: 70.27,// 累计执行 万元 + }, + { + name: '营销费用', + monthRate: 0.00,// 本月完成进度占比 + accumulateRate: 6.88,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 90.00,// 年度预算 万元 + monthExecute: 0.00,// 本月执行 万元 + accumulateExecute: 6.19,// 累计执行 万元 + }, + { + name: '物料消耗——餐饮', + monthRate: 3.89,// 本月完成进度占比 + accumulateRate: 33.24,// 累计完成进度占比 + budgetMonth: 8.00,// 本月预算 万元 + budgetYear: 38.00,// 年度预算 万元 + monthExecute: 0.31,// 本月执行 万元 + accumulateExecute: 12.63,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, ],// 按年度计划预算数值排序 ] }, @@ -20458,6 +27319,44 @@ const data = [ accumulateExecute: 1655.88,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] }, { @@ -20637,12 +27536,467 @@ const data = [ accumulateExecute: 96.87,// 累计执行 万元 }, ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: 151.67,// 本月完成进度占比 + accumulateRate: 91.90,// 累计完成进度占比 + budgetMonth: 1245.00,// 本月预算 万元 + budgetYear: 17642.00,// 年度预算 万元 + monthExecute: 1888.28,// 本月执行 万元 + accumulateExecute: 16212.72,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 1006.55,// 本月预算 万元 + budgetYear: 10453.00,// 年度预算 万元 + monthExecute: 1019.76,// 本月执行 万元 + accumulateExecute: 8760.86,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, - { name: '物业管理费', monthRate: 280.80,// 本月完成进度占比 @@ -21653,6 +29007,406 @@ const data = [ ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: 151.67,// 本月完成进度占比 + accumulateRate: 91.90,// 累计完成进度占比 + budgetMonth: 1245.00,// 本月预算 万元 + budgetYear: 17642.00,// 年度预算 万元 + monthExecute: 1888.28,// 本月执行 万元 + accumulateExecute: 16212.72,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 1006.55,// 本月预算 万元 + budgetYear: 10453.00,// 年度预算 万元 + monthExecute: 1019.76,// 本月执行 万元 + accumulateExecute: 8760.86,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, { @@ -22701,6 +30455,406 @@ const data = [ ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: 151.67,// 本月完成进度占比 + accumulateRate: 91.90,// 累计完成进度占比 + budgetMonth: 1245.00,// 本月预算 万元 + budgetYear: 17642.00,// 年度预算 万元 + monthExecute: 1888.28,// 本月执行 万元 + accumulateExecute: 16212.72,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 1006.55,// 本月预算 万元 + budgetYear: 10453.00,// 年度预算 万元 + monthExecute: 1019.76,// 本月执行 万元 + accumulateExecute: 8760.86,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, { @@ -22714,96 +30868,6 @@ const data = [ }, ],// 按本月完成进度占比数排序 [ - { - name: '租赁费', - monthRate: -368.51,// 本月完成进度占比 - accumulateRate: 56.18,// 累计完成进度占比 - budgetMonth: 56.20,// 本月预算 万元 - budgetYear: 2323.00,// 年度预算 万元 - monthExecute: -207.10,// 本月执行 万元 - accumulateExecute: 1305.03,// 累计执行 万元 - }, - { - name: '安全生产费(含防疫费)', - monthRate: -256.78,// 本月完成进度占比 - accumulateRate: 34.42,// 累计完成进度占比 - budgetMonth: 60.00,// 本月预算 万元 - budgetYear: 675.00,// 年度预算 万元 - monthExecute: -154.07,// 本月执行 万元 - accumulateExecute: 232.31,// 累计执行 万元 - }, - { - name: '印刷费', - monthRate: null,// 本月完成进度占比 - accumulateRate: null,// 累计完成进度占比 - budgetMonth: null,// 本月预算 万元 - budgetYear: null,// 年度预算 万元 - monthExecute: null,// 本月执行 万元 - accumulateExecute: 0.00,// 累计执行 万元 - }, - { - name: '信息系统费', - monthRate: null,// 本月完成进度占比 - accumulateRate: null,// 累计完成进度占比 - budgetMonth: null,// 本月预算 万元 - budgetYear: null,// 年度预算 万元 - monthExecute: 75.43,// 本月执行 万元 - accumulateExecute: 115.16,// 累计执行 万元 - }, - { - name: '服装费', - monthRate: 0.00,// 本月完成进度占比 - accumulateRate: 29.66,// 累计完成进度占比 - budgetMonth: 87.80,// 本月预算 万元 - budgetYear: 500.00,// 年度预算 万元 - monthExecute: 0.00,// 本月执行 万元 - accumulateExecute: 148.30,// 累计执行 万元 - }, - { - name: '中介费', - monthRate: 0.00,// 本月完成进度占比 - accumulateRate: 49.67,// 累计完成进度占比 - budgetMonth: 13.07,// 本月预算 万元 - budgetYear: 278.00,// 年度预算 万元 - monthExecute: 0.67,// 本月执行 万元 - accumulateExecute: 138.08,// 累计执行 万元 - }, - { - name: '党团建设费用', - monthRate: 0.01,// 本月完成进度占比 - accumulateRate: 12.27,// 累计完成进度占比 - budgetMonth: 4.5,// 本月预算 万元 - budgetYear: 40.00,// 年度预算 万元 - monthExecute: 4.91,// 本月执行 万元 - accumulateExecute: 4.91,// 累计执行 万元 - }, - { - name: '其他', - monthRate: 4.08,// 本月完成进度占比 - accumulateRate: 229.73,// 累计完成进度占比 - budgetMonth: 1.00,// 本月预算 万元 - budgetYear: 16.00,// 年度预算 万元 - monthExecute: 0.04,// 本月执行 万元 - accumulateExecute: 36.76,// 累计执行 万元 - }, - { - name: '维改摊销', - monthRate: 63.98,// 本月完成进度占比 - accumulateRate: 67.69,// 累计完成进度占比 - budgetMonth: 257.95,// 本月预算 万元 - budgetYear: 2275.00,// 年度预算 万元 - monthExecute: 165.04,// 本月执行 万元 - accumulateExecute: 1540.06,// 累计执行 万元 - }, - { - name: '折旧及摊销', - monthRate: 99.13,// 本月完成进度占比 - accumulateRate: 97.72,// 累计完成进度占比 - budgetMonth: 154.00,// 本月预算 万元 - budgetYear: 2212.00,// 年度预算 万元 - monthExecute: 152.66,// 本月执行 万元 - accumulateExecute: 2161.63,// 累计执行 万元 - }, { name: '职工薪酬', monthRate: 129.16,// 本月完成进度占比 @@ -23731,8 +31795,453 @@ const data = [ ] }, ],// 按本月完成进度占比数排序 + [ + { + name: '劳务人员', + monthRate: 151.67,// 本月完成进度占比 + accumulateRate: 91.90,// 累计完成进度占比 + budgetMonth: 1245.00,// 本月预算 万元 + budgetYear: 17642.00,// 年度预算 万元 + monthExecute: 1888.28,// 本月执行 万元 + accumulateExecute: 16212.72,// 累计执行 万元 + list:[ + [ + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 170.70,// 本月完成进度占比 + accumulateRate: 95.31,// 累计完成进度占比 + budgetMonth: 880.00,// 本月预算 万元 + budgetYear: 13268.00,// 年度预算 万元 + monthExecute: 1502.13,// 本月执行 万元 + accumulateExecute: 12645.07,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 130.93,// 本月完成进度占比 + accumulateRate: 83.59,// 累计完成进度占比 + budgetMonth: 172.00,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 225.20,// 本月执行 万元 + accumulateExecute: 1901.71,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 82.63,// 本月完成进度占比 + accumulateRate: 79.61,// 累计完成进度占比 + budgetMonth: 190.00,// 本月预算 万元 + budgetYear: 2080.00,// 年度预算 万元 + monthExecute: 157.00,// 本月执行 万元 + accumulateExecute: 1655.88,// 累计执行 万元 + }, + { + name: '管理费', + monthRate: 131.83,// 本月完成进度占比 + accumulateRate: 52.90,// 累计完成进度占比 + budgetMonth: 3.00,// 本月预算 万元 + budgetYear: 19.00,// 年度预算 万元 + monthExecute: 3.95,// 本月执行 万元 + accumulateExecute: 10.05,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + { + name: '管理人员', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 1006.55,// 本月预算 万元 + budgetYear: 10453.00,// 年度预算 万元 + monthExecute: 1019.76,// 本月执行 万元 + accumulateExecute: 8760.86,// 累计执行 万元 + list:[ + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按告警情况排序 + [ + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + ],// 按累计完成进度占比数排序 + [ + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + ],// 按本月完成进度占比数排序 + [ + { + name: '工资', + monthRate: 105.70,// 本月完成进度占比 + accumulateRate: 81.88,// 累计完成进度占比 + budgetMonth: 691.20,// 本月预算 万元 + budgetYear: 7109.00,// 年度预算 万元 + monthExecute: 730.57,// 本月执行 万元 + accumulateExecute: 5820.80,// 累计执行 万元 + }, + { + name: '保险', + monthRate: 110.99,// 本月完成进度占比 + accumulateRate: 97.74,// 累计完成进度占比 + budgetMonth: 155.00,// 本月预算 万元 + budgetYear: 1702.00,// 年度预算 万元 + monthExecute: 172.04,// 本月执行 万元 + accumulateExecute: 1663.55,// 累计执行 万元 + }, + { + name: '住房公积金', + monthRate: 88.92,// 本月完成进度占比 + accumulateRate: 81.92,// 累计完成进度占比 + budgetMonth: 71.00,// 本月预算 万元 + budgetYear: 810.00,// 年度预算 万元 + monthExecute: 63.13,// 本月执行 万元 + accumulateExecute: 663.56,// 累计执行 万元 + }, + { + name: '福利', + monthRate: 73.41,// 本月完成进度占比 + accumulateRate: 79.68,// 累计完成进度占比 + budgetMonth: 59.75,// 本月预算 万元 + budgetYear: 646.00,// 年度预算 万元 + monthExecute: 43.86,// 本月执行 万元 + accumulateExecute: 514.71,// 累计执行 万元 + }, + { + name: '工会经费', + monthRate: 68.57,// 本月完成进度占比 + accumulateRate: 68.22,// 累计完成进度占比 + budgetMonth: 14.60,// 本月预算 万元 + budgetYear: 142.00,// 年度预算 万元 + monthExecute: 10.01,// 本月执行 万元 + accumulateExecute: 96.87,// 累计执行 万元 + }, + { + name: '职教费', + monthRate: 101.31,// 本月完成进度占比 + accumulateRate: 83.81,// 累计完成进度占比 + budgetMonth: 15.00,// 本月预算 万元 + budgetYear: 44.00,// 年度预算 万元 + monthExecute: 0.14,// 本月执行 万元 + accumulateExecute: 1.37,// 累计执行 万元 + }, + ],// 按年度计划预算数值排序 + ] + }, + ],// 按年度计划预算数值排序 ] }, + { + name: '租赁费', + monthRate: -368.51,// 本月完成进度占比 + accumulateRate: 56.18,// 累计完成进度占比 + budgetMonth: 56.20,// 本月预算 万元 + budgetYear: 2323.00,// 年度预算 万元 + monthExecute: -207.10,// 本月执行 万元 + accumulateExecute: 1305.03,// 累计执行 万元 + }, + { + name: '维改摊销', + monthRate: 63.98,// 本月完成进度占比 + accumulateRate: 67.69,// 累计完成进度占比 + budgetMonth: 257.95,// 本月预算 万元 + budgetYear: 2275.00,// 年度预算 万元 + monthExecute: 165.04,// 本月执行 万元 + accumulateExecute: 1540.06,// 累计执行 万元 + }, + { + name: '折旧及摊销', + monthRate: 99.13,// 本月完成进度占比 + accumulateRate: 97.72,// 累计完成进度占比 + budgetMonth: 154.00,// 本月预算 万元 + budgetYear: 2212.00,// 年度预算 万元 + monthExecute: 152.66,// 本月执行 万元 + accumulateExecute: 2161.63,// 累计执行 万元 + }, + { + name: '安全生产费(含防疫费)', + monthRate: -256.78,// 本月完成进度占比 + accumulateRate: 34.42,// 累计完成进度占比 + budgetMonth: 60.00,// 本月预算 万元 + budgetYear: 675.00,// 年度预算 万元 + monthExecute: -154.07,// 本月执行 万元 + accumulateExecute: 232.31,// 累计执行 万元 + }, + { + name: '服装费', + monthRate: 0.00,// 本月完成进度占比 + accumulateRate: 29.66,// 累计完成进度占比 + budgetMonth: 87.80,// 本月预算 万元 + budgetYear: 500.00,// 年度预算 万元 + monthExecute: 0.00,// 本月执行 万元 + accumulateExecute: 148.30,// 累计执行 万元 + }, { name: '物业管理费', monthRate: 280.80,// 本月完成进度占比 @@ -23742,6 +32251,51 @@ const data = [ monthExecute: 32.99,// 本月执行 万元 accumulateExecute: 455.83,// 累计执行 万元 }, + { + name: '中介费', + monthRate: 0.00,// 本月完成进度占比 + accumulateRate: 49.67,// 累计完成进度占比 + budgetMonth: 13.07,// 本月预算 万元 + budgetYear: 278.00,// 年度预算 万元 + monthExecute: 0.67,// 本月执行 万元 + accumulateExecute: 138.08,// 累计执行 万元 + }, + { + name: '党团建设费用', + monthRate: 0.01,// 本月完成进度占比 + accumulateRate: 12.27,// 累计完成进度占比 + budgetMonth: 4.5,// 本月预算 万元 + budgetYear: 40.00,// 年度预算 万元 + monthExecute: 4.91,// 本月执行 万元 + accumulateExecute: 4.91,// 累计执行 万元 + }, + { + name: '其他', + monthRate: 4.08,// 本月完成进度占比 + accumulateRate: 229.73,// 累计完成进度占比 + budgetMonth: 1.00,// 本月预算 万元 + budgetYear: 16.00,// 年度预算 万元 + monthExecute: 0.04,// 本月执行 万元 + accumulateExecute: 36.76,// 累计执行 万元 + }, + { + name: '印刷费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: null,// 本月执行 万元 + accumulateExecute: 0.00,// 累计执行 万元 + }, + { + name: '信息系统费', + monthRate: null,// 本月完成进度占比 + accumulateRate: null,// 累计完成进度占比 + budgetMonth: null,// 本月预算 万元 + budgetYear: null,// 年度预算 万元 + monthExecute: 75.43,// 本月执行 万元 + accumulateExecute: 115.16,// 累计执行 万元 + }, ],// 按年度计划预算数值排序 ] } diff --git a/pages/revenue/expenditureDetail.vue b/pages/revenue/expenditureDetail.vue index 957a1ef..2d0ae95 100644 --- a/pages/revenue/expenditureDetail.vue +++ b/pages/revenue/expenditureDetail.vue @@ -65,14 +65,14 @@ 本月预算: {{subItem.budgetMonth||'-'}}万元 - - 年度预算: - {{subItem.budgetYear||'-'}}万元 - 本月执行: {{subItem.monthExecute||'-'}}万元 + + 年度预算: + {{subItem.budgetYear||'-'}}万元 + 累计执行: {{subItem.accumulateExecute||'-'}}万元 @@ -105,14 +105,14 @@ 本月预算: {{thirdItem.budgetMonth||'-'}}万元 - - 年度预算: - {{thirdItem.budgetYear||'-'}}万元 - 本月执行: {{thirdItem.monthExecute||'-'}}万元 + + 年度预算: + {{thirdItem.budgetYear||'-'}}万元 + 累计执行: {{thirdItem.accumulateExecute||'-'}}万元 @@ -142,14 +142,14 @@ 本月预算: {{fourthItem.budgetMonth||'-'}}万元 - - 年度预算: - {{fourthItem.budgetYear||'-'}}万元 - 本月执行: {{fourthItem.monthExecute||'-'}}万元 + + 年度预算: + {{fourthItem.budgetYear||'-'}}万元 + 累计执行: {{fourthItem.accumulateExecute||'-'}}万元 @@ -197,7 +197,7 @@ export default { {label:'按累计完成进度占比数排序',value:1}, {label:'按本月完成进度占比数排序',value:2}, {label:'按年度计划预算数值排序',value:3}], - typeValue: 2, + typeValue: 3, pageData: {},// 页面数据 pageList: [],// 页面遍历的数据 single:'', // 时间选择器选择的时间 diff --git a/pages/revenue/index.vue b/pages/revenue/index.vue index 26b5049..ee847d0 100644 --- a/pages/revenue/index.vue +++ b/pages/revenue/index.vue @@ -147,8 +147,8 @@ 利润总额完成率=本年累计/年度预算
{{ `(${currentResult.profitThisYearReal||'-'} / ${currentResult.profitBudgetThisYearReal||'-'})` }}
净利润完成度=本年净利润/净利润预算
{{ `(${currentResult.thisYearNetProfitReal||'-'} / ${currentResult.thisYearNetProfitBudgetReal||'-'})` }}
- 净利润预算=年度预算-年度预计所得税费用{{`(${currentResult.profitBudgetThisYearReal||'-'} / ${currentResult.profitBudgetThisYearReal - currentResult.thisYearNetProfitBudgetReal})`}} - 本年净利润=本年累计-本年累计所得税{{`(${currentResult.profitThisYearReal||'-'} / ${currentResult.profitThisYearReal - currentResult.thisYearNetProfitReal})`}} + 净利润预算=年度预算-年度预计所得税费用{{`(${currentResult.profitBudgetThisYearReal||'-'} - ${(currentResult.profitBudgetThisYearReal - currentResult.thisYearNetProfitBudgetReal).toFixed(2)})`}} + 本年净利润=本年累计-本年累计所得税{{`(${currentResult.profitThisYearReal||'-'} - ${(currentResult.profitThisYearReal - currentResult.thisYearNetProfitReal).toFixed(2)})`}}
@@ -610,8 +610,8 @@ - - + + @@ -620,11 +620,11 @@ 营业成本 - + 销售费用 - + 管理费用