|
|
|
@ -702,6 +702,15 @@ export default {
|
|
|
|
|
this.queryParams.current = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 详情按钮操作 */
|
|
|
|
|
getInfo(row, type) {
|
|
|
|
|
this.$store.commit("SET_CRUMBS", "项目详情");
|
|
|
|
|
const id = row.id || this.ids[0];
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: `/manage-info/${id}`,
|
|
|
|
|
query: { action: type },
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|