Browse Source

feat(system): 添加运动申明管理功能

- 新增运动申明管理相关的 API 接口和类型定义
- 实现运动申明列表展示、添加、修改、删除等功能
- 添加运动申明预览页面
- 更新路由配置,增加运动申明相关路由
- 优化权限白名单,支持运动申明页面访问
fugui001 3 tháng trước cách đây
mục cha
commit
458e9aae13

+ 74 - 0
src/api/system/business/terms/index.ts

@@ -0,0 +1,74 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { TermsVO, TermsForm, TermsQuery } from '@/api/system/business/terms/types';
+
+/**
+ * 查询运动申明列表
+ * @param query
+ * @returns {*}
+ */
+
+export const listTerms = (query?: TermsQuery): AxiosPromise<TermsVO[]> => {
+  return request({
+    url: '/business/terms/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 查询运动申明详细
+ * @param id
+ */
+export const getTerms = (id: string | number): AxiosPromise<TermsVO> => {
+  return request({
+    url: '/business/terms/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 新增运动申明
+ * @param data
+ */
+export const addTerms = (data: TermsForm) => {
+  return request({
+    url: '/business/terms',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 修改运动申明
+ * @param data
+ */
+export const updateTerms = (data: TermsForm) => {
+  return request({
+    url: '/business/terms',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 删除运动申明
+ * @param id
+ */
+export const delTerms = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/business/terms/' + id,
+    method: 'delete'
+  });
+};
+
+/**
+ * 查询默认数据展示H5页面 接口
+ * @param id
+ */
+export const getSportTermsListMax = (): AxiosPromise<TermsVO> => {
+  return request({
+    url: '/business/terms/getSportTermsListMax',
+    method: 'get'
+  });
+};

+ 81 - 0
src/api/system/business/terms/types.ts

@@ -0,0 +1,81 @@
+export interface TermsVO {
+  /**
+   * 主键
+   */
+  id: string | number;
+
+  /**
+   * 声明标题
+   */
+  title: string;
+
+  /**
+   * 声明内容(HTML格式)
+   */
+  content: string;
+
+  /**
+   * 语言代码(如 zh-CN, en-US)
+   */
+  language: string;
+
+  /**
+   * 是否为默认版本
+   */
+  isDefault: number;
+}
+
+export interface TermsForm extends BaseEntity {
+  /**
+   * 主键
+   */
+  id?: string | number;
+
+  /**
+   * 声明标题
+   */
+  title?: string;
+
+  /**
+   * 声明内容(HTML格式)
+   */
+  content?: string;
+
+  /**
+   * 语言代码(如 zh-CN, en-US)
+   */
+  language?: string;
+
+  /**
+   * 是否为默认版本
+   */
+  isDefault?: number;
+}
+
+export interface TermsQuery extends PageQuery {
+
+  /**
+   * 声明标题
+   */
+  title?: string;
+
+  /**
+   * 声明内容(HTML格式)
+   */
+  content?: string;
+
+  /**
+   * 语言代码(如 zh-CN, en-US)
+   */
+  language?: string;
+
+  /**
+   * 是否为默认版本
+   */
+  isDefault?: number;
+
+  /**
+   * 日期范围参数
+   */
+  params?: any;
+}

+ 12 - 1
src/permission.ts

@@ -11,7 +11,18 @@ import { usePermissionStore } from '@/store/modules/permission';
 import { ElMessage } from 'element-plus/es';
 
 NProgress.configure({ showSpinner: false });
-const whiteList = ['/login', '/register', '/social-callback', '/register*', '/register/*', '/ofService/*', '/ofService', '/policy/*', '/policy'];
+const whiteList = [
+  '/login',
+  '/register',
+  '/social-callback',
+  '/register*',
+  '/register/*',
+  '/ofService/*',
+  '/ofService',
+  '/policy/*',
+  '/policy',
+  '/terms'
+];
 
 const isWhiteList = (path: string) => {
   return whiteList.some((pattern) => isPathMatch(pattern, path));

+ 5 - 0
src/router/index.ts

@@ -98,6 +98,11 @@ export const constantRoutes: RouteRecordRaw[] = [
     path: '/policy',
     component: () => import('@/views/system/business/policy/indexPolicyPreview.vue'),
     hidden: true
+  },
+  {
+    path: '/terms',
+    component: () => import('@/views/system/business/terms/indexSportPreview.vue'),
+    hidden: true
   }
 ];
 

+ 1 - 1
src/views/system/business/ofService/index.vue

@@ -123,7 +123,7 @@ const initFormData: OfServiceForm = {
   title: undefined,
   content: undefined,
   language: undefined,
-  isDefault: undefined
+  isDefault: 1
 };
 const data = reactive<PageData<OfServiceForm, OfServiceQuery>>({
   form: { ...initFormData },

+ 1 - 1
src/views/system/business/policy/index.vue

@@ -123,7 +123,7 @@ const initFormData: PolicyForm = {
   title: undefined,
   content: undefined,
   language: undefined,
-  isDefault: undefined
+  isDefault: 1
 };
 const data = reactive<PageData<PolicyForm, PolicyQuery>>({
   form: { ...initFormData },

+ 263 - 0
src/views/system/business/terms/index.vue

@@ -0,0 +1,263 @@
+<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="title">
+              <el-input v-model="queryParams.title" 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="['business:terms:add']">新增</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['business:terms:edit']"
+              >修改</el-button
+            >
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['business:terms:remove']"
+              >删除</el-button
+            >
+          </el-col>
+<!--          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['business:terms: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="termsList" @selection-change="handleSelectionChange">
+        <el-table-column type="selection" width="55" align="center" />
+        <el-table-column label="主键" align="center" prop="id" v-if="false" />
+        <el-table-column label="声明标题" align="center" prop="title" />
+        <el-table-column label="声明内容" align="center" prop="contentText" :show-overflow-tooltip="true" />
+        <el-table-column label="语言代码" align="center" prop="language" />
+        <el-table-column label="是否为默认版本" align="center" prop="isDefault">
+          <template #default="scope">
+            <el-tag v-if="scope.row.isDefault === 1" type="success">是</el-tag>
+            <el-tag v-else type="info">否</el-tag>
+          </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="['business:terms:edit']"></el-button>
+            </el-tooltip>
+            <el-tooltip content="删除" placement="top">
+              <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['business:terms: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="600px" append-to-body>
+      <el-form ref="termsFormRef" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="声明标题" prop="title">
+          <el-input v-model="form.title" placeholder="请输入声明标题" />
+        </el-form-item>
+        <el-form-item label="声明内容">
+          <editor v-model="form.content" :min-height="192" />
+        </el-form-item>
+<!--        <el-form-item label="语言代码" prop="language">
+          <el-input v-model="form.language" placeholder="请输入语言代码" />
+        </el-form-item>-->
+        <el-form-item label="默认版本" prop="isDefault">
+          <el-radio-group v-model="form.isDefault">
+            <el-radio :label="1">是</el-radio>
+            <el-radio :label="0">否</el-radio>
+          </el-radio-group>
+        </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="Terms" lang="ts">
+import { listTerms, getTerms, delTerms, addTerms, updateTerms } from 'src/api/system/business/terms';
+import { TermsVO, TermsQuery, TermsForm } from '@/api/system/business/terms/types';
+
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+const termsList = ref<TermsVO[]>([]);
+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 termsFormRef = ref<ElFormInstance>();
+
+const dialog = reactive<DialogOption>({
+  visible: false,
+  title: ''
+});
+
+const initFormData: TermsForm = {
+  id: undefined,
+  title: undefined,
+  content: undefined,
+  language: undefined,
+  isDefault: 1
+};
+const data = reactive<PageData<TermsForm, TermsQuery>>({
+  form: { ...initFormData },
+  queryParams: {
+    pageNum: 1,
+    pageSize: 10,
+    title: undefined,
+    content: undefined,
+    language: undefined,
+    isDefault: undefined,
+    params: {}
+  },
+  rules: {
+    id: [{ required: true, message: '主键不能为空', trigger: 'blur' }],
+    title: [{ required: true, message: '声明标题不能为空', trigger: 'blur' }],
+    content: [{ required: true, message: '声明内容不能为空', trigger: 'blur' }]
+  }
+});
+
+const { queryParams, form, rules } = toRefs(data);
+
+/** 查询运动申明列表 */
+const getList = async () => {
+  loading.value = true;
+  const res = await listTerms(queryParams.value);
+  termsList.value = res.rows;
+  total.value = res.total;
+  loading.value = false;
+};
+
+/** 取消按钮 */
+const cancel = () => {
+  reset();
+  dialog.visible = false;
+};
+
+/** 表单重置 */
+const reset = () => {
+  form.value = { ...initFormData };
+  termsFormRef.value?.resetFields();
+};
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  queryParams.value.pageNum = 1;
+  getList();
+};
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryFormRef.value?.resetFields();
+  handleQuery();
+};
+
+/** 多选框选中数据 */
+const handleSelectionChange = (selection: TermsVO[]) => {
+  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?: TermsVO) => {
+  reset();
+  const _id = row?.id || ids.value[0];
+  const res = await getTerms(_id);
+  Object.assign(form.value, res.data);
+  dialog.visible = true;
+  dialog.title = '修改运动申明';
+};
+
+/** 提交按钮 */
+const submitForm = () => {
+  termsFormRef.value?.validate(async (valid: boolean) => {
+    if (valid) {
+      buttonLoading.value = true;
+      if (form.value.id) {
+        await updateTerms(form.value).finally(() => (buttonLoading.value = false));
+      } else {
+        await addTerms(form.value).finally(() => (buttonLoading.value = false));
+      }
+      proxy?.$modal.msgSuccess('操作成功');
+      dialog.visible = false;
+      await getList();
+    }
+  });
+};
+
+/** 删除按钮操作 */
+const handleDelete = async (row?: TermsVO) => {
+  const _ids = row?.id || ids.value;
+  await proxy?.$modal.confirm('是否确认删除运动申明编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
+  await delTerms(_ids);
+  proxy?.$modal.msgSuccess('删除成功');
+  await getList();
+};
+
+/** 导出按钮操作 */
+const handleExport = () => {
+  proxy?.download(
+    'business/terms/export',
+    {
+      ...queryParams.value
+    },
+    `terms_${new Date().getTime()}.xlsx`
+  );
+};
+
+onMounted(() => {
+  getList();
+});
+</script>
+<style>
+.custom-editor-content .ql-editor {
+  width: 100%;
+  max-width: 500px; /* 固定宽度 */
+  white-space: pre-wrap !important;
+  word-wrap: break-word;
+  overflow-wrap: break-word;
+}
+.el-form-item .el-form {
+  white-space: normal;
+}
+
+/* 确保 .ql-editor 是你的富文本编辑器的内容区域类名 */
+.ql-editor {
+  white-space: pre-wrap !important; /* 允许自动换行 */
+  word-wrap: break-word; /* 长单词或 URL 自动换行 */
+  overflow-wrap: break-word; /* 另一种方式实现自动换行 */
+}
+</style>

+ 201 - 0
src/views/system/business/terms/indexSportPreview.vue

@@ -0,0 +1,201 @@
+<template>
+  <div class="tos-container">
+    <el-card>
+      <div class="tos-content" v-html="tosContent"></div>
+    </el-card>
+  </div>
+</template>
+
+<script setup lang="ts">
+import { ref, onMounted } from 'vue';
+import DOMPurify from 'dompurify';
+import { getSportTermsListMax } from '@/api/system/business/terms';
+
+const tosContent = ref('');
+const language = ref('zh-CN');
+
+onMounted(() => {
+  fetchTos();
+});
+
+const fetchTos = async () => {
+  try {
+    const res = await getSportTermsListMax();
+    // 处理获取到的内容,确保格式良好
+    const formattedContent = handleContentFormatting(res.data.content || '<p>内容加载失败</p>');
+    tosContent.value = DOMPurify.sanitize(formattedContent);
+  } catch (error) {
+    console.error('内容加载失败', error);
+    tosContent.value = '<p>内容加载失败</p>';
+  }
+};
+
+// 完善内容格式化处理
+const handleContentFormatting = (content: string): string => {
+  if (!content) return '<p>暂无内容</p>';
+
+  // 移除多余的空白字符,但保留必要的换行
+  let formattedContent = content
+    .replace(/\r\n/g, '\n')
+    .replace(/\r/g, '\n')
+    .replace(/\n\s*\n/g, '\n\n') // 合并多个空行为两个换行
+    .trim();
+
+  // 如果内容已经是HTML格式(包含标签),则不进行额外处理
+  if (/<[^>]+>/.test(formattedContent)) {
+    return formattedContent;
+  }
+
+  // 如果是纯文本,转换为基本的HTML格式
+  // 将连续的换行转换为段落
+  formattedContent = formattedContent
+    .split('\n\n')
+    .map((paragraph) => `<p>${paragraph.replace(/\n/g, '<br>')}</p>`)
+    .join('');
+
+  return formattedContent;
+};
+</script>
+
+<style scoped>
+.tos-container {
+  padding: 20px;
+  max-width: 800px;
+  margin: 0 auto;
+}
+
+.tos-content {
+  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
+  font-size: 14px;
+  line-height: 1.6;
+  color: #333;
+  word-break: break-word;
+}
+
+/* 标题样式 */
+.tos-content h1 {
+  font-size: 24px;
+  font-weight: bold;
+  margin: 24px 0 16px 0;
+  color: #2c3e50;
+  text-align: center;
+}
+
+.tos-content h2 {
+  font-size: 20px;
+  font-weight: bold;
+  margin: 20px 0 12px 0;
+  color: #34495e;
+  border-bottom: 1px solid #eee;
+  padding-bottom: 8px;
+}
+
+.tos-content h3 {
+  font-size: 18px;
+  font-weight: bold;
+  margin: 16px 0 10px 0;
+  color: #555;
+}
+
+/* 段落样式 */
+.tos-content p {
+  margin: 12px 0;
+  line-height: 1.7;
+}
+
+/* 列表样式 */
+.tos-content ul,
+.tos-content ol {
+  margin: 12px 0;
+  padding-left: 24px;
+}
+
+.tos-content li {
+  margin: 8px 0;
+  line-height: 1.6;
+}
+
+.tos-content ul li {
+  list-style-type: disc;
+}
+
+.tos-content ol li {
+  list-style-type: decimal;
+}
+
+/* 强调文本 */
+.tos-content strong {
+  font-weight: bold;
+  color: #2c3e50;
+}
+
+.tos-content em {
+  font-style: italic;
+}
+
+/* 链接样式 */
+.tos-content a {
+  color: #3498db;
+  text-decoration: none;
+}
+
+.tos-content a:hover {
+  text-decoration: underline;
+}
+
+/* 代码样式 */
+.tos-content code {
+  background-color: #f8f9fa;
+  padding: 2px 4px;
+  border-radius: 3px;
+  font-family: 'Courier New', monospace;
+  font-size: 13px;
+}
+
+/* 引用样式 */
+.tos-content blockquote {
+  border-left: 4px solid #ddd;
+  margin: 16px 0;
+  padding: 8px 16px;
+  background-color: #f9f9f9;
+  color: #666;
+}
+
+/* 响应式设计 */
+@media (max-width: 768px) {
+  .tos-container {
+    padding: 15px;
+  }
+
+  .tos-content {
+    font-size: 13px;
+  }
+
+  .tos-content h1 {
+    font-size: 20px;
+    margin: 20px 0 14px 0;
+  }
+
+  .tos-content h2 {
+    font-size: 18px;
+    margin: 18px 0 10px 0;
+  }
+
+  .tos-content h3 {
+    font-size: 16px;
+    margin: 14px 0 8px 0;
+  }
+
+  .el-card {
+    width: 100%;
+    margin: 0 auto;
+  }
+}
+
+/* 处理可能的空白内容 */
+.tos-content:empty::before {
+  content: '暂无内容';
+  color: #999;
+  font-style: italic;
+}
+</style>

+ 4 - 4
src/views/system/business/versionManagement/index.vue

@@ -64,7 +64,7 @@
             </el-tooltip>
           </template>
         </el-table-column>
-<!--        <el-table-column label="已知问题" align="center" width="180">
+        <!--        <el-table-column label="已知问题" align="center" width="180">
           <template #default="scope">
             <el-tooltip :content="scope.row.knownIssues" placement="top">
               <span class="truncate">{{ scope.row.knownIssues }}</span>
@@ -72,13 +72,13 @@
           </template>
         </el-table-column>-->
         <el-table-column label="操作系统类型" align="center" prop="osType" />
-<!--        <el-table-column label="系统版本" align="center" prop="osSupport" />-->
+        <!--        <el-table-column label="系统版本" align="center" prop="osSupport" />-->
         <el-table-column label="是否强制更新" align="center">
           <template #default="scope">
             {{ formatForceUpdate(scope.row.forceUpdate) }}
           </template>
         </el-table-column>
-        <el-table-column label="更新包大小" align="center" prop="updatePackageSize" />
+        <!--        <el-table-column label="更新包大小" align="center" prop="updatePackageSize" />-->
         <el-table-column label="状态" align="center">
           <template #default="scope">
             {{ formatStatus(scope.row.status) }}
@@ -181,7 +181,7 @@
           <el-input v-model="form.osSupport" placeholder="请输入支持的最低系统版本,如 Android 5.0, iOS 11.0" />
         </el-form-item>-->
 
-<!--        <el-form-item label="更新包大小" prop="updatePackageSize">
+        <!--        <el-form-item label="更新包大小" prop="updatePackageSize">
           <el-input v-model="form.updatePackageSize" placeholder="请输入更新包大小" />
         </el-form-item>-->
       </el-form>