MrShi
昨天 eb7a808aaf7dd0a6dd2ff70f9ef3f8ce0b1e31d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<template>
    <view>
        <view class="uni-header">
            <view class="uni-group">
                <view class="uni-title"></view>
                <view class="uni-sub-title"></view>
            </view>
            <view class="uni-group">
                <input class="uni-search" type="text" v-model="query" @confirm="search" placeholder="请输入搜索内容" />
                <button class="uni-button" type="default" size="mini" @click="search">搜索</button>
                <button class="uni-button" type="default" size="mini" :disabled="!selectedIndexs.length"
                    @click="delTable">批量删除</button>
                <download-excel class="hide-on-phone" :fields="exportExcel.fields" :data="exportExcelData"
                    :type="exportExcel.type" :name="exportExcel.filename">
                    <button class="uni-button" type="primary" size="mini">导出 Excel</button>
                </download-excel>
            </view>
        </view>
        <view class="uni-container">
            <unicloud-db ref="udb" :collection="collectionList"
                field="report,title,creat_time,audience_type,audience_value,platform,state,payload,appId,taskid,msg_num,target_num,receive_num,display_num,click_num,operator_id{username}"
                :where="where" page-data="replace" :orderby="orderby" :getcount="true" :page-size="options.pageSize"
                :page-current="options.pageCurrent" v-slot:default="{data,pagination,loading,error,options}"
                :options="options" loadtime="manual" @load="onqueryload">
                <uni-table ref="table" :loading="loading" :emptyText="error.message || '没有更多数据'" border stripe
                    type="selection" @selection-change="selectionChange">
                    <uni-tr>
                        <uni-th align="center" >操作员</uni-th>
                        <uni-th align="center" sortable @sort-change="sortChange($event, 'title')">通知栏标题</uni-th>
                        <uni-th align="center" filter-type="timestamp"
                            @filter-change="filterChange($event, 'creat_time')" sortable
                            @sort-change="sortChange($event, 'creat_time')">推送时间</uni-th>
                        <uni-th align="center" filter-type="select"
                            :filter-data="options.filterData.audience_type_localdata"
                            @filter-change="filterChange($event, 'audience_type')">发送目标</uni-th>
                        <!-- <uni-th align="center" sortable @sort-change="sortChange($event, 'audience_value')">目标用户标识</uni-th> -->
                        <uni-th align="center" filter-type="select" :filter-data="options.filterData.platform_localdata"
                            @filter-change="filterChange($event, 'platform')">目标平台</uni-th>
                        <!-- <uni-th align="center" sortable @sort-change="sortChange($event, 'state')">推送状态</uni-th> -->
                        <!-- <uni-th align="center" sortable @sort-change="sortChange($event, 'payload')">消息内容</uni-th> -->
                        <uni-th align="center" filter-type="search" @filter-change="filterChange($event, 'appId')"
                            @sort-change="sortChange($event, 'appId')">应用的id</uni-th>
                        <uni-th align="center">目标设备数</uni-th>
                        <uni-th align="center">成功下发数</uni-th>
                        <uni-th align="center">成功接收数(比例)</uni-th>
                        <uni-th align="center">消息展示数(比例)</uni-th>
                        <uni-th align="center">消息点击数(比例)</uni-th>
                        <uni-th align="center">操作</uni-th>
                    </uni-tr>
                    <uni-tr v-for="(item,index) in data" :key="index">
                        <uni-td align="center">{{item.operator_id[0]?item.operator_id[0].username:'-'}}</uni-td>
                        <uni-td align="center">{{item.title}}</uni-td>
                        <uni-td align="center">
                            <uni-dateformat :threshold="[0, 0]" :date="item.creat_time"></uni-dateformat>
                        </uni-td>
                        <uni-td align="center">根据{{options.audience_type_valuetotext[item.audience_type]}}</uni-td>
                        <uni-td align="center">
                            <text v-if="item.platform=='ALL'">所有平台</text>
                            <uni-data-picker v-else :localdata="options.platform_valuetotext" :value="item.platform"
                                :border="false" :readonly="true" split=","></uni-data-picker>
                        </uni-td>
                        <!-- <uni-td align="center">{{item.state}}</uni-td> -->
                        <!-- <uni-td align="center">{{item.payload}}</uni-td> -->
                        <uni-td align="center">{{item.appId}}</uni-td>
                        <uni-td align="center">{{item.report?item.report.total.msg_num:'-'}}</uni-td>
                        <uni-td align="center">{{item.report?item.report.total.target_num+',('+parseInt(item.report.total.target_num/item.report.total.msg_num*100)+'%)':'-'}}</uni-td>
                        <uni-td align="center">{{item.report?item.report.total.receive_num+',('+parseInt(item.report.total.receive_num/item.report.total.msg_num*100)+'%)':'-'}}</uni-td>
                        <uni-td align="center">{{item.report?item.report.total.display_num+',('+parseInt(item.report.total.display_num/item.report.total.msg_num*100)+'%)':'-'}}</uni-td>
                        <uni-td align="center">{{item.report?item.report.total.click_num+',('+parseInt(item.report.total.click_num/item.report.total.msg_num*100)+'%)':'-'}}</uni-td>
                        <uni-td align="center">
                            <view class="uni-group">
                                <button @click="navigateTo('./detail?data='+encodeURIComponent(JSON.stringify(item)),false)" class="uni-button" size="mini" type="primary">详情</button>
                                <button @click="confirmDelete(item._id)" class="uni-button" size="mini"
                                    type="warn">删除</button>
                            </view>
                        </uni-td>
                    </uni-tr>
                </uni-table>
                <view class="uni-pagination-box">
                    <uni-pagination show-icon :page-size="pagination.size" v-model="pagination.current"
                        :total="pagination.count" @change="onPageChanged" />
                </view>
            </unicloud-db>
        </view>
    </view>
</template>
 
<script>
    import {
        enumConverter,
        filterToWhere
    } from '../../js_sdk/validator/uni-push-log.js';
 
    const db = uniCloud.database()
    // 表查询配置
    const dbOrderBy = 'creat_time desc' // 排序字段
    const dbSearchFields = [] // 模糊搜索字段,支持模糊搜索的字段列表。联表查询格式: 主表字段名.副表字段名,例如用户表关联角色表 role.role_name
    // 分页配置
    const pageSize = 20
    const pageCurrent = 1
 
    const orderByMapping = {
        "ascending": "asc",
        "descending": "desc"
    }
 
    export default {
        data() {
            return {
                collectionList: "uni-push-log,uni-id-users",
                query: '',
                where: '',
                orderby: dbOrderBy,
                orderByFieldName: "",
                selectedIndexs: [],
                options: {
                    pageSize,
                    pageCurrent,
                    filterData: {
                        "audience_type_localdata": [
                            {
                                "text": "所有用户",
                                "value": "ALL"
                            },
                            {
                                "text":"用户id",
                                "value":"user_id"
                            },{
                                "text":"用户标签",
                                "value":"user_tag"
                            },{
                                "text":"设备id",
                                "value":"device_id"
                            },{
                                "text":"个推客户端id",
                                "value":"push_clientid"
                            },{
                                "text":"个推自定义客户端标签",
                                "value":"getui_custom_tag"
                            }
                        ],
                        "platform_localdata": [{
                                "text": "全部",
                                "value": "ALL"
                            },
                            {
                                    "text": "网页端",
                                    "value": "web"
                                },
                            {
                                "text": "App-iOS",
                                "value": "app-ios"
                            },
                            {
                                "text": "App-Android",
                                "value": "app-android"
                            },
                            {
                                "text": "微信小程序",
                                "value": "mp-weixin"
                            },
                            {
                                "text": "360小程序",
                                "value": "mp-360"
                            }, {
                                "text": "百度小程序",
                                "value": "mp-baidu"
                            },
                            {
                                "text": "支付宝小程序",
                                "value": "mp-alipay"
                            },
                            {
                                "text": "字节跳动小程序",
                                "value": "mp-toutiao"
                            },
                            {
                                "text": "QQ小程序",
                                "value": "mp-qq"
                            },
                            {
                                "text": "快应用联盟",
                                "value": "quickapp-webview-union"
                            },
                            {
                                "text": "快应用华为",
                                "value": "quickapp-webview-huawei"
                            },
                            {
                                "text": "快手小程序",
                                "value": "mp-kuaishou"
                            },
                            {
                                "text": "飞书小程序",
                                "value": "mp-lark"
                            },
                            {
                                "text": "京东小程序",
                                "value": "mp-jd"
                            }
                        ]
                    },
                    ...enumConverter
                },
                imageStyles: {
                    width: 64,
                    height: 64
                },
                exportExcel: {
                    "filename": "uni-push-log.xls",
                    "type": "xls",
                    "fields": {
                        "通知标题": "title",
                        "推送时间": "creat_time",
                        "目标用户": "audience_type",
                        "目标用户标识": "audience_value",
                        "目标平台": "platform",
                        "推送状态": "state",
                        "消息内容": "payload",
                        "应用的id": "appId",
                        "任务id": "taskid",
                        "消息可下发数": "msg_num",
                        "消息下发数": "target_num",
                        "消息接收数": "receive_num",
                        "消息展示数": "display_num",
                        "消息点击数": "click_num"
                    }
                },
                exportExcelData: []
            }
        },
        onLoad() {
            this._filter = {}
        },
        onReady() {
            this.$refs.udb.loadData()
        },
        methods: {
            async onqueryload(data) {
                const UniPush = uniCloud.importObject("uni-push-co")
                let obj = {}
                data.forEach(item => {
                    obj[item.appId] ? obj[item.appId].push(item) : obj[item.appId] = [item]
                })
                // console.log({
                //     obj
                // });
                for (let appId in obj) {
                    // console.log({
                    //     appId
                    // });
                    let taskids = obj[appId].map(e => e.taskid)
                    let reports = await UniPush.getReport({
                        appId,
                        taskid: taskids
                    })
                    // console.log({
                    //     reports
                    // });
                    if (!reports.data) {
                        console.log('查不到相关记录');
                        continue;
                    }
                    data.forEach(item => {
                        if (reports.data[item.taskid]) {
                            if (!item.report || !isObjEqual(item.report, reports.data[item.taskid])) {
                                // console.log('与数据库中不等,执行更新', item.report, reports.data[item.taskid]);
                                item.report = reports.data[item.taskid]
                                db.collection('uni-push-log').doc(item._id).update({
                                    "report": item.report
                                }).then(e => {
                                    // console.log(e);
                                })
                            } else {
                                // console.log('与数据库中内容相等,不做任何操作');
                            }
                        }
                    })
                    // console.log({
                    //     data
                    // });
                }
                this.$set(data, data)
                this.exportExcelData = data
            },
            getWhere() {
                const query = this.query.trim()
                if (!query) {
                    return ''
                }
                const queryRe = new RegExp(query, 'i')
                return dbSearchFields.map(name => queryRe + '.test(' + name + ')').join(' || ')
            },
            search() {
                const newWhere = this.getWhere()
                this.where = newWhere
                this.$nextTick(() => {
                    this.loadData()
                })
            },
            loadData(clear = true) {
                this.$refs.udb.loadData({
                    clear
                })
            },
            onPageChanged(e) {
                this.selectedIndexs.length = 0
                this.$refs.table.clearSelection()
                this.$refs.udb.loadData({
                    current: e.current
                })
            },
            navigateTo(url, clear) {
                // clear 表示刷新列表时是否清除页码,true 表示刷新并回到列表第 1 页,默认为 true
                uni.navigateTo({
                    url,
                    events: {
                        refreshData: () => {
                            this.loadData(clear)
                        }
                    }
                })
            },
            // 多选处理
            selectedItems() {
                var dataList = this.$refs.udb.dataList
                return this.selectedIndexs.map(i => dataList[i]._id)
            },
            // 批量删除
            delTable() {
                this.$refs.udb.remove(this.selectedItems(), {
                    success: (res) => {
                        this.$refs.table.clearSelection()
                    }
                })
            },
            // 多选
            selectionChange(e) {
                this.selectedIndexs = e.detail.index
            },
            confirmDelete(id) {
                this.$refs.udb.remove(id, {
                    success: (res) => {
                        this.$refs.table.clearSelection()
                    }
                })
            },
            sortChange(e, name) {
                this.orderByFieldName = name;
                if (e.order) {
                    this.orderby = name + ' ' + orderByMapping[e.order]
                } else {
                    this.orderby = ''
                }
                this.$refs.table.clearSelection()
                this.$nextTick(() => {
                    this.$refs.udb.loadData()
                })
            },
            filterChange(e, name) {
                this._filter[name] = {
                    type: e.filterType,
                    value: e.filter
                }
                let newWhere = filterToWhere(this._filter, db.command)
                if (Object.keys(newWhere).length) {
                    this.where = newWhere
                } else {
                    this.where = ''
                }
                this.$nextTick(() => {
                    this.$refs.udb.loadData()
                })
            }
        }
    }
 
    function isObjEqual(obj1, obj2) {
        const keys = Object.keys(obj1)
        //先判断长度
        if (keys.length != Object.keys(obj2).length) {
            return false
        }
        for (let i = 0; i < keys.length; i++) {
            let key = keys[i],
                item = obj1[key]
            if (item != obj2[key]) { //如果不相等先判断是否都是对象
                if (typeof item == 'object' && typeof obj2[key] == 'object') { // 都是对象继续递归比较
                    if (!isObjEqual(item, obj2[key])) {
                        return false
                        break;
                    }
                } else {
                    return false
                    break;
                }
            }
        }
        return true;
    }
</script>
 
<style>
</style>