123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- <template>
- <view :style="{'min-height':(h-th)+'px','padding-top':mt+'px'}" :class="type==2?'year page tt':'page tt'">
- <c-nav-bar title="数据统计"></c-nav-bar>
- <view class="tabs">
- <text :class="type==1?'on':''" @click="type=1">月账单</text>
- <text :class="type==2?'on':''" @click="type=2">年账单</text>
- </view>
- <view class="content ">
- <view class="time" @click="show=true">
- <u-icon name="calendar" :label="dateStr" labelPos="right" labelColor="#666" color="#666" space="7px"
- size="25px"></u-icon>
- <u-icon name="arrow-down" color="#999" size="20px" style="margin-left: 20rpx;"></u-icon>
- </view>
- <view class="money">
- <view>
- <text>收入金额</text>
- <text class="in">¥{{info.allOrderAmount||0}}</text>
- <text>{{info.allOrders||0}}笔</text>
- </view>
- <view>
- <text>退款金额</text>
- <text>¥{{info.allRefundOrderAmount||0}}</text>
- <text>{{info.allRefundOrders||0}}笔</text>
- </view>
- </view>
- </view>
- <view class="chart">
- <view class="tit">累计曲线图</view>
- <view class="total">
- <view class="t1">总收入<text>{{total}}笔</text></view>
- <view class="t2">总退款<text>{{total2}}笔</text></view>
- </view>
- <view class="line_charts_two">
- <qiun-data-charts type="line" canvas2d='true' style="z-index: 1;" :opts="gameOpts"
- :chartData="gameChartData" :ontouch="true" />
- </view>
- </view>
- <u-datetime-picker @confirm="confirmDate" @cancel="show=false" :show="show" v-model="value1"
- visibleItemCount="6" mode="year-month"></u-datetime-picker>
- </view>
- </template>
- <script>
- import {
- data
- } from '../../uni_modules/uview-ui/libs/mixin/mixin';
- export default {
- data() {
- return {
- merchantId: uni.getStorageSync('merchantId'),
- merchantType: uni.getStorageSync('merchantType'),
- total: '',
- total2: '',
- info: {
- allOrderAmount: 0,
- allOrders: 0,
- allRefundOrderAmount: 0,
- allRefundOrders: 0
- },
- show: false,
- value1: Number(new Date()),
- dateStr: new Date().Format('yyyy年-MM月'),
- date: new Date().Format('yyyy-MM'),
- dataList: [],
- type: 1,
- gameChartData: {},
- gameOpts: {
- color: ["#4B98FE", "#00D05E"],
- padding: [15, 15, 0, 15],
- enableScroll: true,
- legend: {
- show: false
- },
- xAxis: {
- disableGrid: true,
- gridType: "solid",
- itemCount: 6,
- scrollColor: "#f44",
- scrollShow: true,
- axisLineColor: "#EFEFEF",
- },
- yAxis: {
- gridType: "solid",
- gridColor: "#EFEFEF",
- dashLength: 2
- },
- extra: {
- line: {
- type: "curve",
- width: 2,
- activeType: "hollow"
- }
- }
- },
- }
- },
- watch: {
- type(newval, oldval) {
- if (newval == 1) {
- this.date = new Date().Format('yyyy-MM');
- this.dateStr = this.date.split('-')[0] + '年' + '-' + this.date.split('-')[1] + '月';
- } else {
- this.date = new Date().Format('yyyy');
- this.dateStr = this.date + '年';
- }
- },
- date(newval, oldval) {
- if (newval != oldval) {
- if (this.merchantType == 10) {
- this.getList()
- } else {
- this.gettopData();
- this.getBottomData();
- }
- }
- }
- },
- onLoad() {
- if (this.merchantType == 10) {
- this.getList()
- } else {
- this.gettopData();
- this.getBottomData();
- }
- //this.drawGameCharts(['1','2'], [11,2], [12.11]);
- },
- methods: {
- confirmDate(e) {
- // //调起时间弹出弹窗时候用
- // var pickerSlot = document.getElementsByClassName('picker-slot');
- // pickerSlot[1].style.display = 'none'
- // pickerSlot[2].style.display = 'none'
- // 创建一个Date对象并传入时间戳
- const date = new Date(e.value);
- // 使用Date对象的方法获取年、月、日、小时、分钟和秒
- const year = date.getFullYear();
- const month = ('0' + (date.getMonth() + 1)).slice(-2);
- const day = ('0' + date.getDate()).slice(-2);
- // 格式化时间
- let formattedTime = "";
- if (this.type == 1) {
- formattedTime = `${year}-${month}`;
- this.dateStr = `${year}年-${month}月`
- } else {
- formattedTime = `${year}`;
- this.dateStr = `${year}年`
- }
- this.date = formattedTime;
- this.show = false;
- },
- //渔家乐
- getList() {
- this.$api.post('/scenic/api/order/dataStatistics', {
- dateTime: this.date,
- dateType: this.type + '',
- merchantId: uni.getStorageSync('merchantId')
- }).then(res => {
- let x = [],
- y = [],
- z = [];
- this.total = 0;
- this.total2 = 0;
- if (res.data.code === 0) {
- this.info = res.data.data;
- this.info.allOrderAmount = res.data.data.statistics.allOrderAmount;
- this.info.allOrders = res.data.data.statistics.allOrders,
- this.info.allRefundOrderAmount = res.data.data.statistics.allRefundOrderAmount,
- this.info.allRefundOrders = res.data.data.statistics.allRefundOrders
- //折线图
- this.dataList = res.data.data.curve;
- for (let i = 0; i < res.data.data.curve.length; i++) {
- x.push(this.type == 1 ? res.data.data.curve[i].dateKey : (res.data.data.curve[i]
- .dateKey + '月'));
- y.push(res.data.data.curve[i].orderNums);
- z.push(res.data.data.curve[i].refundOrderNums);
- this.total += res.data.data.curve[i].orderNums;
- this.total2 += res.data.data.curve[i].refundOrderNums
- }
- } else {
- this.info = {
- paymentAmount: 0,
- paymentCount: 0,
- refundAmount: 0,
- refundCount: 0,
- }
- }
- setTimeout(() => {
- this.drawGameCharts(x, y, z);
- }, 500)
- })
- },
- gettopData() {
- this.$api.post('/api/merchant/food/getMerchantFoodBill', {
- dateTime: this.date,
- dateType: this.type + '',
- merchantId: uni.getStorageSync('merchantId')
- }).then(res => {
- if (res.data.code === 0) {
- this.info = res.data.data;
- } else {
- this.info = {
- allOrderAmount: 0,
- allOrders: 0,
- allRefundOrderAmount: 0,
- allRefundOrders: 0
- }
- }
- })
- },
- getBottomData() {
- this.$api.post('/api/merchant/food/getMerchantFoodCurveAnalyse', {
- dateTime: this.date,
- dateType: this.type + '',
- merchantId: uni.getStorageSync('merchantId')
- }).then(res => {
- let x = [],
- y = [],
- z = [];
- this.total = 0;
- this.total2 = 0;
- if (res.data.code === 0) {
- this.dataList = res.data.data;
- for (let i = 0; i < res.data.data.length; i++) {
- x.push(this.type == 1 ? res.data.data[i].dateKey : (res.data.data[i].dateKey + '月'));
- y.push(res.data.data[i].orderNums);
- z.push(res.data.data[i].refundOrderNums);
- this.total += res.data.data[i].orderNums;
- this.total2 += res.data.data[i].refundOrderNums
- }
- } else {
- this.dataList = []
- }
- setTimeout(() => {
- this.drawGameCharts(x, y, z);
- }, 500)
- })
- },
- drawGameCharts(x, y, z) {
- let res = {
- categories: x,
- series: [{
- name: "总收入",
- data: y,
- color: "#367BFF",
- },
- {
- name: "总退款",
- data: z,
- color: "#77DFDD",
- },
- ],
- };
- this.gameChartData = JSON.parse(JSON.stringify(res));
- },
- }
- }
- </script>
- <style lang="scss">
- .u-popup__content {
- z-index: 99999999 !important;
- }
- .u-transition {
- z-index: 99999998 !important;
- }
- .year .u-picker__view__column:last-child {
- display:none;
- }
- </style>
- <style scoped lang="less">
- /deep/.visibleItemCount {
- z-index: 99999999999;
- }
- .tt {
- /deep/.u-picker__view__column {
- width: 100%;
- }
- }
- .line_charts_two {
- width: 100%;
- height: 500rpx;
- // background-color: aqua;
- }
- .page {
- background: #F5F8FA;
- box-sizing: border-box;
- width: 100%;
- overflow-x: hidden;
- .total {
- margin: 36rpx;
- display: flex;
- align-items: center;
- &>view {
- position: relative;
- color: #777;
- margin-right: 80rpx;
- font-size: 26rpx;
- padding-left: 30rpx;
- &.t1 {
- &::after {
- position: absolute;
- left: 0;
- top: 43%;
- z-index: 1;
- display: inline-block;
- content: "";
- width: 20rpx;
- height: 10rpx;
- border-radius: 10rpx;
- background-color: #367BFF;
- }
- }
- &.t2 {
- &::after {
- position: absolute;
- left: 0;
- top: 43%;
- z-index: 1;
- display: inline-block;
- content: "";
- width: 20rpx;
- height: 10rpx;
- border-radius: 10rpx;
- background-color: #77DFDD;
- }
- }
- text {
- color: #111;
- font-size: 28rpx;
- }
- }
- }
- }
- .chart {
- width: calc(100% - 40rpx);
- border-radius: 16rpx;
- padding: 36rpx 22rpx;
- background-color: #fff;
- margin: 20rpx auto 0;
- .tit {
- font-size: 28rpx;
- font-weight: bold;
- }
- }
- .tabs {
- text-align: center;
- border-bottom: 1rpx solid #EFEFEF;
- background-color: #fff;
- display: flex;
- text {
- display: inline-block;
- padding: 28rpx;
- width: 50%;
- position: relative;
- font-size: 32rpx;
- &.on::after {
- display: block;
- content: '';
- position: absolute;
- width: 64rpx;
- height: 6rpx;
- background-color: #007A69;
- bottom: 8rpx;
- z-index: 1;
- left: 50%;
- border-radius: 4rpx;
- transform: translate(-50%, 0);
- }
- }
- }
- .content {
- padding: 48rpx 30rpx 56rpx;
- background-color: #fff;
- .time {
- display: flex;
- align-items: center;
- margin-bottom: 42rpx;
- }
- .money {
- display: flex;
- align-items: center;
- padding: 0 10rpx;
- &>view {
- width: 50%;
- text {
- display: block;
- font-weight: bold;
- &:first-child {
- color: #111;
- font-size: 28rpx;
- font-weight: inherit;
- }
- &:nth-child(2) {
- font-size: 40rpx;
- margin: 14rpx 0 16rpx;
- color: #111;
- }
- &:last-child {
- color: #999;
- font-size: 26rpx;
- font-weight: inherit;
- }
- }
-
- }
- }
- .in {
- color: #FEA400!important;
- }
- }
- </style>
|