Files
ipms-sjy-ui/src/views/mall/product/management/components/ProductAttributes.vue

90 lines
2.3 KiB
Vue
Raw Normal View History

2023-04-29 21:39:25 +08:00
<template>
<el-col v-for="(item, index) in attributeList" :key="index">
<div>
<el-text class="mx-1">属性名</el-text>
<el-text class="mx-1">{{ item.name }}</el-text>
</div>
<div>
<el-text class="mx-1">属性值</el-text>
<el-tag
v-for="(value, valueIndex) in item.values"
2023-04-29 21:39:25 +08:00
:key="value.name"
:disable-transitions="false"
class="mx-1"
closable
@close="handleClose(index, valueIndex)"
>
{{ value.name }}
</el-tag>
<el-input
v-show="inputVisible(index)"
2023-04-29 21:39:25 +08:00
ref="InputRef"
v-model="inputValue"
class="!w-20"
size="small"
@blur="handleInputConfirm(index)"
@keyup.enter="handleInputConfirm(index)"
/>
<el-button
v-show="!inputVisible(index)"
class="button-new-tag ml-1"
size="small"
@click="showInput(index)"
>
2023-04-29 21:39:25 +08:00
+ 添加
</el-button>
</div>
<el-divider class="my-10px" />
</el-col>
</template>
<script lang="ts" name="ProductAttributes" setup>
import { ElInput } from 'element-plus'
const inputValue = ref('') // 输入框值
const attributeIndex = ref<number | null>(null) // 获取焦点时记录当前属性项的index
// 输入框显隐控制
const inputVisible = computed(() => (index) => {
if (attributeIndex.value === null) return false
if (attributeIndex.value === index) return true
})
const InputRef = ref() //标签输入框Ref
2023-04-29 21:39:25 +08:00
const attributeList = ref([])
const props = defineProps({
attributeData: {
type: Object,
default: () => {}
}
})
watch(
() => props.attributeData,
(data) => {
if (!data) return
attributeList.value = data
},
{
deep: true,
immediate: true
}
)
/** 删除标签 tagValue 标签值*/
const handleClose = (index, valueIndex) => {
attributeList.value[index].values?.splice(valueIndex, 1)
2023-04-29 21:39:25 +08:00
}
/** 显示输入框并获取焦点 */
const showInput = async (index) => {
attributeIndex.value = index
// 因为组件在ref中所以需要用索引获取对应的Ref
InputRef.value[index]!.input!.focus()
2023-04-29 21:39:25 +08:00
}
/** 输入框失去焦点或点击回车时触发 */
const handleInputConfirm = (index) => {
if (inputValue.value) {
attributeList.value[index].values.push({ name: inputValue.value })
2023-04-29 21:39:25 +08:00
}
attributeIndex.value = null
2023-04-29 21:39:25 +08:00
inputValue.value = ''
}
</script>