123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796 |
- <template>
- <div class="History">
- <el-breadcrumb separator-class="el-icon-arrow-right">
- <el-breadcrumb-item>新媒体</el-breadcrumb-item>
- <el-breadcrumb-item>用户分析</el-breadcrumb-item>
- <el-breadcrumb-item>用户趋势</el-breadcrumb-item>
- </el-breadcrumb>
- <el-card class="box-card">
- <div class="head">
- <div class="head-item">
- <el-form
- ref="form"
- :model="form"
- size="small"
- :inline="true"
- label-width="120px"
- >
- <el-form-item label="应用">
- <el-select
- v-model="form.app"
- placeholder="请选择时段"
- @change="change"
- >
- <el-option
- v-for="item in cycle"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- :disabled="item.disabled"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-form>
- </div>
- <div class="head-item" v-if="!userTotalList.length" />
- <div class="head-item" v-if="!userTotalList.length" />
- <div
- v-for="(item, i) in userTotalList"
- :key="i + item.key"
- class="head-item"
- :style="{
- borderTopColor: type === item.key ? '#396fff' : '#fff',
- }"
- >
- <div>{{ item.name }}</div>
- <div class="value">
- <countTo
- v-if="!item.isNum"
- :startVal="0"
- :endVal="item.value - 0"
- :duration="1500"
- ></countTo>
- <span v-else v-text="item.value"></span>
- </div>
- </div>
- </div>
- </el-card>
- <br />
- <el-card class="box-card">
- <el-form
- ref="form"
- :model="form"
- size="small"
- :inline="true"
- label-width="120px"
- >
- <el-form-item label="日期">
- <el-date-picker
- v-if="form.date.length"
- v-model="form.date"
- type="daterange"
- :disabled-date="time => disabledDate(time)"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- :clearable="false"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="版本">
- <el-select
- filterable
- multiple
- collapse-tags
- clearable
- v-model="form.version"
- placeholder="请选择版本"
- @change="changeversion"
- >
- <el-option
- v-for="item in version"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- :disabled="item.disabled"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="渠道">
- <el-select
- filterable
- multiple
- collapse-tags
- clearable
- v-model="form.channel"
- @change="changechannel"
- placeholder="请选择渠道"
- >
- <el-option
- v-for="item in channel"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- :disabled="item.disabled"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="来源">
- <el-select
- collapse-tags
- clearable
- v-model="form.client"
- placeholder="请选择来源"
- >
- <el-option
- v-for="item in client"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- :disabled="item.disabled"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item style="float: right">
- <el-button type="primary" @click="onSubmit">查询</el-button>
- <el-button type="primary" @click="onExport">导出</el-button>
- </el-form-item>
- </el-form>
- <el-divider />
- <div class="head" v-if="oriData.total">
- <div
- v-for="(item, i) in oriData.total"
- :key="i + item.key"
- class="head-item"
- @click="() => changeData(item.key, item.name)"
- :style="{
- borderTopColor: type === item.key ? '#396fff' : '#fff',
- }"
- >
- <div>{{ item.name }}</div>
- <div class="value">
- <!-- oriData.total.activeUser -->
- <countTo
- v-if="!item.isNum"
- :startVal="0"
- :endVal="item.value - 0"
- :duration="1500"
- ></countTo>
- <span v-else v-text="item.value"></span>
- </div>
- </div>
- </div>
- <div class="realLineChart" ref="realLineChart"></div>
- <el-table
- v-if="this.oriData && this.oriData.list && this.oriData.list.length"
- :data="showList"
- style="width: 100%"
- :header-cell-style="{ backgroundColor: '#f4f5f7', color: '#606266' }"
- >
- <el-table-column prop="dt" label="日期" />
- <el-table-column prop="activeUser" sortable label="活跃用户">
- <template #default="scope">
- <countTo
- :startVal="scope.row.activeUser"
- :endVal="scope.row.activeUser"
- :duration="100"
- ></countTo>
- </template>
- </el-table-column>
- <el-table-column prop="newUser" sortable label="新增用户">
- <template #default="scope">
- <countTo
- :startVal="scope.row.newUser"
- :endVal="scope.row.newUser"
- :duration="100"
- ></countTo>
- </template>
- </el-table-column>
- <el-table-column prop="totalUser" sortable label="累计用户">
- <template #default="scope">
- <countTo
- :startVal="scope.row.totalUser"
- :endVal="scope.row.totalUser"
- :duration="100"
- ></countTo>
- </template>
- </el-table-column>
- <el-table-column prop="startTimes" sortable label="启动次数">
- <template #default="scope">
- <countTo
- :startVal="scope.row.startTimes"
- :endVal="scope.row.startTimes"
- :duration="100"
- ></countTo>
- </template>
- </el-table-column>
- <el-table-column prop="duration" sortable label="人均使用时长">
- <template #default="scope">
- {{ timeFormat(scope.row.durationUser) }}
- </template>
- </el-table-column>
- <el-table-column prop="duration" sortable label="次均使用时长">
- <template #default="scope">
- {{ timeFormat(scope.row.durationTimes) }}
- </template>
- </el-table-column>
- </el-table>
- <div v-if="oriData.list && oriData.list.length">
- <el-pagination
- v-if="Math.ceil(oriData.list.length / 10) > 1"
- :current-page="page"
- layout="prev, pager, next"
- :total="oriData.list.length"
- @current-change="pagechange"
- />
- </div>
- </el-card>
- </div>
- </template>
- <script>
- // @ is an alias to /src
- import {
- getRule,
- getAppList,
- getHistory,
- getSearchData,
- getUserTotal,
- } from '@/api/index';
- import countTo from '@/components/counto/vue-countTo.vue';
- import { defaultAppNameFunc } from '@/utils/tool.js';
- import * as echarts from 'echarts/core';
- import { LineChart } from 'echarts/charts';
- import {
- TitleComponent,
- TooltipComponent,
- GridComponent,
- ToolboxComponent,
- LegendComponent,
- } from 'echarts/components';
- import { CanvasRenderer } from 'echarts/renderers';
- echarts.use([
- TitleComponent,
- TooltipComponent,
- GridComponent,
- LineChart,
- CanvasRenderer,
- ToolboxComponent,
- LegendComponent,
- ]);
- // import config from "@/config/index";
- let chart = undefined;
- export default {
- name: 'History',
- data() {
- return {
- type: '',
- lastParams: {},
- page: 1,
- form: {
- app: '',
- version: [],
- channel: [],
- date: [],
- client: '',
- },
- cycle: [],
- oriData: {},
- showList: [],
- version: [],
- channel: [],
- client: [],
- userTotalList: [],
- };
- },
- async mounted() {
- if (chart && chart.dispose) chart.dispose();
- const { source, appV, appC, clentV, appli, appCLi, appVLi, clentli } =
- await this.getAppListFunc();
- const keys = {
- value: 'mname',
- label: 'mname',
- };
- const clentliList = clentli.find(r => r.mdefault) || false;
- let client = clentliList ? clentliList.mcode.toString() : -1;
- this.cycle = this.verifyList(appli, source, keys, false);
- this.channel = this.verifyList(appCLi, appC, keys, true);
- this.version = this.verifyList(appVLi, appV, keys, true);
- this.client = this.verifyList(
- clentli,
- clentV,
- {
- value: 'mcode',
- label: 'mname',
- },
- true
- );
- this.form = {
- // app: (this.cycle[0] || { value: "" }).value,
- app: defaultAppNameFunc(this.cycle),
- version: [(this.version[0] || { value: '' }).value],
- client,
- channel: [(this.channel[0] || { value: '' }).value],
- date: [new Date(Date.now() - 604800000), new Date(Date.now() - 86400000)],
- };
- this.onSubmit();
- this.getUser();
- },
- computed: {},
- methods: {
- getUser() {
- getUserTotal({ app: this.form.app }).then(r => {
- this.userTotalList = (r || []).map(v => {
- return {
- name: v.name,
- value: v.value,
- key: v.name,
- isNum: isNaN(v.value),
- };
- });
- });
- },
- verifyList(list, verify, obj, more) {
- if (!obj) return;
- let li = list || [];
- const out = [];
- more && out.push({ value: -1, label: '全部' });
- for (let i = 0; i < li.length; i++) {
- const v = li[i];
- if (verify.length !== 0 && !verify[v.mcode]) continue;
- out.push({
- value: v[obj.value],
- label: v[obj.label],
- });
- }
- return out;
- },
- pagechange(p) {
- this.page = p;
- this.pushShowList();
- },
- pushShowList() {
- let s = this.page - 1 < 0 ? 0 : (this.page - 1) * 10;
- let e = this.page * 10;
- let li = JSON.parse(JSON.stringify(this.oriData.list || []));
- let out = [];
- for (let i = s; i < e; i++) {
- li[i] && out.push(li[i]);
- }
- this.showList = out;
- },
- onSubmit() {
- this.lastParams = {
- app: this.form.app,
- start: this.FormData(this.form.date[0]),
- end: this.FormData(this.form.date[1]),
- manufacturer: this.form.channel == -1 ? undefined : this.form.channel,
- version: this.form.version == -1 ? undefined : this.form.version,
- lib: this.form.client == -1 ? undefined : this.form.client,
- };
- getHistory(this.lastParams)
- .then(r => {
- if (!this.$refs.realLineChart) return;
- let oriData = r || {};
- const total = oriData.total || {},
- keys = Object.keys(total),
- color = ['rgb(244, 127, 146)', 'rgb(17, 160, 248)'],
- p = [];
- let tab = undefined,
- tabName = undefined;
- for (let i = 0; i < keys.length; i++) {
- const v = keys[i];
- if (!total[v].value && total[v].value !== 0) continue;
- let isNum = isNaN(total[v].value);
- let value = '';
- if (
- isNum &&
- !/次数/g.test(total[v].name) &&
- !/下载量/g.test(total[v].name) &&
- !/装机量/g.test(total[v].name) &&
- !/用户数/g.test(total[v].name) &&
- typeof total[v].value === 'number'
- )
- value = this.timeFormat(total[v].value);
- else value = total[v].value;
- if (!tab && v !== 'downloads') {
- tab = v;
- tabName = total[v].name;
- }
- p.push({
- name: total[v].name,
- value,
- color: color[i % 2],
- key: v,
- isNum,
- });
- }
- this.oriData = {
- list: oriData.list || [],
- total: p,
- };
- this.changeData(tab, tabName);
- chart.hideLoading();
- this.page = 1;
- this.pushShowList();
- })
- .catch(() => {
- this.oriData = {};
- this.pushShowList();
- chart && chart.clear() && chart.hideLoading();
- });
- },
- changeData(type, title) {
- const ret = {
- downloads: true,
- ip: true,
- };
- if (ret[type]) return;
- this.type = type;
- const keyList = [],
- valueList = [];
- (this.oriData.list || []).map(v => {
- keyList.push(v.dt);
- valueList.push(v[this.type]);
- });
- chart && chart.clear();
- this.createImage(keyList, valueList, title);
- },
- createImage(keyList, valueList, title) {
- if (!chart) {
- chart = echarts.init(this.$refs.realLineChart);
- window.onresize = chart.resize;
- }
- chart.resize({
- height: (this.$refs.realLineChart.offsetWidth * 4) / 16,
- });
- const _this = this;
- chart.setOption({
- tooltip: {
- confine: true,
- trigger: 'axis',
- formatter(v) {
- const item = v[0] || {};
- let val = item.data || 0;
- if (/duration/.test(_this.type)) val = _this.timeFormat(val);
- return item.axisValue + '<br />' + title + ':' + val;
- },
- },
- toolbox: {
- feature: {
- saveAsImage: {
- type: 'jpg',
- name: '趋势',
- },
- },
- },
- legend: {
- data: [title],
- },
- grid: {
- left: '3%',
- right: '4%',
- bottom: '3%',
- containLabel: true,
- },
- xAxis: {
- type: 'category',
- boundaryGap: true,
- data: keyList,
- },
- yAxis: {
- type: 'value',
- scale: true,
- minInterval: 1,
- axisLabel: {
- formatter(v) {
- let val = v;
- if (_this.type === 'duration') val = _this.timeFormat(val);
- else {
- if (val >= 100000000) {
- val = (val / 100000000).toFixed(2) + '亿';
- } else if (val >= 10000) {
- val = (val / 10000).toFixed(2) + '万';
- }
- }
- return val;
- },
- },
- },
- series: [
- {
- name: title,
- data: valueList,
- symbolSize: 0,
- lineStyle: {
- width: 1,
- },
- type: 'line',
- smooth: true,
- color: 'rgba(58,132,255,.9)',
- areaStyle: {
- color: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [
- {
- offset: 0,
- color: 'rgba(58,132,255, 0.8)', // 0% 处的颜色
- },
- {
- offset: 1,
- color: 'rgba(58,132,255, 0.1)', // 100% 处的颜色
- },
- ],
- global: false, // 缺省为 false
- },
- },
- },
- ],
- });
- },
- async getAppListFunc() {
- const { r, li, appVersion, channel, clientList } =
- await this.getAppListOri();
- let source = { length: 0 },
- appli = [];
- let appV = { length: 0 },
- appVLi = [];
- let appC = { length: 0 },
- appCLi = [];
- let clentV = { length: 0 },
- clentli = [];
- let prvList =
- r.output && r.output.data ? r.output.data.prvRolectrl || [] : [];
- for (let i = 0; i < prvList.length; i++) {
- const v = prvList[i];
- if (v.controlid == 'RMT_SOURCE')
- (source[v.detid] = true), (source.length = source.length + 1);
- if (v.controlid == 'APP_VERSION')
- (appV[v.detid] = true), (appV.length = appV.length + 1);
- if (v.controlid == 'CHANNEL')
- (appC[v.detid] = true), (appC.length = appC.length + 1);
- if (v.controlid == 'CLIENT_TYPE')
- (clentV[v.detid] = true), (clentV.length = clentV.length + 1);
- }
- if (li.status === '0') appli = li.output.data || [];
- if (appVersion.length) appVLi = appVersion || [];
- if (channel.length) appCLi = channel || [];
- if (clientList.length) clentli = clientList || [];
- return {
- source,
- appV,
- appC,
- appli,
- clentV,
- appVLi,
- appCLi,
- clentli,
- };
- },
- async getAppListOri() {
- const roleid = JSON.parse(
- window.parent.localStorage.userinfo || '{}'
- ).roleid;
- const r = await getRule({
- db: 'authplat',
- exportMark: '0',
- menuid: 399,
- roleid,
- });
- // 应用列表
- const li = await getAppList({
- exportMark: '0',
- gcode: 'SOURCE',
- pageid: 1,
- pagesize: 1000,
- });
- const cycle = li.output ? li.output.data || [] : [];
- // 应用版本列表
- const appVersion = await getSearchData({
- gcode: 'APP_VERSION',
- source: defaultAppNameFunc(cycle, 'mname'),
- });
- // 端列表
- const clientList = await getSearchData({
- gcode: 'CLIENT_TYPE',
- source: defaultAppNameFunc(cycle, 'mname'),
- });
- // 应用渠道列表
- const channel = await getSearchData({
- gcode: 'CHANNEL',
- source: defaultAppNameFunc(cycle, 'mname'),
- });
- return { r, li, appVersion, channel, clientList };
- },
- disabledDate(time) {
- const first = new Date('2021-06-21 00:00:00');
- return (
- time.getTime() > Date.now() - 86400000 ||
- time.getTime() < first.getTime()
- );
- },
- FormData(date) {
- const d = new Date(date || Date.now() - 86400000);
- const year = d.getFullYear();
- const month =
- d.getMonth() <= 8 ? '0' + (d.getMonth() + 1) : d.getMonth() + 1;
- const day = d.getDate() <= 9 ? '0' + d.getDate() : d.getDate();
- return [year, month, day].join('-');
- },
- timeFormat(t) {
- const Time = t || 0;
- const mH = Time % 3600;
- let hour = (Time - mH) / 3600;
- let min = (mH - (mH % 60)) / 60;
- let son = Number(mH % 60).toFixed(0);
- hour = hour <= 9 ? '0' + hour : hour;
- min = min <= 9 ? '0' + min : min;
- son = son <= 9 ? '0' + son : son;
- let out = [];
- if (hour * 1 > 0) out.push(hour);
- out.push(...[min, son]);
- return out.join(':');
- },
- change() {
- const roleid = JSON.parse(
- window.parent.localStorage.userinfo || '{}'
- ).roleid;
- const appV = {
- length: 0,
- };
- // 如果应用选择西部网则渠道默认全部
- this.form.app === '西部网' && (this.form.client = -1);
- this.getUser();
- getRule({
- db: 'authplat',
- exportMark: '0',
- menuid: 399,
- roleid,
- }).then(rule => {
- let prvList =
- rule.output && rule.output.data
- ? rule.output.data.prvRolectrl || []
- : [];
- for (let i = 0; i < prvList.length; i++) {
- const v = prvList[i];
- if (v.controlid == 'APP_VERSION')
- (appV[v.detid] = true), (appV.length = appV.length + 1);
- }
- getSearchData({
- gcode: 'APP_VERSION',
- source: this.form.app,
- }).then(r => {
- let version = [
- {
- label: '全部',
- value: -1,
- },
- ];
- r.map(v => {
- if ((appV.length && appV[v.mcode]) || appV.length === 0)
- version.push({
- value: v.mname,
- label: v.mname,
- });
- });
- this.version = version;
- this.form = {
- ...this.form,
- version: [-1],
- };
- });
- });
- },
- changeversion(v) {
- if (!v.length) return (this.form.version = [-1]);
- const last = v[v.length - 1];
- if (last == -1) return (this.form.version = [-1]);
- let ver = [];
- for (let i = 0; i < v.length; i++) {
- const element = v[i];
- if (element == -1) continue;
- ver.push(element);
- }
- this.form.version = ver;
- },
- changechannel(v) {
- if (!v.length) return (this.form.channel = [-1]);
- const last = v[v.length - 1];
- if (last == -1) return (this.form.channel = [-1]);
- let ver = [];
- for (let i = 0; i < v.length; i++) {
- const element = v[i];
- if (element == -1) continue;
- ver.push(element);
- }
- this.form.channel = ver;
- },
- onExport() {
- const S = this.form.date[0]
- ? this.FormData(this.form.date[0])
- : undefined;
- const E = this.form.date[1]
- ? this.FormData(this.form.date[1])
- : undefined;
- let p = this.lastParams.app
- ? this.lastParams
- : {
- app: this.form.app,
- start: S,
- end: E,
- manufacturer:
- this.form.channel == -1 ? undefined : this.form.channel,
- version: this.form.version == -1 ? undefined : this.form.version,
- };
- getHistory(p).then(r => {
- // 生成数据
- let strcsv =
- 'data:text/csv;charset=utf-8,\uFEFF日期,活跃用户,新增用户,累计用户,人均使用时长,次均使用时长\r\n';
- (r.list || []).map(v => {
- strcsv += [
- v.dt + '\t',
- v.activeUser,
- v.newUser,
- v.totalUser,
- this.timeFormat(v.durationUser) + '\t',
- this.timeFormat(v.durationTimes) + '\t',
- '\r\n',
- ].join(',');
- });
- // 导出
- let link = document.createElement('a');
- link.id = 'download-csv';
- link.setAttribute('href', encodeURI(strcsv));
- link.setAttribute(
- 'download',
- p.app + '用户趋势' + S + '_' + E + '.csv'
- );
- // document.body.appendChild(link);
- link.click();
- });
- },
- },
- components: {
- countTo,
- },
- };
- </script>
- <style>
- .History {
- margin: 10px 15px;
- }
- .History .has-seconds .el-time-spinner__wrapper:last-child {
- display: none;
- }
- .head {
- display: flex;
- font-weight: 500;
- }
- .head .head-item {
- flex: 1;
- text-align: center;
- font-size: 0.8em;
- border-top: 3px solid #fff;
- padding-top: 10px;
- }
- .head .value {
- margin: 15px 0;
- color: #396fff;
- font-size: 25px;
- }
- </style>
|