优化搜索和模板市场功能

- 修复饼图无法显示的问题,调整了图表初始化逻辑和容器尺寸
- 添加模板市场组件,实现模板点击和使用功能
- 优化首页布局,调整轮播图和创建问卷组件的顺序
- 添加搜索API接口,支持模板和banner搜索
- 修复问卷创建页面样式,使用van-cell组件优化布局
- 实现智能创建入口的跳转逻辑
- 优化代码格式,修正拼写错误和分号问题
This commit is contained in:
Huangzhe
2025-05-15 16:05:25 +08:00
parent 9f8fc0a31a
commit 00cc42d565
23 changed files with 389 additions and 238 deletions

3
components.d.ts vendored
View File

@@ -32,6 +32,7 @@ declare module 'vue' {
RouterView: typeof import('vue-router')['RouterView']
VanActionSheet: typeof import('vant/es')['ActionSheet']
VanButton: typeof import('vant/es')['Button']
VanCard: typeof import('vant/es')['Card']
VanCell: typeof import('vant/es')['Cell']
VanCellGroup: typeof import('vant/es')['CellGroup']
VanCheckbox: typeof import('vant/es')['Checkbox']
@@ -49,7 +50,6 @@ declare module 'vue' {
VanRadioGroup: typeof import('vant/es')['RadioGroup']
VanRow: typeof import('vant/es')['Row']
VanSearch: typeof import('vant/es')['Search']
VanSpace: typeof import('vant/es')['Space']
VanStepper: typeof import('vant/es')['Stepper']
VanSwipe: typeof import('vant/es')['Swipe']
VanSwipeItem: typeof import('vant/es')['SwipeItem']
@@ -58,7 +58,6 @@ declare module 'vue' {
VanTabbar: typeof import('vant/es')['Tabbar']
VanTabbarItem: typeof import('vant/es')['TabbarItem']
VanTabs: typeof import('vant/es')['Tabs']
VanTag: typeof import('vant/es')['Tag']
YLCascader: typeof import('./src/components/YLCascader.vue')['default']
YLInput: typeof import('./src/components/YLInput.vue')['default']
YLPicker: typeof import('./src/components/YLPicker.vue')['default']