Commit 573706a9 authored by liudong1993's avatar liudong1993

1

parent 97bf5d18
......@@ -97,6 +97,37 @@
</el-table-column>
</el-table-column>
</el-table>
<h3 class="text-center" style="margin-top: 15px;margin-bottom: 5px;">常规团实际利率分析(已出团)</h3>
<el-table
:data="SJLLAnalysisData"
style="width: 100%"
class="LineAnalysisDataBJ" border>
<el-table-column
fixed
align="center"
prop="Name"
label="名称"
width="150">
</el-table-column>
<el-table-column align="center" :label="title" v-for="(title,i) in MonthList" :key="i" :prop="`${i}`">
<el-table-column
prop=""
label="收入"
min-width="120" align="center">
<template slot-scope="scope">
{{scope.row.MonthData[i].Income.toFixed(2)}}
</template>
</el-table-column>
<el-table-column
prop=""
label="团数"
min-width="120" align="center">
<template slot-scope="scope">
{{scope.row.MonthData[i].TravelNum}}
</template>
</el-table-column>
</el-table-column>
</el-table>
<h3 class="text-center" style="margin-top: 15px;margin-bottom: 5px;">常规团房费分析(已出团)</h3>
<el-table
:data="RoomAnalysisData"
......@@ -131,6 +162,7 @@ export default {
JapanXBData: [],
JapanSPData: [],
MaoLiAnalysisData: [],
SJLLAnalysisData: [],
RoomAnalysisData: [],
}
},
......@@ -148,6 +180,7 @@ export default {
this.JapanXBData = n.JapanXBData
this.JapanSPData = n.JapanSPData
this.MaoLiAnalysisData = n.MaoLiAnalysisData
this.SJLLAnalysisData = n.SJLLAnalysisData
this.RoomAnalysisData = n.RoomAnalysisData
},
deep: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment