|
@@ -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({
|