Parcourir la source

feat(system): 添加隐私声明功能- 新增隐私声明相关的 API接口和类型定义
- 实现隐私声明列表查询、详情获取、添加、修改和删除功能- 添加隐私声明预览页面- 更新路由配置,支持隐私声明相关路径
- 优化权限控制,将隐私声明相关路径添加到白名单

fugui001 il y a 5 mois
Parent
commit
0f3d982c08

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

@@ -0,0 +1,74 @@
+import request from '@/utils/request';
+import { AxiosPromise } from 'axios';
+import { PolicyVO, PolicyForm, PolicyQuery } from '@/api/system/business/policy/types';
+
+/**
+ * 查询隐私声明列表
+ * @param query
+ * @returns {*}
+ */
+
+export const listPolicy = (query?: PolicyQuery): AxiosPromise<PolicyVO[]> => {
+  return request({
+    url: '/business/policy/list',
+    method: 'get',
+    params: query
+  });
+};
+
+/**
+ * 查询隐私声明详细
+ * @param id
+ */
+export const getPolicy = (id: string | number): AxiosPromise<PolicyVO> => {
+  return request({
+    url: '/business/policy/' + id,
+    method: 'get'
+  });
+};
+
+/**
+ * 新增隐私声明
+ * @param data
+ */
+export const addPolicy = (data: PolicyForm) => {
+  return request({
+    url: '/business/policy',
+    method: 'post',
+    data: data
+  });
+};
+
+/**
+ * 修改隐私声明
+ * @param data
+ */
+export const updatePolicy = (data: PolicyForm) => {
+  return request({
+    url: '/business/policy',
+    method: 'put',
+    data: data
+  });
+};
+
+/**
+ * 删除隐私声明
+ * @param id
+ */
+export const delPolicy = (id: string | number | Array<string | number>) => {
+  return request({
+    url: '/business/policy/' + id,
+    method: 'delete'
+  });
+};
+
+/**
+ * 查询默认数据展示H5页面 接口
+ * @param id
+ */
+export const getPrivacyPolicyListMax = (): AxiosPromise<PolicyVO> => {
+  return request({
+    url: '/business/policy/selectPrivacyPolicyListMax',
+    method: 'get'
+  });
+};

+ 80 - 0
src/api/system/business/policy/types.ts

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

+ 6 - 1
src/permission.ts

@@ -11,7 +11,7 @@ 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'];
+const whiteList = ['/login', '/register', '/social-callback', '/register*', '/register/*', '/ofService/*', '/ofService', '/policy/*', '/policy'];
 
 const isWhiteList = (path: string) => {
   return whiteList.some((pattern) => isPathMatch(pattern, path));
@@ -19,6 +19,11 @@ const isWhiteList = (path: string) => {
 
 router.beforeEach(async (to, from, next) => {
   NProgress.start();
+  console.log('当前访问路径:', to.path);
+  console.log('是否在白名单:', isWhiteList(to.path));
+  console.log('是否有 token:', getToken());
+  console.log('用户角色数量:', useUserStore().roles.length); // 打印角色数量
+
   if (getToken()) {
     to.meta.title && useSettingsStore().setTitle(to.meta.title as string);
     /* has token*/

+ 5 - 0
src/router/index.ts

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

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

@@ -230,7 +230,7 @@ const handleDelete = async (row?: OfServiceVO) => {
 /** 导出按钮操作 */
 const handleExport = () => {
   proxy?.download(
-    'system/ofService/export',
+    'business/ofService/export',
     {
       ...queryParams.value
     },

+ 0 - 1
src/views/system/business/ofService/indexPreview.vue

@@ -21,7 +21,6 @@ onMounted(() => {
 const fetchTos = async () => {
   try {
     const res = await getTermsServiceListMax();
-    debugger;
     tosContent.value = DOMPurify.sanitize(res.data.content);
   } catch (error) {
     console.error('获取服务条款失败', error);

+ 263 - 0
src/views/system/business/policy/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="['system:policy:add']">新增</el-button>
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['system:policy:edit']"
+              >修改</el-button
+            >
+          </el-col>
+          <el-col :span="1.5">
+            <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['system:policy:remove']"
+              >删除</el-button
+            >
+          </el-col>
+          <!--          <el-col :span="1.5">
+            <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:policy: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="policyList" @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="['system:policy:edit']"></el-button>
+            </el-tooltip>
+            <el-tooltip content="删除" placement="top">
+              <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:policy: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="policyFormRef" :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" class="custom-editor-content ql-editor" />
+        </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="Policy" lang="ts">
+import { listPolicy, getPolicy, delPolicy, addPolicy, updatePolicy } from '@/api/system/business/policy';
+import { PolicyVO, PolicyQuery, PolicyForm } from '@/api/system/business/policy/types';
+
+const { proxy } = getCurrentInstance() as ComponentInternalInstance;
+
+const policyList = ref<PolicyVO[]>([]);
+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 policyFormRef = ref<ElFormInstance>();
+
+const dialog = reactive<DialogOption>({
+  visible: false,
+  title: ''
+});
+
+const initFormData: PolicyForm = {
+  id: undefined,
+  title: undefined,
+  content: undefined,
+  language: undefined,
+  isDefault: undefined
+};
+const data = reactive<PageData<PolicyForm, PolicyQuery>>({
+  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 listPolicy(queryParams.value);
+  policyList.value = res.rows;
+  total.value = res.total;
+  loading.value = false;
+};
+
+/** 取消按钮 */
+const cancel = () => {
+  reset();
+  dialog.visible = false;
+};
+
+/** 表单重置 */
+const reset = () => {
+  form.value = { ...initFormData };
+  policyFormRef.value?.resetFields();
+};
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  queryParams.value.pageNum = 1;
+  getList();
+};
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryFormRef.value?.resetFields();
+  handleQuery();
+};
+
+/** 多选框选中数据 */
+const handleSelectionChange = (selection: PolicyVO[]) => {
+  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?: PolicyVO) => {
+  reset();
+  const _id = row?.id || ids.value[0];
+  const res = await getPolicy(_id);
+  Object.assign(form.value, res.data);
+  dialog.visible = true;
+  dialog.title = '修改';
+};
+
+/** 提交按钮 */
+const submitForm = () => {
+  policyFormRef.value?.validate(async (valid: boolean) => {
+    if (valid) {
+      buttonLoading.value = true;
+      if (form.value.id) {
+        await updatePolicy(form.value).finally(() => (buttonLoading.value = false));
+      } else {
+        await addPolicy(form.value).finally(() => (buttonLoading.value = false));
+      }
+      proxy?.$modal.msgSuccess('操作成功');
+      dialog.visible = false;
+      await getList();
+    }
+  });
+};
+
+/** 删除按钮操作 */
+const handleDelete = async (row?: PolicyVO) => {
+  const _ids = row?.id || ids.value;
+  await proxy?.$modal.confirm('是否确认删除隐私声明编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
+  await delPolicy(_ids);
+  proxy?.$modal.msgSuccess('删除成功');
+  await getList();
+};
+
+/** 导出按钮操作 */
+const handleExport = () => {
+  proxy?.download(
+    'business/policy/export',
+    {
+      ...queryParams.value
+    },
+    `policy_${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>

+ 35 - 0
src/views/system/business/policy/indexPolicyPreview.vue

@@ -0,0 +1,35 @@
+<template>
+  <div class="tos-container">
+    <el-card>
+      <div v-html="tosContent"></div>
+    </el-card>
+  </div>
+</template>
+
+<script setup lang="ts">
+import { ref, onMounted } from 'vue';
+import DOMPurify from 'dompurify';
+import { getPrivacyPolicyListMax } from '@/api/system/business/policy';
+
+const tosContent = ref('');
+const language = ref('zh-CN');
+
+onMounted(() => {
+  fetchTos();
+});
+
+const fetchTos = async () => {
+  try {
+    const res = await getPrivacyPolicyListMax();
+    tosContent.value = DOMPurify.sanitize(res.data.content);
+  } catch (error) {
+    console.error('获取服务条款失败', error);
+  }
+};
+</script>
+
+<style scoped>
+.tos-container {
+  padding: 20px;
+}
+</style>