From d9289776a96fdf414a366fa4f4a67a612f7b2d57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Thu, 20 Mar 2025 14:06:44 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=A0=87=E7=AD=BE?= =?UTF-8?q?=E5=BA=93=E7=9B=B8=E5=85=B3=E6=8E=A5=E5=8F=A3=EF=BC=8C=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E8=A1=A8=E5=8D=95=E6=A0=B7=E5=BC=8F=E5=92=8C=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/taglibrary/index.ts | 10 +- .../ContentWrap/src/ContentWrap.vue | 2 +- src/components/Dialog/src/Dialog.vue | 12 -- src/styles/variables.scss | 21 ++ src/views/system/taglibrary/form.vue | 87 ++++---- src/views/system/taglibrary/index.vue | 173 +++++++--------- src/views/task/create.vue | 190 +++++++++--------- 7 files changed, 241 insertions(+), 254 deletions(-) diff --git a/src/api/system/taglibrary/index.ts b/src/api/system/taglibrary/index.ts index 8bdcb13..29fd522 100644 --- a/src/api/system/taglibrary/index.ts +++ b/src/api/system/taglibrary/index.ts @@ -20,7 +20,7 @@ export const TagLibraryApi = { // 查询企业标签分页 childrenList: async (id: number) => { - return await request.get({ url: `/system/tag-library/childrenList?id=`+id }) + return await request.get({ url: `/system/tag-library/childrenList?id=` + id }) }, // 查询企业标签详情 @@ -43,7 +43,7 @@ export const TagLibraryApi = { return await request.delete({ url: `/system/tag-library/delete?id=` + id }) }, - // 删除企业标签 + // 删除企业标签 tagLibraryList: async (codeList: string) => { return await request.get({ url: `/system/tag-library/list?` + codeList }) }, @@ -52,4 +52,10 @@ export const TagLibraryApi = { exportTagLibrary: async (params) => { return await request.download({ url: `/system/tag-library/export-excel`, params }) }, + /** + * 获取标签列表 + */ + getTagList: async (params: any) => { + return await request.get({ url: `/system/tag-library/pageInfo`, params }) + } } diff --git a/src/components/ContentWrap/src/ContentWrap.vue b/src/components/ContentWrap/src/ContentWrap.vue index e603596..8847219 100644 --- a/src/components/ContentWrap/src/ContentWrap.vue +++ b/src/components/ContentWrap/src/ContentWrap.vue @@ -11,7 +11,7 @@ const prefixCls = getPrefixCls('content-wrap') defineProps({ title: propTypes.string.def(''), message: propTypes.string.def(''), - bodyStyle: propTypes.object.def({ padding: '10px' }) + bodyStyle: propTypes.object.def({ padding: '40px' }) }) diff --git a/src/components/Dialog/src/Dialog.vue b/src/components/Dialog/src/Dialog.vue index c38eb83..b0d81dd 100644 --- a/src/components/Dialog/src/Dialog.vue +++ b/src/components/Dialog/src/Dialog.vue @@ -62,11 +62,9 @@ const dialogStyle = computed(() => { @@ -78,14 +76,6 @@ const dialogStyle = computed(() => {
- { height: 54px; padding: 0; margin-right: 0 !important; - border-bottom: 1px solid var(--el-border-color); } &__body { @@ -130,7 +119,6 @@ const dialogStyle = computed(() => { } &__footer { - border-top: 1px solid var(--el-border-color); } &__headerbtn { diff --git a/src/styles/variables.scss b/src/styles/variables.scss index 00b66f1..8b1c97e 100644 --- a/src/styles/variables.scss +++ b/src/styles/variables.scss @@ -2,3 +2,24 @@ $namespace: v; // el命名空间 $elNamespace: el; + +.el-form--inline { + display: flex; + gap: 40px; + margin-bottom: 0; + .el-form-item { + margin-right: 0; + margin-bottom: 0; + .el-form-item__label { + width: fit-content; + } + } +} + +.el-table { + border: 1px solid #ebeef5; + --el-table-header-bg-color: #f5f7fa; + .el-table__header { + color: #909399; + } +} diff --git a/src/views/system/taglibrary/form.vue b/src/views/system/taglibrary/form.vue index dfff1b2..4245e24 100644 --- a/src/views/system/taglibrary/form.vue +++ b/src/views/system/taglibrary/form.vue @@ -7,31 +7,16 @@ label-width="100px" v-loading="formLoading" > - - + + + + - - + - - - - - - - + + + + diff --git a/src/views/task/create.vue b/src/views/task/create.vue index 94c9207..e8607fa 100644 --- a/src/views/task/create.vue +++ b/src/views/task/create.vue @@ -46,21 +46,21 @@ /> - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + 搜索 @@ -198,14 +198,15 @@
-
+
- + 企业名称:{{ item.enterprisesName }}
- 区域: - 规模: -
+ 区域: + + 规模: +
@@ -228,13 +229,18 @@ 提 交 - 审核通过 - 审核通过 + 删除 + >删除 + + diff --git a/src/styles/variables.scss b/src/styles/variables.scss index 8b1c97e..91f085f 100644 --- a/src/styles/variables.scss +++ b/src/styles/variables.scss @@ -5,6 +5,7 @@ $elNamespace: el; .el-form--inline { display: flex; + flex-flow: row wrap; gap: 40px; margin-bottom: 0; .el-form-item { @@ -23,3 +24,8 @@ $elNamespace: el; color: #909399; } } + +.el-pagination--large .btn-next, .el-pagination--large .btn-prev, .el-pagination--large .el-pager li{ + height: fit-content; + line-height: normal; +} diff --git a/src/utils/formatTime.ts b/src/utils/formatTime.ts index 5ca4b10..234b3d3 100644 --- a/src/utils/formatTime.ts +++ b/src/utils/formatTime.ts @@ -1,4 +1,5 @@ import dayjs from 'dayjs' +import 'dayjs/locale/zh-cn' import type { TableColumnCtx } from 'element-plus' /** @@ -69,7 +70,7 @@ export function formatDate(date: Date, format?: string): string { return '' } // 日期存在,则进行格式化 - return date ? dayjs(date).format(format ?? 'YYYY-MM-DD HH:mm:ss') : '' + return date ? dayjs(date).locale('zh-cn').format(format ?? 'YYYY-MM-DD HH:mm:ss') : '' } /** @@ -198,7 +199,7 @@ export function formatPast2(ms: number): string { * @param cellValue 字段值 */ export function dateFormatter(_row: any, _column: TableColumnCtx, cellValue: any): string { - return cellValue ? formatDate(cellValue) : '' + return cellValue ? formatDate(cellValue, 'YYYY年MM月DD日 A') : '' } /** @@ -209,10 +210,9 @@ export function dateFormatter(_row: any, _column: TableColumnCtx, cellValue * @param cellValue 字段值 */ export function dateFormatter2(_row: any, _column: TableColumnCtx, cellValue: any): string { - return cellValue ? formatDate(cellValue, 'YYYY-MM-DD') : '' + return cellValue ? formatDate(cellValue, 'YYYY年MM月DD日') : '' } - /** * element plus 的时间 Formatter 实现,使用 YYYY年MM月DD日 格式 * @@ -224,8 +224,6 @@ export function dateFormatter3(_row: any, _column: TableColumnCtx, cellValu return cellValue ? formatDate(cellValue, 'YYYY年MM月DD日') : '' } - - /** * 设置起始日期,时间为00:00:00 * @param param 传入日期 diff --git a/src/views/system/policy/PolicyForm.vue b/src/views/system/policy/PolicyForm.vue index 878ff93..86fed30 100644 --- a/src/views/system/policy/PolicyForm.vue +++ b/src/views/system/policy/PolicyForm.vue @@ -1,31 +1,41 @@ @@ -107,4 +117,20 @@ const resetForm = () => { } formRef.value?.resetFields() } - \ No newline at end of file + +const deletePolicy=()=>{ + PolicyApi.deletePolicy(formData.value.id).then(()=>{ + message.success(t('common.delSuccess')) + dialogVisible.value = false + emit('success') + }) +} + + + diff --git a/src/views/system/policy/index.vue b/src/views/system/policy/index.vue index bd17963..3fb00da 100644 --- a/src/views/system/policy/index.vue +++ b/src/views/system/policy/index.vue @@ -1,107 +1,83 @@ \ No newline at end of file + diff --git a/src/views/system/taglibrary/index.vue b/src/views/system/taglibrary/index.vue index a9abf8a..c9b5760 100644 --- a/src/views/system/taglibrary/index.vue +++ b/src/views/system/taglibrary/index.vue @@ -1,18 +1,26 @@