123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <!-- 营收分析 -->
- <template>
- <view class="revenue">
- <template v-if="type === 'line'">
- <view class="revenue-line">
- <LineChart v-if="hasData"
- :chartData="chartData" :title="title" :opts="opts" />
- <view class="empty" v-else>
- <u-empty></u-empty>
- </view>
- </view>
- </template>
- <template v-else>
- <view class="revenue-line">
- <ColumnChart v-if="hasData"
- :chartData="chartData" :title="title" :opts="opts" />
- <view class="empty" v-else>
- <u-empty></u-empty>
- </view>
- </view>
- </template>
- </view>
- </template>
- <script>
- import LineChart from '@/components/lineChart.vue'
- import ColumnChart from '@/components/columnChart.vue'
- export default {
- components: {
- LineChart,
- ColumnChart
- },
- props: {
- type: {
- type: String,
- default: 'line'
- },
- title: {
- type: String,
- default: ''
- },
- params: {
- type: Object,
- default: () => {}
- }
- },
- data() {
- return {
- chartData: {
- categories: [],
- series: []
- },
- hasData: false,
- opts: {
- enableScroll: true,
- tooltip: {
- trigger: 'axis'
- },
- xAxis: {
- rotateLabel: true,
- scrollShow: true,
- itemCount: 8
- },
- yAxis: {
- showTitle: true,
- splitNumber: 5,
- data: [{
- title: '收益(元)',
- titleOffsetY: -3
- }]
- },
- legend: {
- show: true
- },
- dataLabel: false,
- padding: [20, 10, 10, 10],
- extra: {
- column: {
- width: 20
- }
- }
- }
- }
- },
- methods: {
- /**
- * 获取数据
- */
- getData({
- reportType,
- queryDate
- }) {
- this.hasData = false
- this.chartData.categories = []
- this.chartData.series = []
- this.getRoadData({ reportType, queryDate })
- },
- /**
- * 路段数据
- */
- getRoadData({ reportType, queryDate }) {
- uni.$u.api.operationalAnalysisApi.getRevenueDataApi({
- reportType,
- queryDate
- }).then(res => {
- if (res.code === 200) {
- if (res.data.itemList && res.data.itemList.length) {
- this.chartData.series[0] = {
- name: '路段',
- data: []
- }
- this.chartData.categories = res.data.itemList.map(item => {
- return item.statisTime
- })
- this.chartData.series[0].data = res.data.itemList.map(item => {
- return item.amt
- })
- }
- }
- this.getParkingData({ reportType, queryDate })
- })
- },
- /**
- * 停车场数据
- */
- getParkingData({ reportType, queryDate }) {
- uni.$u.api.operationalAnalysisApi.getParkingRevenueDataApi({
- reportType,
- queryDate
- }).then(res => {
- if (res.code === 200) {
- if (res.data.itemList && res.data.itemList.length) {
- if (this.chartData.series.length) {
- this.chartData.series[1] = {
- name: '停车场',
- data: []
- }
- this.chartData.series[1].data = res.data.itemList.map(item => {
- return item.amt
- })
- } else {
- this.chartData.series[0] = {
- name: '停车场',
- data: []
- }
- this.chartData.series[0].data = res.data.itemList.map(item => {
- return item.amt
- })
- }
- if (!this.chartData.categories.length) {
- this.chartData.categories = res.data.itemList.map(item => {
- return item.statisTime
- })
- }
- this.hasData = true
- } else if (this.chartData.series.length === 1) {
- this.hasData = true
- } else if (!this.chartData.series.length) {
- this.hasData = false
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .revenue {
- background-color: #fff;
- border-radius: 5px;
- .empty {
- padding: 15px;
- }
- }
- </style>
|