From 97ff7191a75edbbf660f1e0acf8e585b225afa2f Mon Sep 17 00:00:00 2001
From: paidaxing444 <12qwaszx>
Date: Tue, 8 Sep 2020 10:43:04 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E9=A2=84=E8=A7=88=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../views/benyi/thememonthplanapproval/index.vue | 14 ++++++++++++++
.../views/benyi/themetermplanapproval/index.vue | 14 ++++++++++++++
.../views/benyi/themeweekplanapproval/index.vue | 16 +++++++++++++++-
3 files changed, 43 insertions(+), 1 deletion(-)
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