liujq 3 년 전
부모
커밋
4acb6b1552
4개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 0
      dist/index.html
  2. 0 0
      dist/static/js/chunk-2d4a64ed.45e4bc86.js
  3. 0 0
      dist/static/js/chunk-2d4a64ed.c627a821.js
  4. 5 1
      src/views/user/appClickLog.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/index.html


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/chunk-2d4a64ed.45e4bc86.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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({

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.