From b90d0aba2624c7799a0e942cad02beedf49ca410 Mon Sep 17 00:00:00 2001 From: rd <1344903914@qq.com> Date: Wed, 23 Jul 2025 14:30:44 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=AA=92=E4=BD=93=E8=B4=A6=E5=8F=B7/?= =?UTF-8?q?=E6=8A=95=E6=94=BE=E8=B4=A6=E6=88=B7=E5=A2=9E=E5=8A=A0=E3=80=90?= =?UTF-8?q?=E6=89=80=E5=B1=9E=E9=A1=B9=E7=9B=AE=E3=80=91=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/all/propertyMarketing.ts | 5 ++ .../common-select}/index.vue | 19 +++--- .../components/filter-block/index.vue | 7 +- .../components/account-table/index.vue | 34 ++++++++-- .../components/account-table/style.scss | 6 -- .../components/add-account-modal/index.vue | 33 ++++++++-- .../components/batch-group-modal/index.vue | 6 +- .../components/filter-block/index.vue | 43 +++++++++---- .../media-account/account-manage/constants.ts | 1 + .../components/operator-select/index.vue | 64 ------------------- .../put-account/account-dashboard/index.vue | 4 +- .../components/filter-block/index.vue | 7 +- .../components/account-table/index.vue | 24 +++++++ .../components/account-table/style.scss | 6 -- .../components/add-account-modal/index.vue | 16 +++++ .../components/filter-block/index.vue | 20 +++++- .../put-account/account-manage/constants.ts | 1 + .../components/operator-select/index.vue | 64 ------------------- 18 files changed, 174 insertions(+), 186 deletions(-) rename src/{views/property-marketing/media-account/components/group-select => components/common-select}/index.vue (76%) delete mode 100644 src/views/property-marketing/media-account/components/operator-select/index.vue delete mode 100644 src/views/property-marketing/put-account/components/operator-select/index.vue diff --git a/src/api/all/propertyMarketing.ts b/src/api/all/propertyMarketing.ts index fa65b7c..75f68a1 100644 --- a/src/api/all/propertyMarketing.ts +++ b/src/api/all/propertyMarketing.ts @@ -377,6 +377,11 @@ export const getProjects = (params = {}) => { return Http.get('/v1/projects', params); }; +// 项目管理-列表 +export const getProjectList = () => { + return Http.get('/v1/projects/list'); +}; + // 项目管理-删除 export const deleteProject = (id: string) => { return Http.delete(`/v1/projects/${id}`); diff --git a/src/views/property-marketing/media-account/components/group-select/index.vue b/src/components/common-select/index.vue similarity index 76% rename from src/views/property-marketing/media-account/components/group-select/index.vue rename to src/components/common-select/index.vue index f72d0e3..44b2025 100644 --- a/src/views/property-marketing/media-account/components/group-select/index.vue +++ b/src/components/common-select/index.vue @@ -4,12 +4,12 @@ -->