update
This commit is contained in:
parent
50ea9fc5c7
commit
9bf893f555
@ -380,8 +380,8 @@
|
||||
</view>
|
||||
<view style="display: flex;align-items: center">
|
||||
<view class="smallTitle">{{ item.name }}</view>
|
||||
<view class="notice" @click="incomeChildrenShow('自营收入小计')">?
|
||||
<view class="noticeBox" :style="{left: '10%',top:'20px'}" v-if="userRevenueSmallSum">
|
||||
<view class="notice" @click="incomeChildrenShow(item.name,index)">?
|
||||
<view class="noticeBox" :style="{left: '10%',top:'20px'}" v-if="userRevenueSmallSum && index===selectInComeIndex">
|
||||
<view v-if="userRevenueSmallSum" @click.stop="handleShowNotice('userRevenueSmallSum')">
|
||||
<view>便利店、餐饮及客房的累计数</view>
|
||||
<!-- <view>完成率 = 本年累计自营收入 / 自营收入的年度预算<br/>{{ `(${$util.fmoney(item.ThisYearTotal,2)} / ${$util.fmoney(item.ThisYearBudget,2)})` }}</view>-->
|
||||
@ -393,6 +393,20 @@
|
||||
<!-- <view>分公司收入小计:完成率=分公司收入 / 自营收入的年度预算<br/>{{ `${$util.fmoney(item.FilialeIncome,2)} / ${$util.fmoney(item.ThisYearBudget,2)}` }}</view>-->
|
||||
</view>
|
||||
</view>
|
||||
<view class="noticeBox" :style="{left: '10%',top:'20px'}" v-if="otherSmallSum && index===selectInComeIndex">
|
||||
<view v-if="otherSmallSum" @click.stop="handleShowNotice('otherSmallSum')">
|
||||
<view v-if="otherSmallSum" @click.stop="handleShowNotice('otherSmallSum')">
|
||||
<view>场地租赁、物业及受托代管、公共服务补贴、营业外收入的累计数</view>
|
||||
<!-- <view>完成率=7月其他收入 / 其他收入的年度预算{{ `(${$util.fmoney(item.ThisYearTotal,2)}/ ${$util.fmoney(item.ThisYearBudget ,2)})` }}</view>-->
|
||||
<!-- <view>本月占比=7月其他收入 / 本年累计其他收入{{ `(${$util.fmoney(item.ThisMonthIncome ,2)}/ ${$util.fmoney(item.ThisYearTotal ,2)})` }}</view> -->
|
||||
<view>{{ `完成率= ${thisMonth}月其他收入 / 其他收入的年度预算( ${item.thisMonthReal||'-'}/${item.thisYearBudgetReal||'-'} )` }}</view>
|
||||
<view>{{ `本月占比 = ${thisMonth}月其他收入 / 本年累计其他收入( ${item.thisMonthReal||'-'}/${item.thisYearReal||'-'} )` }}</view>
|
||||
<view>服务区租赁小计:商铺、充电桩、汽修、加油站的租赁累计收入</view>
|
||||
<!-- <view>服务区租赁小计完成率=服务区租赁累计收入 / 本年累计其他收入<br/>{{ `(${$util.fmoney(item.ServerpartIncome ,2)}/ ${$util.fmoney(item.ThisYearBudget,2)})` }}</view>-->
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -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){
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user