feat(home): 新增创建问卷功能并优化首页样式

- 新增 CreateQuestion 组件,用于创建新问卷
- 在首页添加创建问卷入口
- 优化首页样式,调整背景图显示方式
- 在 QuestionAction 组件中添加题目移动逻辑
This commit is contained in:
陈昱达
2025-03-19 11:19:34 +08:00
parent 3cc345c21f
commit b6cb171e26
5 changed files with 269 additions and 33 deletions

3
components.d.ts vendored
View File

@@ -11,7 +11,6 @@ declare module 'vue' {
ElInput: typeof import('element-plus/es')['ElInput']
ElOption: typeof import('element-plus/es')['ElOption']
ElSelect: typeof import('element-plus/es')['ElSelect']
ElText: typeof import('element-plus/es')['ElText']
RichText: typeof import('./src/components/RichText.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
@@ -35,6 +34,8 @@ declare module 'vue' {
VanRow: typeof import('vant/es')['Row']
VanStepper: typeof import('vant/es')['Stepper']
VanSwitch: typeof import('vant/es')['Switch']
VanTab: typeof import('vant/es')['Tab']
VanTabs: typeof import('vant/es')['Tabs']
YLCascader: typeof import('./src/components/YLCascader.vue')['default']
YLInput: typeof import('./src/components/YLInput.vue')['default']
YLPicker: typeof import('./src/components/YLPicker.vue')['default']