123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- <template>
- <view class="container">
- <div class="moreTime">
- <div v-for="(item,index) in range" :key="index" @click="change(index)" :class="choiceTime===index?'bod':''">
- {{item}}
- </div>
- </div>
- <div class="childTime">
- <div v-for="(item,index) in childTime" v-show="choiceTime===index">
- <template>
- <template v-for="(o,i) in item">
- <div @click="getTime(i,o.value)" :class="choiceChildTime===i?'box':''">{{o.text}}</div>
- </template>
- </template>
- </div>
- </div>
- <template v-if="clear">
- <view v-for="(item,index) in echartsData" :key="item.id" style="padding-right:20rpx">
- <view v-if="item.chartType==='line'" :style="{top:item.top}"
- style="position:absolute;width:100%;height:640rpx;display: block;margin-bottom:30px">
- <view class="title" v-if="echartsData.length" style="margin-bottom:20px">
- {{item.chartName}}
- </view>
- <web-view :src="item.src" style="width:100%;height:640rpx;"></web-view>
- </view>
- <view v-if="item.chartType==='pie'" style="margin-bottom:30px">
- <view class="title" v-if="echartsData.length">
- {{item.chartName}}
- </view>
- <pieEcharts :echartsData="item" />
- </view>
- <view v-if="item.chartType==='bar'" style="margin-bottom:30px">
- <view class="title" v-if="echartsData.length">
- {{item.chartName}}
- </view>
- <barEcharts :echartsData="item" />
- </view>
- </view>
- </template>
- <u-empty text="暂无数据" icon="../../static/data.png" v-if="!echartsData.length"></u-empty>
- </view>
- </template>
- <script>
- import pieEcharts from '../../components/ecahrts/pie-echarts.vue'
- import barEcharts from '../../components/ecahrts/bar-echarts.vue'
- import {
- nowDate,
- timeToDate,
- getLastWeek,
- getLastMonth,
- getLast3Month
- } from '../../utils/date.js'
- export default {
- components: {
- pieEcharts,
- barEcharts
- },
- data() {
- return {
- reportTableList: [],
- queryParams: {
- page: 1,
- limit: 999
- },
- //图表数据
- echartsData: [],
- value: 3600000,
- startTime: null,
- range: ["分", "时", "日", "周"],
- childTime: [
- [{
- value: 900000,
- text: "15分"
- },
- {
- value: 1800000,
- text: "30分"
- },
- {
- value: 2700000,
- text: "45分"
- }
- ],
- [{
- value: 3600000,
- text: "1小时"
- },
- {
- value: 21600000,
- text: "6小时"
- },
- {
- value: 43200000,
- text: "12小时"
- },
- {
- value: 64800000,
- text: "18小时"
- }
- ],
- [{
- value: 86400000,
- text: "1日"
- },
- {
- value: 259200000,
- text: "3日"
- },
- {
- value: 432000000,
- text: "5日"
- }
- ],
- [{
- value: 604800000,
- text: "1周"
- },
- {
- value: 1209600000,
- text: "2周"
- },
- {
- value: 1814400000,
- text: "3周"
- },
- {
- value: 2419200000,
- text: "4周"
- }
- ],
- ],
- clear: true,
- choiceTime: 0,
- choiceChildTime: 0,
- isShow: false
- }
- },
- onShow() {
- uni.removeStorage('sTime')
- this.clear = true
- this.value = null
- this.choiceTime = 0
- this.startTime = timeToDate(new Date().getTime() - 900000)
- this.temperature()
- },
- onHide() {
- this.clear = false
- },
- methods: {
- //用户图表数据
- temperature() {
- this.echartsData = []
- uni.$http.get('/chart/getAllOkChart', this.queryParams).then(res => {
- const data = res.data
- if (data.code === 200) {
- const {
- reportTableList
- } = data.data
- this.reportTableList = reportTableList.reverse()
- let array = []
- for (let i = 0; i < this.reportTableList.length; i++) {
- array.push(this.getChartData(this.reportTableList[i].id))
- }
- Promise.all(array).then((res) => {
- let lineData = []
- res.map((item, index) => {
- const {
- data
- } = item
- if (data.chartType === 'line') {
- lineData.push({
- data: data,
- i: index
- })
- data.src =
- `/static/webview/line-wv.html?id=${data.id}&startTime=${this.startTime}`
- lineData.map((it, i) => {
- data.top = (this.reportTableList.length - lineData.length) * 40 + i * 100 + '%'
- })
- }
- this.echartsData.push(data)
- })
- })
- }
- })
- },
- getChartData(id) {
- let chartParams = {
- id: id,
- startTime: this.startTime,
- endTime: nowDate()
- }
- uni.setStorage({
- key: 'sTime',
- data: chartParams.endTime
- })
- return new Promise((resolve, reject) => {
- uni.$http.get('/chart/getChartById', chartParams).then((res) => {
- const data = res.data
- resolve(data)
- })
- })
- },
- change(i) {
- this.choiceTime === i ? this.choiceTime = -1 : this.choiceTime = i
- this.choiceChildTime = -1
- // if (e === 'more') {
- // this.isShow = !this.isShow
- // } else {
- // if (typeof(e) !== 'string' && e !== 1 && e !== 2 && e !== 3) {
- // this.startTime = timeToDate(new Date().getTime() - e)
- // } else if (typeof(e) !== 'string' && e !== null) {
- // switch (e) {
- // case 1:
- // this.startTime = timeToDate(getLastWeek()[0])
- // break;
- // case 2:
- // this.startTime = timeToDate(getLastMonth()[0])
- // break;
- // case 3:
- // this.startTime = timeToDate(getLast3Month()[0])
- // break;
- // }
- // } else if (typeof(e) === 'string') {
- // this.startTime = timeToDate(new Date().getTime() - 3600000)
- // this.echartsData = []
- // }
- // this.temperature()
- // }
- },
- getTime(i, val) {
- this.choiceChildTime = i
- this.startTime = timeToDate(new Date().getTime() - val)
- this.temperature()
- }
- }
- };
- </script>
- <style scoped>
- .container {}
- .title {
- margin: 10rpx 0 10rpx 20rpx;
- font-size: 28rpx;
- color: #666666;
- }
- ::v-deep .uni-section-content {
- width: 50%;
- margin-bottom: 20rpx;
- }
- .moreTime {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 80vw;
- margin: auto
- }
- .bod {
- border-bottom: 3px solid #007AFF;
- }
- .box {
- border: 1px solid #007AFF !important;
- }
- .childTime {
- margin: 16rpx 60rpx 0 60rpx;
- }
- .childTime>div {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .childTime>div>div {
- width: 140rpx;
- padding: 10rpx;
- border: 1px solid #e6e6e6;
- border-radius: 16rpx;
- color: #7e7e7e;
- font-size: 26rpx;
- text-align: center;
- }
- </style>
|