diff --git a/ruoyi-ui/src/api/benyi_train/feedback.js b/ruoyi-ui/src/api/benyi_train/feedback.js
new file mode 100644
index 000000000..520b9102b
--- /dev/null
+++ b/ruoyi-ui/src/api/benyi_train/feedback.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询培训视频评价反馈列表
+export function listFeedback(query) {
+  return request({
+    url: '/benyi/feedback/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询培训视频评价反馈详细
+export function getFeedback(id) {
+  return request({
+    url: '/benyi/feedback/' + id,
+    method: 'get'
+  })
+}
+
+// 新增培训视频评价反馈
+export function addFeedback(data) {
+  return request({
+    url: '/benyi/feedback',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改培训视频评价反馈
+export function updateFeedback(data) {
+  return request({
+    url: '/benyi/feedback',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除培训视频评价反馈
+export function delFeedback(id) {
+  return request({
+    url: '/benyi/feedback/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出培训视频评价反馈
+export function exportFeedback(query) {
+  return request({
+    url: '/benyi/feedback/export',
+    method: 'get',
+    params: query
+  })
+}
\ No newline at end of file
diff --git a/ruoyi-ui/src/api/benyi_train/score.js b/ruoyi-ui/src/api/benyi_train/score.js
new file mode 100644
index 000000000..8d17c561a
--- /dev/null
+++ b/ruoyi-ui/src/api/benyi_train/score.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询培训视频评分列表
+export function listScore(query) {
+  return request({
+    url: '/benyi/score/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询培训视频评分详细
+export function getScore(id) {
+  return request({
+    url: '/benyi/score/' + id,
+    method: 'get'
+  })
+}
+
+// 新增培训视频评分
+export function addScore(data) {
+  return request({
+    url: '/benyi/score',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改培训视频评分
+export function updateScore(data) {
+  return request({
+    url: '/benyi/score',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除培训视频评分
+export function delScore(id) {
+  return request({
+    url: '/benyi/score/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出培训视频评分
+export function exportScore(query) {
+  return request({
+    url: '/benyi/score/export',
+    method: 'get',
+    params: query
+  })
+}
\ No newline at end of file
diff --git a/ruoyi-ui/src/views/benyi_train/video_study/detail.vue b/ruoyi-ui/src/views/benyi_train/video_study/detail.vue
new file mode 100644
index 000000000..bfca0e221
--- /dev/null
+++ b/ruoyi-ui/src/views/benyi_train/video_study/detail.vue
@@ -0,0 +1,83 @@
+<template>
+  <div class="app-container">
+    <el-row>
+      <el-col :xs="24" :sm="12" style="padding: 10px;">
+        <el-card>
+          <video-player
+            class="vjs-custom-skin"
+            :playsinline="true"
+            :options="playerOptions"
+            ref="videoPlayer"
+          ></video-player>
+        </el-card>
+      </el-col>
+      <el-col :xs="24" :sm="12" style="padding: 10px;">
+        <el-card>
+          内容介绍
+          <br />标题:{{title}}
+          <br />讲师:{{lecturername}}
+          <br />简介:{{information}}
+          <br />评分:
+          <el-rate v-model="value"></el-rate>留言:
+          <el-input type="textarea" placeholder="请输入内容" />
+        </el-card>
+      </el-col>
+    </el-row>
+  </div>
+</template>
+
+<script>
+import { getVideo } from "@/api/benyi_train/video";
+
+export default {
+  name: "detail",
+  data() {
+    return {
+      title: "",
+      lecturername: "",
+      information: "",
+      //视频播放参数
+      playerOptions: {},
+      value: null
+    };
+  },
+  created() {
+    const id = this.$route.params && this.$route.params.id;
+    //console.log(id);
+    this.getVideoById(id);
+  },
+  methods: {
+    /** 查询培训列表 */
+    getVideoById(id) {
+      getVideo(id).then(response => {
+          this.title=response.data.title;
+          this.lecturername=response.data.lecturername;
+          this.information=response.data.information;
+        //console.log(response.data);
+        this.playerOptions = {
+          autoplay: true,
+          muted: true,
+          language: "zh-CN",
+          playbackRates: [0.7, 1.0, 1.5, 2.0],
+          fluid: true,
+          sources: [
+            {
+              type: response.data.filetype,
+              // mp4
+              src: "https://files.benyiedu.com/" + response.data.videourl
+            }
+          ],
+          notSupportedMessage: "此视频暂无法播放,请稍后再试",
+          poster: "",
+          controlBar: {
+            timeDivider: true,
+            durationDisplay: false,
+            remainingTimeDisplay: false,
+            fullscreenToggle: true //全屏按钮
+          }
+        };
+      });
+    }
+  }
+};
+</script>
\ No newline at end of file