Browse Source

修复点击统计跳转不正确问题

old
Jimi 4 years ago
parent
commit
d971bac820
  1. 2
      src/views/project/my/index.vue

2
src/views/project/my/index.vue

@ -280,7 +280,7 @@ export default {
this.dataShowType = type
},
toProjectHandle(key, type) {
this.$router.push({path: '/project/form', query: {key: key, active: type}})
this.$router.push({path: `/project/form/${type}`, query: {key: key, active: type}})
},
deleteProject(key) {
this.$api.post('/user/project/delete', {'key': key}).then(res => {

Loading…
Cancel
Save