From df4f8d826cb757f0a379e53dc0c05f1ad7173c5a Mon Sep 17 00:00:00 2001 From: zhangtao <9480807882@qq.com> Date: Wed, 20 Aug 2025 01:43:58 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E9=A1=B5=E9=9D=A2):=20=E9=87=8D=E5=86=99?= =?UTF-8?q?=E5=85=B3=E4=BA=8E=E6=88=91=E4=BB=AC=E5=92=8C=E5=B8=B8=E8=A7=81?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 重构关于我们页面,新增品牌展示区域、技术栈展示和资源链接 重写常见问题页面,新增技术支持卡片、FAQ列表和功能指南 优化网络测试功能,在H5环境下使用window.open打开链接 添加多个Wot Design组件到组件声明文件 --- fastapp/components.d.ts | 3 + fastapp/src/pages/mine/about/index.vue | 435 +++++++++++--- fastapp/src/pages/mine/faq/index.vue | 701 +++++++++++++++++----- fastapp/src/pages/mine/settings/index.vue | 3 +- 4 files changed, 937 insertions(+), 205 deletions(-) diff --git a/fastapp/components.d.ts b/fastapp/components.d.ts index cbf16f89..2701df0b 100644 --- a/fastapp/components.d.ts +++ b/fastapp/components.d.ts @@ -24,11 +24,13 @@ declare module 'vue' { WdCollapse: typeof import('wot-design-uni/components/wd-collapse/wd-collapse.vue')['default'] WdCollapseItem: typeof import('wot-design-uni/components/wd-collapse-item/wd-collapse-item.vue')['default'] WdConfigProvider: typeof import('wot-design-uni/components/wd-config-provider/wd-config-provider.vue')['default'] + WdDivider: typeof import('wot-design-uni/components/wd-divider/wd-divider.vue')['default'] WdForm: typeof import('wot-design-uni/components/wd-form/wd-form.vue')['default'] WdFormItem: typeof import('wot-design-uni/components/wd-form-item/wd-form-item.vue')['default'] WdGrid: typeof import('wot-design-uni/components/wd-grid/wd-grid.vue')['default'] WdGridItem: typeof import('wot-design-uni/components/wd-grid-item/wd-grid-item.vue')['default'] WdIcon: typeof import('wot-design-uni/components/wd-icon/wd-icon.vue')['default'] + WdImage: typeof import('wot-design-uni/components/wd-image/wd-image.vue')['default'] WdImg: typeof import('wot-design-uni/components/wd-img/wd-img.vue')['default'] WdImgCropper: typeof import('wot-design-uni/components/wd-img-cropper/wd-img-cropper.vue')['default'] WdInput: typeof import('wot-design-uni/components/wd-input/wd-input.vue')['default'] @@ -50,6 +52,7 @@ declare module 'vue' { WdTag: typeof import('wot-design-uni/components/wd-tag/wd-tag.vue')['default'] WdText: typeof import('wot-design-uni/components/wd-text/wd-text.vue')['default'] WdTextarea: typeof import('wot-design-uni/components/wd-textarea/wd-textarea.vue')['default'] + WdTitle: typeof import('wot-design-uni/components/wd-title/wd-title.vue')['default'] WdToast: typeof import('wot-design-uni/components/wd-toast/wd-toast.vue')['default'] WdUpload: typeof import('wot-design-uni/components/wd-upload/wd-upload.vue')['default'] } diff --git a/fastapp/src/pages/mine/about/index.vue b/fastapp/src/pages/mine/about/index.vue index 8a324277..2ea954cd 100644 --- a/fastapp/src/pages/mine/about/index.vue +++ b/fastapp/src/pages/mine/about/index.vue @@ -1,96 +1,393 @@ diff --git a/fastapp/src/pages/mine/faq/index.vue b/fastapp/src/pages/mine/faq/index.vue index 483b06c8..7a76a6f8 100644 --- a/fastapp/src/pages/mine/faq/index.vue +++ b/fastapp/src/pages/mine/faq/index.vue @@ -1,153 +1,584 @@