diff --git a/pages/revenue/index.vue b/pages/revenue/index.vue index 2af35c2..fe6003e 100644 --- a/pages/revenue/index.vue +++ b/pages/revenue/index.vue @@ -380,19 +380,33 @@ {{ item.name }} - ? - + ? + 便利店、餐饮及客房的累计数 - 完成率 = 本年累计自营收入 / 自营收入的年度预算
{{ `(${item.thisYearReal||'-'} / ${item.thisYearBudgetReal||'-'})` }}
- {{ `本月占比 = ${thisMonth}月自营收入 / 本年累计自营收入(${item.thisMonthReal||'-'} / ${item.thisYearReal||'-'}) `}} + 完成率 = 本年累计自营收入 / 自营收入的年度预算
{{ `( ${item.thisYearReal||'-'} / ${item.thisYearBudgetReal||'-'} )` }}
+ {{ `本月占比 = ${thisMonth}月自营收入 / 本年累计自营收入( ${item.thisMonthReal||'-'} / ${item.thisYearReal||'-'} )`}} 服务区自营小计:城市店、批发团购及通道费的累计数
+ + + + 场地租赁、物业及受托代管、公共服务补贴、营业外收入的累计数 + + + {{ `完成率= ${thisMonth}月其他收入 / 其他收入的年度预算( ${item.thisMonthReal||'-'}/${item.thisYearBudgetReal||'-'} )` }} + {{ `本月占比 = ${thisMonth}月其他收入 / 本年累计其他收入( ${item.thisMonthReal||'-'}/${item.thisYearReal||'-'} )` }} + 服务区租赁小计:商铺、充电桩、汽修、加油站的租赁累计收入 + + + + +
@@ -883,8 +897,10 @@ export default { thisYearRealNumber:133978469.54,// 其他收入小计本年累计详情 thisMonth:'2,028.58',// 其他收入小计本月 thisMonthReal:'20,285,867.69',// 其他收入小计本月详情 + otherThisMonthReal:20285867.69,// 其他收入小计本月详情 thisYearBudget:'25,295.00',//其他收入小计年度预算 thisYearBudgetReal:'252,950,000.00',//其他收入小计年度预算详情 + otherThisYearBudgetReal:252950000,//其他收入小计年度预算详情 thisMonthRate:'15.14',//其他收入预算本月占比 } ],// 收入合计 @@ -1104,6 +1120,7 @@ export default { outFourth:0,// 选择的月 第四个 showInComeNotice:false,// 收入的悬浮框 showOutNoitive:false, + selectInComeIndex:0 } }, onLoad(){ @@ -1335,8 +1352,8 @@ export default { // this.outFourth = (this.currentResult.outList[3].expenditureCostThisYearNumber/sum)*100 }, // 收入合计点击子项出现的悬浮框 - incomeChildrenShow(item){ - this.childrenShow = true + incomeChildrenShow(item,index){ + this.selectInComeIndex = index if (item==='自营收入小计'){ this.handleShowNotice('userRevenueSmallSum') }else{ @@ -1345,7 +1362,6 @@ export default { }, // 滑动swiper的方法 handleChangeSwiper(e){ - console.log('e',e) this.selectMonth = e.target.current this.thisMonth = this.monthList[this.selectMonth] this.single = `${this.thisYear}-${this.thisMonth<10?'0'+this.thisMonth:this.thisMonth}` @@ -1361,7 +1377,6 @@ export default { Month:this.thisMonth } const data = await request.$webGetTest('EShangApiMain/Budget/GetbudgetProjectReport',req) - console.log('data',data) this.currentResult = data.Result_Data let sum = 0 if (this.currentResult.outList && this.currentResult.outList.length>0){