From 292369578082658e427416b43e041b6498b675bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Thu, 29 Aug 2024 00:35:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=8A=B6=E6=80=81=EF=BC=9Aus?= =?UTF-8?q?eForm=E7=AD=89=EF=BC=8C=E9=A1=B5=E9=9D=A2=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E8=9E=8D=E5=85=A5config=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/cms/design/model/index.ts | 2 + components/AppFooter.vue | 21 +++++---- components/AppHeader.vue | 16 +++---- components/Breadcrumb.vue | 3 +- composables/configState.ts | 11 +++++ nuxt.config.ts | 2 - pages/[custom]/index.vue | 78 ++++++++++++++++++++++----------- pages/page/[id].vue | 80 ++++++++++++++++++++++++++++++++++ pages/product/740a123.html.vue | 11 +++++ types/global.d.ts | 8 ++++ 10 files changed, 184 insertions(+), 48 deletions(-) create mode 100644 pages/page/[id].vue create mode 100644 pages/product/740a123.html.vue diff --git a/api/cms/design/model/index.ts b/api/cms/design/model/index.ts index 2a35f86..913e341 100644 --- a/api/cms/design/model/index.ts +++ b/api/cms/design/model/index.ts @@ -18,6 +18,8 @@ export interface Design { width?: string; // 高 height?: string; + // 页面样式 + styles?: string; // 附件 images?: string; // 用户ID diff --git a/components/AppFooter.vue b/components/AppFooter.vue index 287c323..0305045 100644 --- a/components/AppFooter.vue +++ b/components/AppFooter.vue @@ -1,17 +1,15 @@