|
@@ -38,13 +38,19 @@ export default {
|
|
|
{ num: '4', icon: 'el-icon-video-camera', title: '展会管理' },
|
|
|
{ num: '5', icon: 'el-icon-notebook-1', title: '事项管理' },
|
|
|
{ num: '6', icon: 'el-icon-edit', title: '修改密码' },
|
|
|
+ { num: '7', icon: 'el-icon-view', title: '成果评价系统' },
|
|
|
],
|
|
|
};
|
|
|
},
|
|
|
created() {},
|
|
|
methods: {
|
|
|
selectMenu(key) {
|
|
|
- this.$router.push({ path: '/userCenter', query: { num: key } });
|
|
|
+ if (key == '7') {
|
|
|
+ let token = localStorage.getItem('token');
|
|
|
+ window.location.href = `${process.env.VUE_APP_HOST}/liveAchieve`;
|
|
|
+ } else {
|
|
|
+ this.$router.push({ path: '/userCenter', query: { num: key } });
|
|
|
+ }
|
|
|
},
|
|
|
},
|
|
|
computed: {
|