123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566 |
- <template>
- <view class="page" :style="{'padding-top':mt+'px'}">
- <c-nav-bar title="统计" :showIcon="false"></c-nav-bar>
- <view class="hander">
- <!-- 2024年1月 -->
- <view
- class="tn-flex tn-flex-col-center tn-margin-right tn-padding-xs tn-text-sm tn-bg-gray--light tn-radius tn-color-gray--dark"
- style="border-radius: 12rpx; width: 160rpx;">
- <picker @change="bindDateChange" mode="date" :value="date" :start="startDate" :end="endDate"
- fields="month">
- <text class="tn-padding-left-xs tn-padding-right-xs">{{date}}
- </text>
- </picker>
- </view>
- <view style="width: 60rpx; line-height: 48rpx; height: 48rpx; margin: 15rpx 0 ; ">
- <u-icon name="arrow-down" color="#000000" size="20"></u-icon>
- </view>
- </view>
- <view class="hander-price">
- <view class="one">
- <view class="left">
- 总营业额
- </view>
- <view class="right">
- 共{{list.totalNums==null?'0':list.totalNums}}笔
- </view>
- </view>
- <view class="two">
- <text>¥</text>
- <text>{{list.totalAmount==null?'0':list.totalAmount}}</text>
- </view>
- </view>
- <view class="echarts-one">
- <view class="title">
- 营业概况
- </view>
- <view class="hander-content">
- <view class="list">
- <view class="title">
- 房费
- </view>
- <view class="price">
- {{list.roomAmount==null?'0':list.roomAmount}}
- </view>
- </view>
- <view class="list">
- <view class="title">
- 商品
- </view>
- <view class="price">
- {{list.breakfastAmount==null?'0':list.breakfastAmount}}
- </view>
- </view>
- <view class="list">
- <view class="title">
- 其他
- </view>
- <view class="price">
- {{list.othersAmount==null?'0':list.othersAmount}}
- </view>
- </view>
- </view>
- <view class="Pie_charts" style="min-height: 580rpx;">
- <!-- <PieCharts></PieCharts> -->
- <qiun-data-charts type="ring" :opts="optsPied" :chartData="chartDataPied" />
- </view>
- </view>
- <view class="echarts-two">
- <view class="title">
- 交易趋势
- </view>
- <view class="title1">
- 单位:元
- </view>
- <view class="line_charts_one">
- <qiun-data-charts :ontouch="true" canvas2d='true' type="line" :opts="revenueOptsone"
- :chartData="revenueChartDataOne" />
- </view>
- </view>
- <view class="echarts-three">
- <view>
- <view class="title">
- 入住率
- </view>
- <view class="title1">
- 入住率(%)
- </view>
- </view>
- <view class="line_charts_two">
- <qiun-data-charts type="line" canvas2d='true' :ontouch="true" :opts="revenueOptstwo"
- :chartData="revenueChartDataTwo" />
- </view>
- </view>
- <Tabbar :tabbarIndex="2"></Tabbar>
- </view>
- </template>
- <script>
- // import uCharts from '@/utils/u-charts.js';
- // import PieCharts from "@/components/Charts/PieCharts.vue"
- // import LineOne from "@/components/Charts/LineOne.vue"
- // import LineTwo from "@/components/Charts/LineTwo.vue"
- export default {
- components: {
- // PieCharts,
- // LineOne,
- // LineTwo
- },
- data() {
- return {
- h: uni.getSystemInfoSync().windowHeight,
- mt: uni.getSystemInfoSync().statusBarHeight + 54,
- date: '',
- fromData: {
- dateDay: '',
- homestayId: ''
- },
- // 营业概况
- chartDataPied: {},
- optsPied: {
- rotate: false,
- rotateLock: false,
- color: ['#1372FF', '#F89F2A', '#02C493'],
- padding: [30, 30, 30, 35],
- dataLabel: true,
- enableScroll: false,
- legend: {
- show: true,
- position: "bottom",
- lineHeight: 25
- },
- title: {
- name: "",
- fontSize: 15,
- color: "#666666"
- },
- subtitle: {
- name: "",
- fontSize: 25,
- color: "#7cb5ec"
- },
- extra: {
- ring: {
- ringWidth: 25,
- activeOpacity: 0.5,
- activeRadius: 10,
- offsetAngle: 0,
- labelWidth: 10,
- border: false,
- borderWidth: 3,
- borderColor: "#FFFFFF"
- }
- },
- },
- PieChartsList: {},
- // 交易趋势
- revenueChartDataOne: {},
- revenueOptsone: {
- color: ["#4B98FE"],
- padding: [15, 15],
- dataLabel: false,
- enableScroll: true,
- xAxis: {
- disableGrid: true,
- gridType: "solid",
- itemCount: 6,
- scrollShow: true,
- axisLineColor: "#EFEFEF",
- },
- legend: {
- show: false
- },
- yAxis: {
- gridType: "solid",
- gridColor: "#EFEFEF",
- dashLength: 2
- },
- extra: {
- line: {
- type: "curve",
- width: 2,
- activeType: "hollow"
- }
- }
- },
- dataListOne: [],
- // 入住率
- revenueChartDataTwo: {},
- revenueOptstwo: {
- color: ["#4B98FE"],
- padding: [15, 15],
- dataLabel: false,
- enableScroll: true,
- xAxis: {
- disableGrid: true,
- gridType: "solid",
- itemCount: 6,
- scrollShow: true,
- axisLineColor: "#EFEFEF",
- },
- legend: {
- show: false
- },
- yAxis: {
- gridType: "solid",
- gridColor: "#EFEFEF",
- dashLength: 2,
- data: [{
- axisLineColor: "#FFFFFF",
- min: 0,
- max: 1
- }],
- },
- extra: {
- line: {
- type: "curve",
- width: 2,
- activeType: "hollow"
- }
- }
- },
- dataListTwo: [],
- list: {}
- }
- },
- onReady() {
- // this.fromData.dateDay = e.detail.value
- this.fromData.homestayId = wx.getStorageSync('homestayId')
- if (this.fromData.homestayId !== '') {
- this.getList()
- }
- },
- onLoad() {
- this.getDays(0)
- },
- methods: {
- getDays(day) {
- var today = new Date();
- var targetday_milliseconds = today.getTime() + 1000 * 60 * 60 * 24 * day;
- today.setTime(targetday_milliseconds); //注意,这行是关键代码
- var tYear = today.getFullYear();
- var tMonth = today.getMonth();
- var tDate = today.getDate();
- var week = today.getDay();
- tMonth = this.doHandleMonth(tMonth + 1);
- tDate = this.doHandleMonth(tDate);
- console.log('------', tYear + '-' + tMonth);
- this.date = tYear + '年' + tMonth + '月'
- this.fromData.dateDay = tYear + '-' + tMonth
- return tYear + '-' + tMonth
- },
- doHandleMonth(month) {
- var m = month;
- if (month.toString().length == 1) {
- m = "0" + month;
- }
- return m;
- },
- // 重选时间
- bindDateChange(e) {
- this.date = e.detail.value.slice(0, 4) + "年" + e.detail.value.slice(5, 7) + "月"
- this.fromData.dateDay = e.detail.value
- this.getList()
- },
- // 时间
- startDate() {
- return this.getDate('start')
- },
- endDate() {
- return this.getDate('end')
- },
- getList() {
- this.$api.get('/merchant/hotel/mine/getHotelCountInfo', this.fromData).then(res => {
- this.list = res.data.data
- this.dataListOne = []
- this.dataListTwo = []
- // 营业概况
- this.getServerData();
- // 入住率
- let x = [],
- y = [],
- // 交易趋势
- x1 = [],
- y1 = [];
- console.log(res.data)
- if (res.data.code === 0) {
- this.list = res.data.data;
- for (let i = 0; i < res.data.data.checkedInChant.length; i++) {
- x.push(res.data.data.checkedInChant[i].dateDay);
- y.push(res.data.data.checkedInChant[i].checkedInRatio);
- }
- for (let i = 0; i < res.data.data.dealLineChant.length; i++) {
- x1.push(res.data.data.dealLineChant[i].dateDay);
- y1.push(res.data.data.dealLineChant[i].orderAmount);
- }
- } else {
- this.list = []
- }
- setTimeout(() => {
- this.drawRevenueChartstwo(x, y);
- this.drawRevenueChartsOne(x1, y1)
- }, 500)
- })
- },
- // 环图 营业概况
- getServerData() {
- this.PieChartsList = this.list
- this.PieChartsList = {
- series: [{
- data: [{
- "name": "房费",
- "value": this.PieChartsList.roomAmount == null ? '0' : this.PieChartsList
- .roomAmount,
- "labelText": "房费" + this.PieChartsList.roomRatio + '%'
- },
- {
- "name": "商品",
- "value": this.PieChartsList.othersAmount == null ? '0' : this.PieChartsList
- .othersAmount,
- "labelText": "商品" + this.PieChartsList.breakfastRatio + '%'
- },
- {
- "name": "其他",
- "value": this.PieChartsList.breakfastAmount == null ? '0' : this
- .PieChartsList.breakfastAmount,
- "labelText": "其他" + this.PieChartsList.othersRatio + '%',
- },
- ],
- }],
- }
- this.chartDataPied = JSON.parse(JSON.stringify(this.PieChartsList));
- },
- // 交易趋势
- drawRevenueChartsOne(x, y) {
- let list1 = {
- categories: x,
- series: [{
- name: "收入",
- data: y,
- legendShape: "circle",
- color: "#4088FE",
- pointShape: "none",
- }, ],
- }
- this.revenueChartDataOne = JSON.parse(JSON.stringify(list1));
- },
- // 入住率
- drawRevenueChartstwo(x, y) {
- console.log(x);
- console.log(y)
- let list2 = {
- categories: x,
- series: [{
- name: "入住率",
- data: y,
- legendShape: "circle",
- color: "#600EFF",
- pointShape: "none",
- }, ],
- }
- this.revenueChartDataTwo = JSON.parse(JSON.stringify(list2));
- },
- }
- }
- </script>
- <style scoped lang="less">
- .charts-box {
- width: 100%;
- height: 630rpx;
- }
- .page {
- background: #F3F4F4;
- padding-bottom: 40rpx;
- box-sizing: border-box;
- // overflow-y: auto;
- padding: 20rpx 30rpx;
- // height: 100%;
- }
- .hander {
- height: 48rpx;
- width: 216rpx;
- border-radius: 8rpx;
- background-color: #fff;
- text-align: center;
- line-height: 48rpx;
- display: flex !important;
- justify-content: space-between !important;
- }
- .hander-price {
- margin-top: 20rpx;
- width: 100%;
- height: 192rpx;
- padding: 30rpx;
- box-sizing: border-box;
- border-radius: 10rpx;
- background-color: #fff;
- .one {
- display: flex;
- justify-content: space-between;
- .left {
- font-size: 32rpx;
- color: #333333;
- font-weight: Heavy;
- font-family: PingFang SC-Heavy;
- }
- .right {
- font-size: 24rpx;
- color: #333333;
- font-weight: Regular;
- font-family: PingFang SC-Regular;
- }
- }
- .two {
- margin-top: 20rpx;
- font-size: 48rpx;
- color: #1372FF;
- font-weight: Heavy;
- font-family: PingFang SC-Heavy;
- }
- }
- .echarts-one {
- box-sizing: border-box;
- width: 100%;
- height: 829rpx;
- background-color: #fff;
- margin: 20rpx 0;
- border-radius: 10rpx;
- padding: 30rpx;
- .title {
- font-size: 32rpx;
- color: #333333;
- font-weight: Heavy;
- font-family: PingFang SC-Heavy;
- }
- .hander-content {
- margin-top: 40rpx;
- display: flex;
- justify-content: space-between;
- height: 110rpx;
- .title {
- font-size: 28rpx;
- color: #777777;
- font-weight: Regular;
- font-family: PingFang SC-Regular;
- }
- .price {
- margin-top: 10rpx;
- font-size: 28rpx;
- color: #333;
- font-weight: Bold;
- font-family: PingFang SC-Bold;
- }
- }
- .Pie_charts {
- width: 600rpx !important;
- height: 560rpx !important;
- // background-color: aqua;
- }
- }
- .echarts-two {
- box-sizing: border-box;
- width: 100%;
- height: 543rpx;
- background-color: #fff;
- margin: 20rpx 0;
- border-radius: 10rpx;
- padding: 30rpx;
- .title {
- font-size: 32rpx;
- color: #333333;
- font-weight: Heavy;
- font-family: PingFang SC-Heavy;
- }
- .title1 {
- margin-left: 20rpx;
- margin-top: 20rpx;
- font-size: 20rpx;
- color: #333333;
- font-weight: Regular;
- font-family: PingFang SC-Regular;
- }
- .line_charts_one {
- width: 630rpx;
- height: 388rpx;
- // background-color: aqua;
- }
- }
- .echarts-three {
- box-sizing: border-box;
- width: 100%;
- height: 540rpx;
- background-color: #fff;
- margin: 20rpx 0;
- border-radius: 10rpx;
- padding: 30rpx;
- .title {
- font-size: 32rpx;
- color: #333333;
- font-weight: Heavy;
- font-family: PingFang SC-Heavy;
- }
- .title1 {
- margin-left: 20rpx;
- margin-top: 20rpx;
- font-size: 20rpx;
- color: #333333;
- font-weight: Regular;
- font-family: PingFang SC-Regular;
- }
- .line_charts_two {
- width: 630rpx;
- height: 388rpx;
- // background-color: aqua;
- }
- }
- </style>
|