feat: (web-ele)新增颜色输入框组件并优化图片上传组件

- 新增 ColorInput 组件用于颜色选择
- 重构 ImageUpload 组件,增加编辑和删除功能
- 更新 DIY 编辑器相关组件,优化用户体验
- 添加商城 H5 预览地址配置
- 优化导航栏单元格属性配置
This commit is contained in:
lrl
2025-08-05 15:32:12 +08:00
parent 1f155fa7c5
commit e7fc44715b
64 changed files with 2248 additions and 1165 deletions

View File

@@ -1,12 +1,17 @@
<script lang="ts" setup>
import { propTypes } from '@/utils/propTypes';
import { ref, watch } from 'vue';
import AppLinkSelectDialog from './app-link-select-dialog.vue';
// APP 链接输入框
defineOptions({ name: 'AppLinkInput' });
// 定义属性
const props = defineProps({
// 当前选中的链接
modelValue: propTypes.string.def(''),
modelValue: {
type: String,
default: '',
},
});
// setter
const emit = defineEmits<{