feat:【antd】【mall】diy-editor 初始化(暂时不可用,保证界面先有。。。)

This commit is contained in:
YunaiV
2025-10-25 23:18:55 +08:00
parent 5e259eb685
commit db1b3be27a
113 changed files with 7955 additions and 609 deletions

View File

@@ -0,0 +1,47 @@
<script lang="ts" setup>
// TODO @AI改成 El 标签风格,而不是 el-
// TODO @AI一些 modal 是否使用 Modal 组件,而不是 el-modal
import { ref, watch } from 'vue';
import AppLinkSelectDialog from './app-link-select-dialog.vue';
/** APP 链接输入框 */
defineOptions({ name: 'AppLinkInput' });
// 定义属性
const props = defineProps({
modelValue: {
type: String,
default: '',
}, // 当前选中的链接
});
const emit = defineEmits<{
'update:modelValue': [link: string];
}>();
const dialogRef = ref(); // 选择对话框
const appLink = ref(''); // 当前的链接
const handleOpenDialog = () => dialogRef.value?.open(appLink.value); // 处理打开对话框
const handleLinkSelected = (link: string) => (appLink.value = link); // 处理 APP 链接选中
watch(
() => props.modelValue,
() => (appLink.value = props.modelValue),
{ immediate: true },
);
watch(
() => appLink.value,
() => emit('update:modelValue', appLink.value),
);
</script>
<template>
<InputGroup compact>
<Input v-model:value="appLink" placeholder="输入或选择链接" class="flex-1" />
<Button @click="handleOpenDialog">选择</Button>
</InputGroup>
<AppLinkSelectDialog ref="dialogRef" @change="handleLinkSelected" />
</template>