123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- <template>
- <div class="Jugouout">
- <el-loading></el-loading>
- <div style="padding: 0 100px">
- <div style="position: relative">
- <video
- controls
- autoplay
- ref="video"
- @timeupdate="timeupdate"
- @error="videoerror"
- @canplay="videoload"
- :src="videoUrl"
- />
- <img
- v-show="videoerrorStart"
- class="videoerror"
- src="../../assets/img/videoerror.png"
- />
- </div>
- <div style="position: relative">
- <div
- class="chart"
- ref="chart"
- style="width: 100%; min-height: 300px"
- ></div>
- <div class="lineinfobackground" :style="'left:' + leftNum + 'px'">
- <div style="position: relative; width: 100%; height: 100%">
- <div class="line"></div>
- <el-row style="padding: 10px 0 0 20px">
- <el-col :span="6">
- <span class="icon" style="background-color: #e05c5c"></span>
- 流入
- </el-col>
- <el-col :span="6">
- <span class="icon" style="background-color: #6ab581"></span>
- 流出
- </el-col>
- <el-col :span="12">
- <span class="iconLine"></span>
- 收视率%
- <div style="float: right; padding: 0 5px 0 0">
- {{ tof(nowItem.audienceRating, 4) }}%
- </div>
- </el-col>
- </el-row>
- <div style="padding: 5px 20px">
- 当前时间:{{
- nowItem.date ? nowItem.date.split(' ')[1] || '' : ''
- }}
- <div style="float: right">人数: {{ formateNum(nowItem.uv) }}</div>
- </div>
- <el-row>
- <el-col :span="12">
- <div style="padding: 0 20px">
- 流入排行
- <div>
- <div
- style="font-size: 12px; line-height: 22px"
- v-for="(item, i) in left"
- :key="i"
- v-text="item"
- ></div>
- </div>
- </div>
- </el-col>
- <el-col :span="12">
- <div style="padding: 0 20px">
- 流出排行
- <div>
- <div
- style="font-size: 12px; line-height: 22px"
- v-for="(item, i) in right"
- :key="i"
- v-text="item"
- ></div>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- // @ is an alias to /src
- import { defaultAjax } from '@/api/index';
- import { markRaw } from 'vue';
- const ElLoading = require('element-plus/lib/el-loading/index');
- import 'element-plus/lib/theme-chalk/el-loading.css';
- import * as echarts from 'echarts';
- let sec = 0,
- timeout = undefined,
- isplay = false,
- isClick = false,
- stepNum = 6.8,
- page = 0;
- export default {
- name: 'Channel',
- data() {
- return {
- videoerrorStart: false,
- leftNum: 50,
- videoUrl: '',
- myChart: undefined,
- orgLi: [],
- nowItem: {},
- left: [],
- right: [],
- load: undefined,
- };
- },
- mounted() {
- this.getData();
- },
- computed: {},
- methods: {
- getData() {
- if (!this.load) this.load = ElLoading.default.service();
- let item = {
- channelId: 1,
- channelName: '陕西卫视',
- videoUrl:
- 'http://smcic-bigdata.oss-cn-chengdu.aliyuncs.com/live-flow/video/20230814/1.mp4',
- dataUrl:
- 'https://smcic-bigdata.oss-cn-chengdu.aliyuncs.com/live-flow/channel/20230814/channel-1.json',
- dt: '2023-08-14',
- channelStatus: 0,
- isDefault: 1,
- };
- this.videoUrl = item.videoUrl;
- defaultAjax({
- url: item.dataUrl,
- })
- .then(res => {
- this.load.close();
- let org = res || {},
- li = [];
- Object.keys(org).map(v => {
- org[v].date = v;
- li.push(org[v]);
- });
- if (!li.length) return;
- this.orgLi = li;
- this.nowItem = li[0];
- this.left = li[0].lrTop || [];
- this.right = li[0].lcTop || [];
- return this.chart();
- })
- .catch(() => {
- this.load.close();
- });
- },
- tof(num, t) {
- return Number(num * 100).toFixed(t || 2);
- },
- chart() {
- if (!this.myChart) {
- this.myChart = markRaw(echarts.init(this.$refs.chart));
- this.myChart.resize({
- height: 300,
- });
- this.myChart.on('datazoom', () => {
- if (isClick) return;
- isClick = true;
- let funisplay = !this.$refs.video.paused;
- if (timeout) clearTimeout(timeout), (timeout = undefined);
- this.$refs.video.pause();
- this.leftNum = 50;
- timeout = setTimeout(() => {
- clearTimeout(timeout);
- timeout = undefined;
- isClick = false;
- // 拖拽后的事件
- isplay = funisplay;
- this.leftNum = 50;
- this.$refs.video.currentTime =
- this.myChart.getOption().dataZoom[0].startValue;
- if (isplay) this.$refs.video.play();
- else this.$refs.video.pause();
- }, 200);
- });
- }
- let timeAll = [],
- Irdata = [],
- Icdata = [],
- audienceRating = [];
- this.orgLi.map(v => {
- v.date && timeAll.push(v.date.split(' ')[1] || '');
- Icdata.push(-1 * v.lc);
- Irdata.push(v.lr);
- audienceRating.push(v.audienceRating * 100);
- });
- this.myChart.setOption({
- dataZoom: [
- {
- maxSpan: 10,
- minSpan: 5,
- type: 'slider',
- brushSelect: false,
- // zoomLock: false,
- show: true,
- realtime: true,
- start: stepNum * page,
- end: stepNum * (page + 1),
- zoomOnMouseWheel: false,
- height: '30',
- top: '85%',
- handleIcon:
- 'path://M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4v1.3h1.3v-1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z',
- handleSize: 15,
- textStyle: {
- color: '#c5c6cc',
- },
- dataBackground: {
- lineStyle: {
- color: '#fff',
- },
- areaStyle: {
- color: '#8b51a8',
- },
- },
- },
- ],
- xAxis: {
- data: timeAll,
- position: 'top',
- silent: false,
- axisLabel: {
- interval: 'auto',
- color: '#000',
- rotate: '-90',
- },
- },
- yAxis: [
- {
- scale: false,
- nameGap: 6,
- inverse: false,
- name: '流入流出',
- nameLocation: 'start',
- splitArea: {
- show: false,
- },
- splitLine: {
- show: false,
- },
- axisLabel: {
- color: '#000',
- formatter: function (value) {
- let v = value;
- if (v < 0) v *= -1;
- return v;
- },
- },
- axisTick: {
- show: false,
- },
- axisLine: {
- show: false,
- },
- nameTextStyle: {
- color: '#000',
- },
- },
- {
- scale: true,
- nameGap: 6,
- type: 'value',
- name: '收视率%',
- nameLocation: 'start',
- splitLine: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- axisLine: {
- show: false,
- },
- axisLabel: {
- color: '#000',
- },
- nameTextStyle: {
- color: '#000',
- },
- },
- ],
- grid: {
- left: 50,
- right: 50,
- },
- series: [
- {
- name: '流入',
- type: 'bar',
- yAxisIndex: 0,
- stack: 'one',
- data: Irdata,
- sampling: 'lttb',
- emphasis: {
- focus: 'series',
- },
- itemStyle: {
- color: '#df5a5a',
- },
- },
- {
- name: '流出',
- type: 'bar',
- yAxisIndex: 0,
- sampling: 'lttb',
- stack: 'one',
- data: Icdata,
- emphasis: {
- focus: 'series',
- },
- itemStyle: {
- color: '#6ab581',
- },
- },
- {
- name: '收视率%',
- type: 'line',
- yAxisIndex: 1,
- smooth: true,
- showSymbol: false,
- data: audienceRating,
- lineStyle: {
- width: 1,
- color: '#50abfd',
- },
- },
- ],
- });
- },
- timeupdate(v) {
- if (sec === Math.floor(v.srcElement.currentTime)) return;
- sec = Math.floor(v.srcElement.currentTime);
- let width = this.$refs.chart.offsetWidth - 100;
- let item = this.orgLi[sec] || {};
- let s = this.myChart.getOption().dataZoom[0].startValue,
- e = this.myChart.getOption().dataZoom[0].endValue;
- let iW = width / (e - s),
- cheng = sec - s < 0 ? 0 : sec - s;
- let step = iW * cheng > width ? 0 : iW * cheng;
- if (!item.lrTop) return;
- this.nowItem = item;
- this.left = item.lrTop || [];
- this.right = item.lcTop || [];
- this.leftNum = 50 + step;
- if (iW * cheng <= width) return;
- page++;
- this.myChart.setOption({
- dataZoom: {
- start: stepNum * page,
- end: stepNum * (page + 1),
- },
- });
- },
- videoerror() {
- this.videoerrorStart = true;
- },
- videoload() {
- this.videoerrorStart = false;
- const video = document.querySelector('video');
- let w = Math.ceil((500 * video.videoWidth) / video.videoHeight);
- video.style.width = w + 'px';
- },
- formateNum(n) {
- let num = n;
- if (isNaN(n)) num = '0';
- else if (n >= 100000000)
- num =
- ((n / 100000000).toFixed(2) - 0 + '').replace(
- /\B(?=(?:\d{3})+\b)/g,
- ','
- ) + '亿';
- else if (n >= 10000)
- num =
- ((n / 10000).toFixed(2) - 0 + '').replace(
- /\B(?=(?:\d{3})+\b)/g,
- ','
- ) + '万';
- else num = (num + '').replace(/\B(?=(?:\d{3})+\b)/g, ',');
- return num;
- },
- },
- components: {},
- };
- </script>
- <style>
- body {
- overflow: hidden;
- }
- .Jugouout {
- min-width: 1149px;
- padding: 10px 12px;
- }
- .Jugouout video {
- width: 100%;
- height: 500px;
- background-color: #000;
- margin: 0 auto;
- display: block;
- }
- .Jugouout .lineinfobackground {
- font-size: 12px;
- border-radius: 9px;
- position: absolute;
- width: 345px;
- height: 200px;
- top: 30px;
- left: 50px;
- background: rgba(0, 0, 0, 0.5);
- transform: translateX(-50%);
- color: #fff;
- /* opacity: 0.5; */
- }
- .Jugouout .lineinfobackground .line {
- position: absolute;
- width: 2px;
- height: 120%;
- margin-top: -5%;
- margin-left: 50%;
- background-color: #888;
- }
- .Jugouout .lineinfobackground .icon {
- display: inline-block;
- width: 30px;
- height: 10px;
- border-radius: 10px;
- }
- .Jugouout .lineinfobackground .iconLine {
- background-color: #50abfd;
- display: inline-block;
- width: 30px;
- height: 2px;
- vertical-align: middle;
- border-radius: 10px;
- }
- .Jugouout .videoerror {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- video::-webkit-media-controls-timeline {
- display: none;
- }
- .Jugouout .subtitle {
- width: 417px;
- line-height: 56px;
- height: 56px;
- background: url(https://dp.sxtvs.com.cn/screenss/images/subtitle.png);
- background-size: 417px 56px;
- text-align: left;
- font-size: 36px;
- color: #ffffff;
- font-weight: bold;
- letter-spacing: 1px;
- padding-left: 50px;
- }
- </style>
|