123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- <template>
- <!-- 对应页面:渠道(app) -->
- <view class="fix-top-window">
- <view class="uni-header">
- <uni-stat-breadcrumb class="uni-stat-breadcrumb-on-phone" />
- <view class="uni-group">
- <view class="uni-sub-title hide-on-phone">
- <uni-link href="https://ask.dcloud.net.cn/article/35974"
- text="支持Android App多渠道统计。设置App渠道包的方法,请参考 https://ask.dcloud.net.cn/article/35974。"></uni-link>
- </view>
- </view>
- </view>
- <view class="uni-container">
- <view class="uni-stat--x flex">
- <uni-data-select collection="opendb-app-list" field="appid as value, name as text" orderby="text asc"
- :defItem="1" label="应用选择" v-model="query.appid" :clear="false" />
- <uni-data-select collection="opendb-app-versions" :storage="false" :where="versionQuery"
- field="_id as value, version as text" orderby="text asc" label="版本选择" v-model="query.version_id" />
- <uni-stat-tabs label="平台选择" type="boldLine" mode="platform-channel" :all="false"
- v-model="query.platform_id" @change="changePlatform" />
- <view class="flex">
- <uni-stat-tabs label="日期选择" :current="currentDateTab" mode="date" @change="changeTimeRange" />
- <uni-datetime-picker type="daterange" :end="new Date().getTime()" v-model="query.start_time"
- returnType="timestamp" :clearIcon="false" class="uni-stat-datetime-picker"
- :class="{'uni-stat__actived': currentDateTab < 0 && !!query.start_time.length}"
- @change="useDatetimePicker" />
- </view>
- </view>
- <view class="uni-stat--x" style="padding: 15px 0;">
- <uni-stat-panel :items="panelData" class="uni-stat-panel" />
- <uni-stat-tabs type="box" v-model="chartTab" :tabs="chartTabs" class="mb-l" @change="changeChartTab" />
- <view class="uni-charts-box">
- <qiun-data-charts type="area" :chartData="chartData" echartsH5 echartsApp
- tooltipFormat="tooltipCustom" />
- </view>
- </view>
- <view class="uni-stat--x p-m">
- <view class="mb-m">
- <uni-link color="" href="https://ask.dcloud.net.cn/article/35974" text="如何自定义渠道包?"></uni-link>
- </view>
- <uni-table :loading="loading" border stripe :emptyText="$t('common.empty')">
- <uni-tr>
- <template v-for="(mapper, index) in fieldsMap.slice(0, fieldsMap.length-1)">
- <uni-th v-if="mapper.title" :key="index" align="center">
- {{mapper.title}}
- </uni-th>
- </template>
- </uni-tr>
- <uni-tr v-for="(item ,i) in tableData" :key="i">
- <template v-for="(mapper, index) in fieldsMap.slice(0, fieldsMap.length-1)">
- <uni-td v-if="mapper.title && index === 1" :key="mapper.field" class="uni-stat-edit--x">
- {{item[mapper.field] ? item[mapper.field] : '-'}}
- <uni-icons type="compose" color="#2979ff" size="25" class="uni-stat-edit--btn"
- @click="inputDialogToggle(item.channel_code, item.channel_name)" />
- </uni-td>
- <uni-td v-else="mapper.title" :key="mapper.field" align="center">
- {{item[mapper.field] !== undefined ? item[mapper.field] : '-'}}
- </uni-td>
- </template>
- </uni-tr>
- </uni-table>
- <view class="uni-pagination-box">
- <uni-pagination show-icon show-page-size :page-size="paginationOptions.pageSize"
- :current="paginationOptions.pageCurrent" :total="paginationOptions.total"
- @change="changePageCurrent" @pageSizeChange="changePageSize" />
- </view>
- </view>
- </view>
- <uni-popup ref="inputDialog" type="dialog" :maskClick="true">
- <uni-popup-dialog ref="inputClose" mode="input" title="请编辑名称" v-model="updateValue" placeholder="请输入内容"
- @confirm="editName"></uni-popup-dialog>
- </uni-popup>
- <!-- #ifndef H5 -->
- <fix-window />
- <!-- #endif -->
- </view>
- </template>
- <script>
- import {
- mapfields,
- stringifyQuery,
- stringifyField,
- stringifyGroupField,
- maxDeltaDay,
- getTimeOfSomeDayAgo,
- division,
- format,
- formatDate,
- getFieldTotal,
- debounce
- } from '@/js_sdk/uni-stat/util.js'
- import fieldsMap from './fieldsMap.js'
- export default {
- data() {
- return {
- // 字段映射表
- fieldsMap,
- // 查询参数
- query: {
- // 统计范围 day:按天统计,hour:按小时统计
- dimension: "day",
- // 应用id
- appid: '',
- // 平台
- uni_platform: 'android',
- // 平台id
- platform_id: '',
- // 版本号
- version_id: '',
- // 开始时间
- start_time: [],
- },
- // 分页数据
- paginationOptions: {
- pageSize: 20,
- pageCurrent: 1, // 当前页
- total: 0, // 数据总量
- },
- // 加载状态
- loading: false,
- // 日期选择索引
- currentDateTab: 1,
- days: 0,
- // 表格数据
- tableData: [],
- panelData: fieldsMap.filter(f => f.hasOwnProperty('value')),
- chartData: {},
- chartTab: 'new_device_count',
- queryId: '',
- updateValue: ''
- }
- },
- computed: {
- chartTabs() {
- const tabs = []
- fieldsMap.forEach(item => {
- const {
- field: _id,
- title: name
- } = item
- const isTab = item.hasOwnProperty('value')
- if (_id && name && isTab) {
- tabs.push({
- _id,
- name
- })
- }
- })
- return tabs
- },
- queryStr() {
- return stringifyQuery(this.query, true)
- },
- dimension() {
- if (maxDeltaDay(this.query.start_time, 1)) {
- return 'hour'
- } else {
- return 'day'
- }
- },
- versionQuery() {
- const {
- appid,
- uni_platform
- } = this.query
- const query = stringifyQuery({
- appid,
- uni_platform,
- type: 'native_app'
- })
- return query
- }
- },
- created() {
- this.debounceGet = debounce(() => this.getAllData())
- },
- watch: {
- query: {
- deep: true,
- handler(val) {
- this.paginationOptions.pageCurrent = 1 // 重置分页
- this.debounceGet()
- }
- }
- },
- methods: {
- useDatetimePicker() {
- this.currentDateTab = -1
- },
- changePlatform(id, index, name, item) {
- this.query.version_id = 0
- console.log(item.code);
- this.query.uni_platform = item.code
- },
- changeTimeRange(id, index) {
- this.currentDateTab = index
- const day = 24 * 60 * 60 * 1000
- let start, end
- start = getTimeOfSomeDayAgo(id)
- if (!id) {
- end = getTimeOfSomeDayAgo(0) + day - 1
- } else {
- end = getTimeOfSomeDayAgo(0) - 1
- }
- this.query.start_time = [start, end]
- },
- changePageCurrent(e) {
- this.paginationOptions.pageCurrent = e.current
- this.getTableData()
- },
- changePageSize(pageSize) {
- this.paginationOptions.pageSize = pageSize
- this.paginationOptions.pageCurrent = 1 // 重置分页
- this.getTableData()
- },
- changeChartTab(id, index, name) {
- this.getChartData(id, name)
- },
- getAllData(query) {
- this.getPanelData()
- this.getChartData()
- this.getTableData()
- },
- getChartData(field = this.chartTab) {
- // this.chartData = {}
- let querystr = stringifyQuery(this.query, false, ['uni_platform'])
- const {
- pageCurrent
- } = this.paginationOptions
- const db = uniCloud.database()
- db.collection('uni-stat-result')
- .where(querystr)
- .field(`${stringifyField(fieldsMap, field)}, start_time, channel_id`)
- .groupBy('channel_id,start_time')
- .groupField(stringifyGroupField(fieldsMap, field))
- .orderBy('start_time', 'asc')
- .get({
- getCount: true
- })
- .then(res => {
- const {
- count,
- data
- } = res.result
- const options = {
- categories: [],
- series: [{
- name: '暂无数据',
- data: []
- }]
- }
- const xAxis = options.categories
- if (this.dimension === 'hour') {
- for (let i = 0; i < 24; ++i) {
- const hour = i < 10 ? '0' + i : i
- const x = `${hour}:00 ~ ${hour}:59`
- xAxis.push(x)
- }
- }
- const hasChannels = []
- console.log('data----', data);
- data.forEach(item => {
- if (hasChannels.indexOf(item.channel_id) < 0) {
- hasChannels.push(item.channel_id)
- }
- })
- // 请求所有渠道数据,与 hasChannels 匹配得出 channel_name
- let allChannels = []
- this.getChannels().then(res => {
- allChannels = res.result.data
- }).finally(() => {
- hasChannels.forEach((channel, index) => {
- // TODO 需要做个排序,暂时排序还是有问题的
- // allChannels = allChannels.sort((a,b)=>{ return a.channel_code.localeCompare(b.channel_code)})
- const c = allChannels.find(item => item._id === channel)
- const line = options.series[index] = {
- name: c && c.channel_name || '未知',
- data: []
- }
- if (this.dimension === 'hour') {
- for (let i = 0; i < 24; ++i) {
- line.data[i] = 0
- }
- }
- let mapper = fieldsMap.filter(f => f.field === field)
- mapper = JSON.parse(JSON.stringify(mapper))
- delete mapper[0].value
- mapper[0].formatter = ''
- for (const item of data) {
- // 将 item 根据 mapper 计算、格式化
- mapfields(mapper, item, item)
- let date = item.start_time
- const x = formatDate(date, this.dimension)
- let y = item[field]
- const dateIndex = xAxis.indexOf(x)
- if (channel === item.channel_id) {
- if (dateIndex < 0) {
- xAxis.push(x)
- line.data.push(y)
- } else {
- line.data[dateIndex] = y
- }
- }
- }
- })
- console.log(options);
- options.series = options.series.sort((a, b) => {
- return a.name.localeCompare(b.name)
- })
- this.chartData = options
- })
- }).catch((err) => {
- console.error(err)
- // err.message 错误信息
- // err.code 错误码
- }).finally(() => {})
- },
- getChannels() {
- const db = uniCloud.database()
- console.log(this.query);
- return db.collection('uni-stat-app-channels').where(stringifyQuery({
- appid: this.query.appid,
- platform_id: this.query.platform_id
- })).get()
- },
- getTableData() {
- const query = stringifyQuery(this.query, false, ['uni_platform'])
- const {
- pageCurrent
- } = this.paginationOptions
- this.loading = true
- const db = uniCloud.database()
- db.collection('uni-stat-result')
- .where(query)
- .field(`${stringifyField(fieldsMap)},appid, channel_id`)
- .groupBy('appid, channel_id')
- .groupField(stringifyGroupField(fieldsMap))
- .orderBy('new_device_count', 'desc')
- .skip((pageCurrent - 1) * this.paginationOptions.pageSize)
- .limit(this.paginationOptions.pageSize)
- .get({
- getCount: true
- })
- .then(res => {
- const {
- count,
- data
- } = res.result
- this.getChannels().then(res => {
- const channels = res.result.data
- for (const item of data) {
- channels.forEach(channel => {
- if (item.channel_id === channel._id) {
- item.channel_code = channel.channel_code
- item.channel_name = channel.channel_name
- }
- })
- }
- }).finally(() => {
- for (const item of data) {
- mapfields(fieldsMap, item, item, 'total_')
- }
- this.tableData = []
- this.paginationOptions.total = count
- this.tableData = data
- this.loading = false
- })
- }).catch((err) => {
- console.error(err)
- // err.message 错误信息
- // err.code 错误码
- this.loading = false
- })
- },
- createStr(maps, fn, prefix = 'total_') {
- const strArr = []
- maps.forEach(mapper => {
- if (field.hasOwnProperty('value')) {
- const fieldName = mapper.field
- strArr.push(`${fn}(${fieldName}) as ${prefix + fieldName}`)
- }
- })
- return strArr.join()
- },
- getPanelData() {
- let query = JSON.parse(JSON.stringify(this.query))
- query.dimension = 'day'
- // let query = stringifyQuery(cloneQuery)
- let querystr = stringifyQuery(query, false, ['uni_platform'])
- console.log('channel --:', querystr);
- const db = uniCloud.database()
- const subTable = db.collection('uni-stat-result')
- .where(querystr)
- .field(stringifyField(fieldsMap))
- .groupBy('appid')
- .groupField(stringifyGroupField(fieldsMap))
- .orderBy('start_time', 'desc')
- .get()
- .then(res => {
- const item = res.result.data[0]
- item && (item.total_devices = 0)
- getFieldTotal.call(this, query)
- this.panelData = []
- this.panelData = mapfields(fieldsMap, item)
- })
- },
- inputDialogToggle(queryId, updateValue) {
- this.queryId = queryId
- this.updateValue = updateValue
- this.$refs.inputDialog.open()
- },
- editName(value) {
- // 使用 clientDB 提交数据
- const db = uniCloud.database()
- db.collection('uni-stat-app-channels')
- .where({
- channel_code: this.queryId
- })
- .update({
- channel_name: value
- })
- .then((res) => {
- uni.showToast({
- title: '修改成功'
- })
- this.getTableData()
- }).catch((err) => {
- uni.showModal({
- content: err.message || '请求服务失败',
- showCancel: false
- })
- }).finally(() => {
- uni.hideLoading()
- })
- }
- }
- }
- </script>
- <style>
- .uni-stat-panel {
- box-shadow: unset;
- border-bottom: 1px solid #eee;
- padding: 0;
- margin: 0 15px;
- }
- .uni-stat-edit--x {
- display: flex;
- justify-content: space-between;
- }
- .uni-stat-edit--btn {
- cursor: pointer;
- }
- </style>
|