123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <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}}笔
- </view>
- </view>
- <view class="two">
- <text>¥</text>
- <text>{{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}}
- </view>
- </view>
- <view class="list">
- <view class="title">
- 商品
- </view>
- <view class="price">
- {{list.breakfastAmount}}
- </view>
- </view>
- <view class="list">
- <view class="title">
- 其他
- </view>
- <view class="price">
- {{list.othersAmount}}
- </view>
- </view>
- </view>
- <view class="Pie_charts">
- <PieCharts></PieCharts>
- </view>
- </view>
- <view class="echarts-two">
- <view class="title">
- 交易趋势
- </view>
- <view class="title1">
- 单位:元
- </view>
- <view class="line_charts_one">
- <LineOne />
- </view>
- </view>
- <view class="echarts-three">
- <view>
- <view class="title">
- 入住率
- </view>
- <view class="title1">
- 入住率(%)
- </view>
- </view>
- <view class="line_charts_two">
- <LineTwo />
- </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: '2024-01',
- fromData: {
- dateDay: '2024-01',
- homestayId: '1744620500506251265'
- },
- list: {}
- }
- },
- onReady() {
- this.getList()
- },
- methods: {
- bindDateChange(e) {
- this.date = e.detail.value
- 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 => {
- console.log(res);
- this.list = res.data.data
- wx.setStorageSync('fromData', this.list)
- })
- },
- }
- }
- </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 {
- height: 600rpx;
- width: 630rpx;
- // 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>
|