From 755c15022087037253af6f1d009214960cb155f5 Mon Sep 17 00:00:00 2001 From: Diyu0904 <1819728964@qq.com> Date: Tue, 18 Feb 2025 11:36:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components.d.ts | 3 + app/components/Authentication.vue | 100 +-- app/components/BaseComment copy.vue | 328 ---------- app/components/BaseComment.vue | 74 ++- app/components/Header.vue | 246 +++++--- app/components/ModelList.vue | 175 ++++++ app/components/PersonalCenterCard.vue | 65 +- app/components/PictureDetail.vue | 190 ++++++ app/components/PictureList.vue | 210 +++++++ app/components/Publish-picture.vue | 13 +- app/components/ScrollListView.vue | 2 +- app/components/WorkFlowList.vue | 189 ++++++ app/components/message/AttentionMsg.vue | 48 ++ app/components/message/LikeMsg.vue | 40 ++ app/components/message/OfficialMsg.vue | 19 + app/components/message/ReplyMsg.vue | 62 ++ app/components/publishModel/CreateModels.vue | 275 ++++---- app/components/publishModel/EditVersion.vue | 589 ++++++++++-------- app/components/publishModel/UploadImg.vue | 197 ++++++ .../publishWorkFlow/EditVersion.vue | 12 +- .../publishWorkFlow/EditWorkFlow.vue | 6 +- app/components/publishWorkFlow/UploadImg.vue | 9 +- app/constants/index.ts | 3 +- app/layouts/default.vue | 26 +- app/pages/message/index.vue | 272 ++++++++ app/pages/model-details/[id].vue | 467 +++++++++++++- app/pages/model-square.vue | 267 +++++++- app/pages/personal-center/index.vue | 16 +- app/pages/picture-square.vue | 189 ++++++ app/pages/publish-model/index.vue | 311 ++++----- app/pages/publish-workflow/index.vue | 117 ++-- app/pages/work-square.vue | 188 ++++++ app/pages/workflow-details/[id].vue | 22 +- app/stores/menu.ts | 4 +- app/utils/request.ts | 8 +- netlify.toml | 0 nuxt.config.ts | 4 +- 37 files changed, 3539 insertions(+), 1207 deletions(-) delete mode 100644 app/components/BaseComment copy.vue create mode 100644 app/components/ModelList.vue create mode 100644 app/components/PictureDetail.vue create mode 100644 app/components/PictureList.vue create mode 100644 app/components/WorkFlowList.vue create mode 100644 app/components/message/AttentionMsg.vue create mode 100644 app/components/message/LikeMsg.vue create mode 100644 app/components/message/OfficialMsg.vue create mode 100644 app/components/message/ReplyMsg.vue create mode 100644 app/components/publishModel/UploadImg.vue create mode 100644 app/pages/message/index.vue create mode 100644 app/pages/picture-square.vue create mode 100644 app/pages/work-square.vue mode change 100755 => 100644 netlify.toml diff --git a/app/components.d.ts b/app/components.d.ts index 9564824..8d450bb 100644 --- a/app/components.d.ts +++ b/app/components.d.ts @@ -10,12 +10,15 @@ declare module 'vue' { NAvatar: typeof import('naive-ui')['NAvatar'] NBadge: typeof import('naive-ui')['NBadge'] NButton: typeof import('naive-ui')['NButton'] + NCarousel: typeof import('naive-ui')['NCarousel'] NCascader: typeof import('naive-ui')['NCascader'] NCheckbox: typeof import('naive-ui')['NCheckbox'] NCheckboxGroup: typeof import('naive-ui')['NCheckboxGroup'] NConfigProvider: typeof import('naive-ui')['NConfigProvider'] NDatePicker: typeof import('naive-ui')['NDatePicker'] NDropdown: typeof import('naive-ui')['NDropdown'] + NEllipsis: typeof import('naive-ui')['NEllipsis'] + NEmpty: typeof import('naive-ui')['NEmpty'] NFor: typeof import('naive-ui')['NFor'] NForm: typeof import('naive-ui')['NForm'] NFormItem: typeof import('naive-ui')['NFormItem'] diff --git a/app/components/Authentication.vue b/app/components/Authentication.vue index ec7b778..6cb095e 100644 --- a/app/components/Authentication.vue +++ b/app/components/Authentication.vue @@ -1,52 +1,55 @@