商品管理: fix:根据商品属性动态生成表格值

This commit is contained in:
puhui999
2023-04-30 02:26:35 +08:00
parent 7a64eb5198
commit 538d1e0b6c
5 changed files with 140 additions and 36 deletions

View File

@@ -49,10 +49,10 @@ const inputVisible = computed(() => (index) => {
if (attributeIndex.value === index) return true
})
const InputRef = ref() //标签输入框Ref
const attributeList = ref([])
const attributeList = ref([]) // 商品属性列表
const props = defineProps({
attributeData: {
type: Object,
type: Array,
default: () => {}
}
})