diff --git a/ruoyi-ui/src/views/benyi/thememonthplanapproval/index.vue b/ruoyi-ui/src/views/benyi/thememonthplanapproval/index.vue
index 50ca88c7a..954a22f7e 100644
--- a/ruoyi-ui/src/views/benyi/thememonthplanapproval/index.vue
+++ b/ruoyi-ui/src/views/benyi/thememonthplanapproval/index.vue
@@ -105,6 +105,13 @@
v-hasPermi="['benyi:thememonthplan:edit']"
v-show="isShow(scope.row)"
>审批
+ 预览
@@ -390,6 +397,13 @@ export default {
}
});
},
+ /** 预览按钮操作 */
+ handleView(row) {
+ const id = row.id;
+ this.$router.push({
+ path: "/benyi_course/thememonthplanprint/table/"+id,
+ });
+ },
},
};
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue b/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue
index b0155446a..2b90343e5 100644
--- a/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue
+++ b/ruoyi-ui/src/views/benyi/themetermplanapproval/index.vue
@@ -83,6 +83,13 @@
v-hasPermi="['benyi:themetermplan:edit']"
v-show="isShow(scope.row)"
>审批
+ 预览
@@ -327,6 +334,13 @@ export default {
}
});
},
+ /** 预览按钮操作 */
+ handleView(row) {
+ const id = row.id;
+ this.$router.push({
+ path: "/benyi_course/themetermplanprint/table/" + id,
+ });
+ },
},
};
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/benyi/themeweekplanapproval/index.vue b/ruoyi-ui/src/views/benyi/themeweekplanapproval/index.vue
index 838344614..a741e78fe 100644
--- a/ruoyi-ui/src/views/benyi/themeweekplanapproval/index.vue
+++ b/ruoyi-ui/src/views/benyi/themeweekplanapproval/index.vue
@@ -99,6 +99,13 @@
v-hasPermi="['benyi:themeweekplan:edit']"
v-show="isShow(scope.row)"
>审批
+ 预览
@@ -142,7 +149,7 @@
-
+
退回
通过
@@ -343,6 +350,13 @@ export default {
}
});
},
+ /** 预览按钮操作 */
+ handleView(row) {
+ const id = row.id;
+ this.$router.push({
+ path: "/benyi_course/themeweekplanprint/table/" + id,
+ });
+ },
},
};
\ No newline at end of file