|
@@ -262,6 +262,13 @@ const btnDetail = (res) => {
|
|
|
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 弹出管理
|
|
|
+ */
|
|
|
+const btnManage = (res) => {
|
|
|
+ console.log('弹出管理', res);
|
|
|
+}
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -313,6 +320,7 @@ const btnDetail = (res) => {
|
|
|
<el-table-column prop="name" label="学校" />
|
|
|
<el-table-column label="操作">
|
|
|
<template #default="scope">
|
|
|
+ <el-button link type="success" @click="btnManage(scope.row)">管理学院</el-button>
|
|
|
<el-button link type="primary" @click="btnDetail(scope.row)">详情</el-button>
|
|
|
<el-popconfirm :title="`你确定删除${scope.row.name}吗?`" @confirm="btnDel(scope.row)">
|
|
|
<template #reference>
|