123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- <template>
- <!-- 对应页面:注册用户统计-趋势分析 -->
- <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">各指标趋势分析</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="应用选择" @change="changeAppid" v-model="query.appid" :clear="false" />
- <uni-data-select collection="opendb-app-versions" :where="versionQuery"
- field="_id as value, version as text" orderby="text asc" label="版本选择" v-model="query.version_id" />
- <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>
- <uni-stat-tabs label="维度选择" type="box" :current="currentDimensionTab" :tabs="dimensionTabs"
- v-model="query.dimension" />
- </view>
- <view class="uni-stat--x">
- <uni-stat-tabs label="平台选择" type="boldLine" mode="platform" v-model="query.platform_id"
- @change="changePlatform" />
- <uni-data-select v-if="query.platform_id && query.platform_id.indexOf('==') === -1"
- :localdata="channelData" label="渠道选择" v-model="query.channel_id"></uni-data-select>
- </view>
- <uni-stat-panel :items="panelData" />
- <view class="uni-stat--x p-m">
- <view class="label-text mb-l">
- 趋势图
- </view>
- <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 />
- </view>
- </view>
- <view class="uni-stat--x p-m">
- <uni-stat-table :data="tableData" :filedsMap="fieldsMap" :loading="loading" />
- <view class="uni-pagination-box">
- <uni-pagination show-icon show-page-size :page-size="options.pageSize"
- :current="options.pageCurrent" :total="options.total" @change="changePageCurrent"
- @pageSizeChange="changePageSize" />
- </view>
- </view>
- </view>
- <!-- #ifndef H5 -->
- <fix-window />
- <!-- #endif -->
- </view>
- </template>
- <script>
- import {
- mapfields,
- stringifyQuery,
- stringifyField,
- stringifyGroupField,
- getTimeOfSomeDayAgo,
- division,
- format,
- formatDate,
- getFieldTotal,
- debounce
- } from '@/js_sdk/uni-stat/util.js'
- import fieldsMap from './fieldsMap.js'
- export default {
- data() {
- return {
- fieldsMap,
- query: {
- dimension: "hour",
- appid: '',
- platform_id: '',
- uni_platform: '',
- version_id: '',
- channel_id: '',
- start_time: [],
- },
- options: {
- pageSize: 20,
- pageCurrent: 1, // 当前页
- total: 0, // 数据总量
- },
- loading: false,
- currentDateTab: 1,
- currentDimensionTab: 0,
- tableData: [],
- panelData: fieldsMap.filter(f => f.hasOwnProperty('value')),
- chartData: {},
- chartTab: 'new_user_count',
- channelData: [],
- tabName: '新增用户'
- }
- },
- 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
- },
- dimensionTabs() {
- const tabs = [{
- _id: 'hour',
- name: '按时'
- }, {
- _id: 'day',
- name: '按日'
- }, {
- _id: 'week',
- name: '按周'
- }, {
- _id: 'month',
- name: '按月'
- }]
- if (!this.getDays()) {
- this.query.dimension = 'hour'
- tabs.forEach((tab, index) => {
- if (tab._id === 'hour') {
- tab.disabled = false
- } else {
- tab.disabled = true
- }
- })
- this.currentDimensionTab = 0
- } else {
- this.query.dimension = 'day'
- tabs.forEach((tab, index) => {
- if (tab._id === 'hour') {
- tab.disabled = true
- } else {
- tab.disabled = false
- }
- })
- this.currentDimensionTab = 1
- }
- return tabs
- },
- channelQuery() {
- const platform_id = this.query.platform_id
- return stringifyQuery({
- platform_id
- })
- },
- versionQuery() {
- const {
- appid,
- uni_platform
- } = this.query
- const query = stringifyQuery({
- appid,
- uni_platform
- })
- return query
- }
- },
- created() {
- this.debounceGet = debounce(() => this.getAllData(this.query))
- this.getChannelData()
- },
- watch: {
- query: {
- deep: true,
- handler(val) {
- this.debounceGet()
- }
- }
- },
- methods: {
- getDays() {
- if (!this.query.start_time.length) return true
- const day = 24 * 60 * 60 * 1000
- const [start, end] = this.query.start_time
- const lessTwoDay = end - start >= day
- return lessTwoDay
- },
- useDatetimePicker() {
- this.currentDateTab = -1
- },
- changeAppid(id) {
- this.getChannelData(id, false)
- },
- changePlatform(id, index, name, item) {
- this.getChannelData(null, id)
- this.query.version_id = 0
- console.log('-- item.code', 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.options.pageCurrent = e.current
- this.getTabelData(this.query)
- },
- changePageSize(pageSize) {
- this.options.pageSize = pageSize
- // this.options.pageCurrent = 1 // 重置分页
- this.getTabelData(this.query)
- },
- changeChartTab(id, index, name) {
- this.tabName = name
- this.getChartData(this.query, id, name)
- },
- getAllData(query) {
- this.getPanelData()
- this.getChartData(query, this.chartTab, this.tabName)
- this.getTabelData(query)
- },
- getChartData(query, field = this.chartTab, name = '新增用户') {
- console.log('---', field, name);
- // this.chartData = {}
- query = stringifyQuery(query, true, ['uni_platform'])
- const dimension = this.query.dimension
- const db = uniCloud.database()
- db.collection('uni-stat-result')
- .where(query)
- .field(`${stringifyField(fieldsMap, field)}, start_time`)
- .groupBy('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: []
- }]
- }
- 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) {
- mapfields(mapper, item, item)
- const x = formatDate(item.start_time, dimension)
- let y = item[field]
- options.series[0].data.push(y)
- options.categories.push(x)
- }
- this.chartData = options
- }).catch((err) => {
- console.error(err)
- // err.message 错误信息
- // err.code 错误码
- }).finally(() => {
- this.loading = false
- })
- },
- getTabelData(query) {
- const {
- pageCurrent
- } = this.options
- query = stringifyQuery(query, true, ['uni_platform'])
- this.options.pageCurrent = 1 // 重置分页
- this.loading = true
- const db = uniCloud.database()
- db.collection('uni-stat-result')
- .where(query)
- .field(stringifyField(fieldsMap))
- .groupBy('start_time')
- .groupField(stringifyGroupField(fieldsMap))
- .orderBy('start_time', 'desc')
- .skip((pageCurrent - 1) * this.options.pageSize)
- .limit(this.options.pageSize)
- .get({
- getCount: true
- })
- .then(res => {
- const {
- count,
- data
- } = res.result
- for (const item of data) {
- let date = item.start_time
- if (date) {
- const dimension = this.query.dimension
- item.start_time = formatDate(date, dimension)
- }
- mapfields(fieldsMap, item, item)
- }
- this.tableData = []
- this.options.total = count
- this.tableData = data
- }).catch((err) => {
- console.error(err)
- // err.message 错误信息
- // err.code 错误码
- }).finally(() => {
- this.loading = false
- })
- },
- getPanelData() {
- let cloneQuery = JSON.parse(JSON.stringify(this.query))
- cloneQuery.dimension = 'day'
- let query = stringifyQuery(cloneQuery, null, ['uni_platform'])
- const db = uniCloud.database()
- const subTable = db.collection('uni-stat-result')
- .where(query)
- .field(`${stringifyField(fieldsMap)},stat_date`)
- .groupBy('appid')
- .groupField(stringifyGroupField(fieldsMap))
- .orderBy('stat_date', 'desc')
- .get()
- .then(res => {
- const item = res.result.data[0]
- item && (item.total_users = 0)
- this.panelData = []
- this.panelData = mapfields(fieldsMap, item)
- getFieldTotal.call(this, query, 'total_users')
- })
- },
- navTo(id) {
- const url = `/pages/uni-stat/overview/overview?id=${id}`
- uni.navigateTo({
- url
- })
- },
- //获取渠道信息
- getChannelData(appid, platform_id) {
- this.query.channel_id = ''
- const db = uniCloud.database()
- const condition = {}
- //对应应用
- appid = appid ? appid : this.query.appid
- if (appid) {
- condition.appid = appid
- }
- //对应平台
- platform_id = platform_id ? platform_id : this.query.platform_id
- if (platform_id) {
- condition.platform_id = platform_id
- }
- let platformTemp = db.collection('uni-stat-app-platforms')
- .field('_id, name')
- .getTemp()
- let channelTemp = db.collection('uni-stat-app-channels')
- .where(condition)
- .field('_id, channel_name, create_time, platform_id')
- .getTemp()
- db.collection(channelTemp, platformTemp)
- .orderBy('platform_id', 'asc')
- .get()
- .then(res => {
- let data = res.result.data
- let channels = []
- if (data.length > 0) {
- let channelName
- for (let i in data) {
- channelName = data[i].channel_name ? data[i].channel_name : '默认'
- if (data[i].platform_id.length > 0) {
- channelName = data[i].platform_id[0].name + '-' + channelName
- }
- channels.push({
- value: data[i]._id,
- text: channelName
- })
- }
- }
- this.channelData = channels
- })
- .catch((err) => {
- console.error(err)
- // err.message 错误信息
- // err.code 错误码
- }).finally(() => {})
- }
- }
- }
- </script>
- <style>
- </style>
|