瀏覽代碼

feat(system): 新增官方直播配置管理功能

- 创建官方直播配置API接口文件,包含查询、新增、修改、删除等方法
- 添加官方直播配置类型定义文件,定义VO、Form、Query等数据结构
- 实现官方直播配置页面组件,支持直播名称、排序值、开始时间、回放设置等字段管理
- 集成权限控制,支持新增、修改、删除等操作的权限验证
- 实现分页查询、搜索、批量操作等功能
- 修复homeTabConfig页面状态选项值类型问题,从字符串改为数字类型
fugui001 5 天之前
父節點
當前提交
e5e1f0b87e

+ 63 - 0
src/api/system/physical/officialLiveConfig/index.ts

@@ -0,0 +1,63 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { OfficialLiveConfigVO, OfficialLiveConfigForm, OfficialLiveConfigQuery } from '@/api/system/physical/officialLiveConfig/types';
+
+/**
+ * 查询官方直播配置列表
+ * @param query
+ * @returns {*}
+ */
+
+export const listOfficialLiveConfig = (query?: OfficialLiveConfigQuery): AxiosPromise<OfficialLiveConfigVO[]> => {
+  return request({
+    url: '/physical/officialLiveConfig/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 查询官方直播配置详细
+ * @param id
+ */
+export const getOfficialLiveConfig = (id: string | number): AxiosPromise<OfficialLiveConfigVO> => {
+  return request({
+    url: '/physical/officialLiveConfig/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 新增官方直播配置
+ * @param data
+ */
+export const addOfficialLiveConfig = (data: OfficialLiveConfigForm) => {
+  return request({
+    url: '/physical/officialLiveConfig',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 修改官方直播配置
+ * @param data
+ */
+export const updateOfficialLiveConfig = (data: OfficialLiveConfigForm) => {
+  return request({
+    url: '/physical/officialLiveConfig',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 删除官方直播配置
+ * @param id
+ */
+export const delOfficialLiveConfig = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/physical/officialLiveConfig/' + id,
+    method: 'delete'
+  });
+};

+ 140 - 0
src/api/system/physical/officialLiveConfig/types.ts

@@ -0,0 +1,140 @@
+export interface OfficialLiveConfigVO {
+  /**
+   *
+   */
+  id: string | number;
+
+  /**
+   * 直播名称,如:长沙巡游赛
+   */
+  liveName: string;
+
+  /**
+   * 排序值,越小越靠前
+   */
+  sortOrder: number;
+
+  /**
+   * 直播开始时间,格式:YYYY-MM-DD HH:MM:SS
+   */
+  startTime: string;
+
+  /**
+   * 直播状态:OPENED, CLOSED
+   */
+  status: string;
+
+  /**
+   * 是否开启回放:YES, NO
+   */
+  enableReplay: string;
+
+  /**
+   * 直播流地址,如 rtmp://...
+   */
+  liveSource: string;
+
+  /**
+   *
+   */
+  createdAt: string;
+
+  /**
+   *
+   */
+  updatedAt: string;
+}
+
+export interface OfficialLiveConfigForm extends BaseEntity {
+  /**
+   *
+   */
+  id?: string | number;
+
+  /**
+   * 直播名称,如:长沙巡游赛
+   */
+  liveName?: string;
+
+  /**
+   * 排序值,越小越靠前
+   */
+  sortOrder?: number;
+
+  /**
+   * 直播开始时间,格式:YYYY-MM-DD HH:MM:SS
+   */
+  startTime?: string;
+
+  /**
+   * 直播状态:OPENED, CLOSED
+   */
+  status?: string;
+
+  /**
+   * 是否开启回放:YES, NO
+   */
+  enableReplay?: string;
+
+  /**
+   * 直播流地址,如 rtmp://...
+   */
+  liveSource?: string;
+
+  /**
+   *
+   */
+  createdAt?: string;
+
+  /**
+   *
+   */
+  updatedAt?: string;
+}
+
+export interface OfficialLiveConfigQuery extends PageQuery {
+  /**
+   * 直播名称,如:长沙巡游赛
+   */
+  liveName?: string;
+
+  /**
+   * 排序值,越小越靠前
+   */
+  sortOrder?: number;
+
+  /**
+   * 直播开始时间,格式:YYYY-MM-DD HH:MM:SS
+   */
+  startTime?: string;
+
+  /**
+   * 直播状态:OPENED, CLOSED
+   */
+  status?: string;
+
+  /**
+   * 是否开启回放:YES, NO
+   */
+  enableReplay?: string;
+
+  /**
+   * 直播流地址,如 rtmp://...
+   */
+  liveSource?: string;
+
+  /**
+   *
+   */
+  createdAt?: string;
+
+  /**
+   *
+   */
+  updatedAt?: string;
+
+  /**
+   * 日期范围参数
+   */
+  params?: any;
+}

+ 2 - 2
src/views/system/physical/homeTabConfig/index.vue

@@ -86,8 +86,8 @@
         </el-form-item>
         <el-form-item label="状态" prop="status">
           <el-select v-model="form.isEnabled" placeholder="请选择状态">
-            <el-option label="开启" value="1" />
-            <el-option label="关闭" value="0" />
+            <el-option label="开启" :value="1" />
+            <el-option label="关闭" :value="0" />
           </el-select>
         </el-form-item>
       </el-form>

+ 301 - 0
src/views/system/physical/officialLiveConfig/index.vue

@@ -0,0 +1,301 @@
+<template>
+  <div class="p-2">
+    <transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
+      <div v-show="showSearch" class="mb-[10px]">
+        <el-card shadow="hover">
+          <el-form ref="queryFormRef" :model="queryParams" :inline="true">
+            <el-form-item label="直播名称" prop="liveName">
+              <el-input v-model="queryParams.liveName" placeholder="请输入直播名称" clearable @keyup.enter="handleQuery" />
+            </el-form-item>
+            <el-form-item>
+              <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
+              <el-button icon="Refresh" @click="resetQuery">重置</el-button>
+            </el-form-item>
+          </el-form>
+        </el-card>
+      </div>
+    </transition>
+
+    <el-card shadow="never">
+      <template #header>
+        <el-row :gutter="10" class="mb8">
+          <el-col :span="1.5">
+            <el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['physical:officialLiveConfig:add']">新增</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['physical:officialLiveConfig:edit']"
+              >修改</el-button
+            >
+          </el-col>
+          <el-col :span="1.5">
+            <el-button
+              type="danger"
+              plain
+              icon="Delete"
+              :disabled="multiple"
+              @click="handleDelete()"
+              v-hasPermi="['physical:officialLiveConfig:remove']"
+              >删除</el-button
+            >
+          </el-col>
+          <!--          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:officialLiveConfig:export']">导出</el-button>
+          </el-col>-->
+          <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
+        </el-row>
+      </template>
+
+      <el-table v-loading="loading" border :data="officialLiveConfigList" @selection-change="handleSelectionChange">
+        <el-table-column type="selection" width="55" align="center" />
+        <el-table-column label="编号" align="center" prop="id" v-if="true" />
+        <el-table-column label="直播名称" align="center" prop="liveName" />
+        <el-table-column label="排序值" align="center" prop="sortOrder" />
+        <el-table-column label="直播开始时间" align="center" prop="startTime" width="180">
+          <template #default="scope">
+            <span>{{ parseTime(scope.row.startTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+          </template>
+        </el-table-column>
+        <!--        <el-table-column label="直播状态:OPENED, CLOSED" align="center" prop="status" />-->
+        <el-table-column label="是否开启回放" align="center">
+          <template #default="{ row }">
+            <el-tag v-if="row.enableReplay === 'YES'" type="success">开启</el-tag>
+            <el-tag v-else-if="row.enableReplay === 'NO'" type="info">关闭</el-tag>
+          </template>
+        </el-table-column>
+        <el-table-column label="直播流地址" align="center" prop="liveSource" />
+        <el-table-column label="创建时间" align="center" prop="createdAt" width="180">
+          <template #default="scope">
+            <span>{{ parseTime(scope.row.createdAt, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+          <template #default="scope">
+            <el-tooltip content="修改" placement="top">
+              <el-button
+                link
+                type="primary"
+                icon="Edit"
+                @click="handleUpdate(scope.row)"
+                v-hasPermi="['physical:officialLiveConfig:edit']"
+              ></el-button>
+            </el-tooltip>
+            <el-tooltip content="删除" placement="top">
+              <el-button
+                link
+                type="primary"
+                icon="Delete"
+                @click="handleDelete(scope.row)"
+                v-hasPermi="['physical:officialLiveConfig:remove']"
+              ></el-button>
+            </el-tooltip>
+          </template>
+        </el-table-column>
+      </el-table>
+
+      <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
+    </el-card>
+    <!-- 添加或修改官方直播配置对话框 -->
+    <el-dialog :title="dialog.title" v-model="dialog.visible" width="560px" append-to-body>
+      <el-form ref="officialLiveConfigFormRef" :model="form" :rules="rules" label-width="120px">
+        <el-form-item label="直播名称" prop="liveName">
+          <el-input v-model="form.liveName" placeholder="请输入直播名称" />
+        </el-form-item>
+        <el-form-item label="排序值" prop="sortOrder">
+          <el-input v-model="form.sortOrder" placeholder="请输入排序值,越小越靠前" />
+        </el-form-item>
+        <el-form-item label="直播开始时间" prop="startTime">
+          <el-date-picker
+            clearable
+            v-model="form.startTime"
+            type="datetime"
+            value-format="YYYY-MM-DD HH:mm:ss"
+            placeholder="请选择直播开始时间,格式:YYYY-MM-DD HH:MM:SS"
+          >
+          </el-date-picker>
+        </el-form-item>
+        <el-form-item label="是否开启回放" prop="enableReplay">
+          <el-select v-model="form.enableReplay" placeholder="请选择是否开启回放">
+            <el-option label="开启" value="YES" />
+            <el-option label="关闭" value="NO" />
+          </el-select>
+        </el-form-item>
+        <el-form-item label="直播流地址" prop="liveSource">
+          <el-input v-model="form.liveSource" type="textarea" placeholder="请输入内容" />
+        </el-form-item>
+      </el-form>
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
+          <el-button @click="cancel">取 消</el-button>
+        </div>
+      </template>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup name="OfficialLiveConfig" lang="ts">
+import {
+  listOfficialLiveConfig,
+  getOfficialLiveConfig,
+  delOfficialLiveConfig,
+  addOfficialLiveConfig,
+  updateOfficialLiveConfig
+} from '@/api/system/physical/officialLiveConfig';
+import { OfficialLiveConfigVO, OfficialLiveConfigQuery, OfficialLiveConfigForm } from '@/api/system/physical/officialLiveConfig/types';
+
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+const officialLiveConfigList = ref<OfficialLiveConfigVO[]>([]);
+const buttonLoading = ref(false);
+const loading = ref(true);
+const showSearch = ref(true);
+const ids = ref<Array<string | number>>([]);
+const single = ref(true);
+const multiple = ref(true);
+const total = ref(0);
+
+const queryFormRef = ref<ElFormInstance>();
+const officialLiveConfigFormRef = ref<ElFormInstance>();
+
+const dialog = reactive<DialogOption>({
+  visible: false,
+  title: ''
+});
+
+const initFormData: OfficialLiveConfigForm = {
+  id: undefined,
+  liveName: undefined,
+  sortOrder: undefined,
+  startTime: undefined,
+  status: undefined,
+  enableReplay: undefined,
+  liveSource: undefined,
+  createdAt: undefined,
+  updatedAt: undefined
+};
+const data = reactive<PageData<OfficialLiveConfigForm, OfficialLiveConfigQuery>>({
+  form: { ...initFormData },
+  queryParams: {
+    pageNum: 1,
+    pageSize: 10,
+    liveName: undefined,
+    sortOrder: undefined,
+    startTime: undefined,
+    status: undefined,
+    enableReplay: undefined,
+    liveSource: undefined,
+    createdAt: undefined,
+    updatedAt: undefined,
+    params: {}
+  },
+  rules: {
+    id: [{ required: true, message: '不能为空', trigger: 'blur' }],
+    liveName: [{ required: true, message: '直播名称不能为空', trigger: 'blur' }],
+    sortOrder: [{ required: true, message: '排序值,越小越靠前不能为空', trigger: 'blur' }],
+    startTime: [{ required: true, message: '直播开始时间不能为空', trigger: 'blur' }],
+    status: [{ required: true, message: '直播状态不能为空', trigger: 'change' }],
+    enableReplay: [{ required: true, message: '是否开启回放不能为空', trigger: 'blur' }],
+    liveSource: [{ required: true, message: '直播流地址不能为空', trigger: 'blur' }]
+  }
+});
+
+const { queryParams, form, rules } = toRefs(data);
+
+/** 查询官方直播配置列表 */
+const getList = async () => {
+  loading.value = true;
+  const res = await listOfficialLiveConfig(queryParams.value);
+  officialLiveConfigList.value = res.rows;
+  total.value = res.total;
+  loading.value = false;
+};
+
+/** 取消按钮 */
+const cancel = () => {
+  reset();
+  dialog.visible = false;
+};
+
+/** 表单重置 */
+const reset = () => {
+  form.value = { ...initFormData };
+  officialLiveConfigFormRef.value?.resetFields();
+};
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  queryParams.value.pageNum = 1;
+  getList();
+};
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryFormRef.value?.resetFields();
+  handleQuery();
+};
+
+/** 多选框选中数据 */
+const handleSelectionChange = (selection: OfficialLiveConfigVO[]) => {
+  ids.value = selection.map((item) => item.id);
+  single.value = selection.length != 1;
+  multiple.value = !selection.length;
+};
+
+/** 新增按钮操作 */
+const handleAdd = () => {
+  reset();
+  dialog.visible = true;
+  dialog.title = '添加官方直播配置';
+};
+
+/** 修改按钮操作 */
+const handleUpdate = async (row?: OfficialLiveConfigVO) => {
+  reset();
+  const _id = row?.id || ids.value[0];
+  const res = await getOfficialLiveConfig(_id);
+  Object.assign(form.value, res.data);
+  dialog.visible = true;
+  dialog.title = '修改官方直播配置';
+};
+
+/** 提交按钮 */
+const submitForm = () => {
+  officialLiveConfigFormRef.value?.validate(async (valid: boolean) => {
+    if (valid) {
+      buttonLoading.value = true;
+      if (form.value.id) {
+        await updateOfficialLiveConfig(form.value).finally(() => (buttonLoading.value = false));
+      } else {
+        await addOfficialLiveConfig(form.value).finally(() => (buttonLoading.value = false));
+      }
+      proxy?.$modal.msgSuccess('操作成功');
+      dialog.visible = false;
+      await getList();
+    }
+  });
+};
+
+/** 删除按钮操作 */
+const handleDelete = async (row?: OfficialLiveConfigVO) => {
+  const _ids = row?.id || ids.value;
+  await proxy?.$modal.confirm('是否确认删除官方直播配置编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
+  await delOfficialLiveConfig(_ids);
+  proxy?.$modal.msgSuccess('删除成功');
+  await getList();
+};
+
+/** 导出按钮操作 */
+const handleExport = () => {
+  proxy?.download(
+    'system/officialLiveConfig/export',
+    {
+      ...queryParams.value
+    },
+    `officialLiveConfig_${new Date().getTime()}.xlsx`
+  );
+};
+
+onMounted(() => {
+  getList();
+});
+</script>