liujq 3 years ago
parent
commit
4acb6b1552

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-2d4a64ed.45e4bc86.js


File diff suppressed because it is too large
+ 0 - 0
dist/static/js/chunk-2d4a64ed.c627a821.js


+ 5 - 1
src/views/user/appClickLog.vue

@@ -50,6 +50,7 @@ export default {
         } else {
           item.phones = item.phone.substring(0, 7) + '****'
         }
+        item.params = this.decodeUnicode(item.params)
       })
       return arr
     }
@@ -59,7 +60,7 @@ export default {
     this.listConfig = {
       rows: [
         { label: '小程序菜单路径', prop: 'path' },
-        { label: '参数', prop: 'params' },
+        { label: '参数', prop: 'params', fullShow: true },
         { label: '点击时间', prop: 'c_time' },
         { label: '统计时间', prop: 'create_at' },
         { label: 'ip地址', prop: 'remote_ip' },
@@ -75,6 +76,9 @@ export default {
     }
   },
   methods: {
+    decodeUnicode (str) { 
+      return unescape(str.replace(/\\/g, "%"))
+    },
     delHandle (row) {
       this.$msg(`您确定要删除该用户吗?`, 'confirm', () => {
         this.$api.user.admwechatuserpurge({

Some files were not shown because too many files changed in this diff