|
@@ -15,9 +15,10 @@
|
|
|
<el-table-column prop="leader_name_desc" label="项目组长" width="260" header-align="center" />
|
|
|
<el-table-column prop="member_name_desc" label="项目成员" header-align="center" />
|
|
|
|
|
|
- <el-table-column label="操作" fixed="right" width="260" header-align="center">
|
|
|
+ <el-table-column label="操作" fixed="right" width="340" header-align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<span class="link" @click="projectInfoManage(row.id, true)">项目信息管理</span>
|
|
|
+ <span class="link" @click="productionResourceManage(row.id)">项目资源管理</span>
|
|
|
<span class="link" @click="productionEditorialManage(row.id)">制作与审校管理</span>
|
|
|
<span class="link danger">删除</span>
|
|
|
</template>
|
|
@@ -71,6 +72,13 @@ export default {
|
|
|
productionEditorialManage(id) {
|
|
|
this.$router.push({ path: `/personal_workbench/production_editorial/${id}` });
|
|
|
},
|
|
|
+ /**
|
|
|
+ * 项目资源管理
|
|
|
+ * @param {string} id - 项目ID
|
|
|
+ */
|
|
|
+ productionResourceManage(id) {
|
|
|
+ this.$router.push({ path: `/personal_workbench/production_resource/${id}` });
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|