89 lines
2.2 KiB
Vue
89 lines
2.2 KiB
Vue
<template>
|
|
<div class="link-picker flex-1" @click="!disabled && popupRef?.open()">
|
|
<el-input :model-value="getLink" placeholder="请选择链接" readonly :disabled="disabled">
|
|
<template #suffix>
|
|
<icon v-if="!modelValue?.path" name="el-icon-ArrowRight" />
|
|
<icon
|
|
v-else
|
|
name="el-icon-Close"
|
|
@click.stop="!disabled && emit('update:modelValue', {})"
|
|
/>
|
|
</template>
|
|
</el-input>
|
|
<popup ref="popupRef" width="1050px" title="链接选择" @confirm="handleConfirm">
|
|
<link-content v-model="activeLink" />
|
|
</popup>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import Popup from '@/components/popup/index.vue'
|
|
|
|
import { type Link, LinkTypeEnum } from '.'
|
|
import LinkContent from './index.vue'
|
|
|
|
const props = defineProps({
|
|
modelValue: {
|
|
type: Object
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
const emit = defineEmits<{
|
|
(event: 'update:modelValue', value: any): void
|
|
}>()
|
|
|
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
const activeLink = ref<Link>({ path: '', type: LinkTypeEnum.SHOP_PAGES })
|
|
const handleConfirm = () => {
|
|
emit('update:modelValue', activeLink.value)
|
|
}
|
|
|
|
const getLink = computed(() => {
|
|
switch (props.modelValue?.type) {
|
|
case LinkTypeEnum.SHOP_PAGES:
|
|
return props.modelValue.name
|
|
case LinkTypeEnum.ARTICLE_LIST:
|
|
return props.modelValue.name
|
|
case LinkTypeEnum.CUSTOM_LINK:
|
|
return props.modelValue.query?.url
|
|
default:
|
|
return props.modelValue?.name
|
|
}
|
|
})
|
|
watch(
|
|
() => props.modelValue,
|
|
(value) => {
|
|
if (value?.type) {
|
|
activeLink.value = value as Link
|
|
}
|
|
},
|
|
{
|
|
immediate: true
|
|
}
|
|
)
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.link-picker {
|
|
:deep(.el-input) {
|
|
&.is-disabled {
|
|
.el-input__inner {
|
|
cursor: not-allowed;
|
|
}
|
|
.el-input__suffix {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
.el-input__inner {
|
|
cursor: pointer;
|
|
}
|
|
.el-input__suffix {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
</style>
|