diff --git a/src/api/bst/help.js b/src/api/bst/help.js
new file mode 100644
index 0000000..cabd4ca
--- /dev/null
+++ b/src/api/bst/help.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询教程列表列表
+export function listHelp(query) {
+ return request({
+ url: '/bst/help/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询教程列表详细
+export function getHelp(id) {
+ return request({
+ url: '/bst/help/' + id,
+ method: 'get'
+ })
+}
+
+// 新增教程列表
+export function addHelp(data) {
+ return request({
+ url: '/bst/help',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改教程列表
+export function updateHelp(data) {
+ return request({
+ url: '/bst/help',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除教程列表
+export function delHelp(id) {
+ return request({
+ url: '/bst/help/' + id,
+ method: 'delete'
+ })
+}
diff --git a/src/utils/constants.js b/src/utils/constants.js
index a1e6d59..22d2c9a 100644
--- a/src/utils/constants.js
+++ b/src/utils/constants.js
@@ -9,6 +9,12 @@ export const UserType = {
APP: "2" // 普通用户
}
+// 教程状态
+export const HelpStatus = {
+ ENABLED: "1", // 启用
+ DISABLED: "2", // 禁用
+}
+
// 日期选择器快捷选项
export const DatePickerOptions = {
// 默认
diff --git a/src/views/bst/help/index.vue b/src/views/bst/help/index.vue
new file mode 100644
index 0000000..4afdcd5
--- /dev/null
+++ b/src/views/bst/help/index.vue
@@ -0,0 +1,385 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+ {{d.row[column.key]}}
+
+
+
+
+
+
+
+
+
+
+
+ {{d.row[column.key]}}
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{dict.label}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+