123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- <template>
- <div class="RealOnline">
- <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">
- <el-form
- ref="form"
- :model="form"
- size="small"
- :inline="true"
- label-width="120px"
- class="demo-form-inline"
- >
- <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
- 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-item label="版本">
- <el-select
- 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
- 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 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-card>
- <br />
- <el-card class="box-card">
- <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" 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" 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" 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" 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" label="人均使用时长">
- <template #default="scope">
- {{ timeFormat(scope.row.durationUser) }}
- </template>
- </el-table-column>
- <el-table-column prop="duration" 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 } from "@/api/index";
- import countTo from "@/components/counto/vue-countTo.vue";
- // import config from "@/config/index";
- export default {
- name: "RealOnline",
- data() {
- return {
- type: "",
- lastParams: {},
- page: 1,
- form: {
- app: "",
- version: [],
- channel: [],
- date: [],
- },
- cycle: [],
- oriData: {},
- showList: [],
- version: [],
- channel: [],
- };
- },
- async mounted() {
- const { source, appV, appC, appli, appCLi, appVLi } =
- await this.getAppListFunc();
- const keys = {
- value: "mname",
- label: "mname",
- };
- 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.form = {
- // app: (this.cycle[0] || { value: "" }).value,
- app: "起点新闻",
- version: [(this.version[0] || { value: "" }).value],
- channel: [(this.channel[0] || { value: "" }).value],
- date: [new Date(Date.now() - 604800000), new Date(Date.now() - 86400000)],
- };
- this.onSubmit();
- },
- computed: {},
- methods: {
- 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,
- };
- getHistory(this.lastParams)
- .then(r => {
- let oriData = r || {};
- this.oriData = {
- list: oriData.list || [],
- };
- this.page = 1;
- this.pushShowList();
- })
- .catch(() => {
- this.oriData = {};
- this.pushShowList();
- });
- },
- async getAppListFunc() {
- const { r, li, appVersion, channel } = 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.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 (li.status === "0") appli = li.output.data || [];
- if (appVersion.length) appVLi = appVersion || [];
- if (channel.length) appCLi = channel || [];
- 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 defaultAppName = "起点新闻";
- // 应用版本列表
- const appVersion = await getSearchData({
- gcode: "APP_VERSION",
- source: defaultAppName,
- });
- // 应用渠道列表
- const channel = await getSearchData({
- gcode: "CHANNEL",
- source: defaultAppName,
- });
- return { r, li, appVersion, channel };
- },
- 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,
- };
- getRule({
- db: "authplat",
- exportMark: "0",
- menuid: 399,
- roleid,
- }).then(rule => {
- let prvList = 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,日期,活跃用户,新增用户,累计用户,人均使用时长,次均使用时长\r\n";
- (r.list || []).map(v => {
- strcsv += [
- v.dt,
- v.activeUser,
- v.newUser,
- v.totalUser,
- this.timeFormat(v.durationUser),
- this.timeFormat(v.durationTimes),
- "\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>
- .RealOnline {
- margin: 10px 15px;
- }
- .RealOnline .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>
|