【功能优化】添加商品属性时允许选择已有的属性值
parent
e7c9ca0c5b
commit
bcb4fc3034
|
@ -65,6 +65,11 @@ export const getPropertyPage = (params: PageParam) => {
|
||||||
return request.get({ url: '/product/property/page', params })
|
return request.get({ url: '/product/property/page', params })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得属性项精简列表
|
||||||
|
export const getPropertySimpleList = (): Promise<PropertyVO[]> => {
|
||||||
|
return request.get({ url: '/product/property/simple-list' })
|
||||||
|
}
|
||||||
|
|
||||||
// ------------------------ 属性值 -------------------
|
// ------------------------ 属性值 -------------------
|
||||||
|
|
||||||
// 获得属性值分页
|
// 获得属性值分页
|
||||||
|
|
|
@ -5,7 +5,7 @@ interface PropertyAndValues {
|
||||||
id: number
|
id: number
|
||||||
name: string
|
name: string
|
||||||
values?: PropertyAndValues[]
|
values?: PropertyAndValues[]
|
||||||
propertyOpts?: PropertyAndValues[]
|
propertyOpts?: PropertyAndValues[] // TODO @GoldenZqqq:建议直接复用 values;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface RuleConfig {
|
interface RuleConfig {
|
||||||
|
|
|
@ -122,6 +122,7 @@ const emit = defineEmits(['success']) // 定义 success 事件,用于操作成
|
||||||
const handleInputConfirm = async (index: number, propertyId: number) => {
|
const handleInputConfirm = async (index: number, propertyId: number) => {
|
||||||
if (inputValue.value) {
|
if (inputValue.value) {
|
||||||
// 重复添加校验
|
// 重复添加校验
|
||||||
|
// TODO @芋艿:需要测试下
|
||||||
if (isNumber(inputValue.value)) {
|
if (isNumber(inputValue.value)) {
|
||||||
if (attributeList.value[index].values?.some((item) => item.id === inputValue.value)) {
|
if (attributeList.value[index].values?.some((item) => item.id === inputValue.value)) {
|
||||||
message.warning('已存在相同属性值,请重试')
|
message.warning('已存在相同属性值,请重试')
|
||||||
|
|
|
@ -16,11 +16,11 @@
|
||||||
allow-create
|
allow-create
|
||||||
default-first-option
|
default-first-option
|
||||||
:reserve-keyword="false"
|
:reserve-keyword="false"
|
||||||
placeholder="请选择属性名称"
|
placeholder="请选择属性名称。如果不存在,可手动输入选择"
|
||||||
style="width: 240px"
|
class="!w-360px"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in attrOption"
|
v-for="item in attributeOptions"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
:label="item.name"
|
:label="item.name"
|
||||||
:value="item.name"
|
:value="item.name"
|
||||||
|
@ -53,7 +53,7 @@ const formRules = reactive({
|
||||||
})
|
})
|
||||||
const formRef = ref() // 表单 Ref
|
const formRef = ref() // 表单 Ref
|
||||||
const attributeList = ref([]) // 商品属性列表
|
const attributeList = ref([]) // 商品属性列表
|
||||||
const attrOption = ref([]) // 属性名称下拉框
|
const attributeOptions = ref([] as PropertyApi.PropertyVO[]) // 商品属性名称下拉框
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
propertyList: {
|
propertyList: {
|
||||||
type: Array,
|
type: Array,
|
||||||
|
@ -76,13 +76,32 @@ watch(
|
||||||
/** 打开弹窗 */
|
/** 打开弹窗 */
|
||||||
const open = async () => {
|
const open = async () => {
|
||||||
dialogVisible.value = true
|
dialogVisible.value = true
|
||||||
getAttrOption()
|
|
||||||
resetForm()
|
resetForm()
|
||||||
|
// 加载列表
|
||||||
|
await getAttributeOptions()
|
||||||
}
|
}
|
||||||
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||||
|
|
||||||
/** 提交表单 */
|
/** 提交表单 */
|
||||||
const submitForm = async () => {
|
const submitForm = async () => {
|
||||||
|
// 情况一:如果是已存在的属性,直接结束,不提交表单新增
|
||||||
|
for (const option of attributeOptions.value) {
|
||||||
|
if (option.name === formData.value.name) {
|
||||||
|
// 添加到属性列表
|
||||||
|
attributeList.value.push({
|
||||||
|
id: option.id,
|
||||||
|
...formData.value,
|
||||||
|
values: []
|
||||||
|
})
|
||||||
|
// 触发属性列表的加载
|
||||||
|
emit('success', option.id, option.id)
|
||||||
|
// 关闭弹窗
|
||||||
|
dialogVisible.value = false
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 情况二:如果是不存在的属性,则需要执行新增
|
||||||
// 校验表单
|
// 校验表单
|
||||||
if (!formRef) return
|
if (!formRef) return
|
||||||
const valid = await formRef.value.validate()
|
const valid = await formRef.value.validate()
|
||||||
|
@ -98,15 +117,7 @@ const submitForm = async () => {
|
||||||
...formData.value,
|
...formData.value,
|
||||||
values: []
|
values: []
|
||||||
})
|
})
|
||||||
// 判断最终提交的属性名称是否是选择的 自己手动输入的属性名称不执行emit
|
// 关闭弹窗
|
||||||
for (const element of attrOption.value) {
|
|
||||||
if (element.name === formData.value.name) {
|
|
||||||
emit('success', propertyId, element.id)
|
|
||||||
message.success(t('common.createSuccess'))
|
|
||||||
dialogVisible.value = false
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
message.success(t('common.createSuccess'))
|
message.success(t('common.createSuccess'))
|
||||||
dialogVisible.value = false
|
dialogVisible.value = false
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -123,12 +134,10 @@ const resetForm = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 获取商品属性下拉选项 */
|
/** 获取商品属性下拉选项 */
|
||||||
const getAttrOption = async () => {
|
const getAttributeOptions = async () => {
|
||||||
formLoading.value = true
|
formLoading.value = true
|
||||||
try {
|
try {
|
||||||
// TODO @芋艿:需要增加一个全列表接口
|
attributeOptions.value = await PropertyApi.getPropertySimpleList()
|
||||||
const data = await PropertyApi.getPropertyPage({ pageNo: 1, pageSize: 100 })
|
|
||||||
attrOption.value = data.list
|
|
||||||
} finally {
|
} finally {
|
||||||
formLoading.value = false
|
formLoading.value = false
|
||||||
}
|
}
|
||||||
|
|
|
@ -197,6 +197,7 @@ const generateSkus = (propertyList: any[]) => {
|
||||||
skuListRef.value.generateTableData(propertyList)
|
skuListRef.value.generateTableData(propertyList)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO @GoldenZqqq:这里不建议使用 success 去刷新。而是改成点击【属性值】的【添加】后,进行加载列表。后端提供了 getPropertyValueSimpleList 接口哈。
|
||||||
/* 获取属性值列表 */
|
/* 获取属性值列表 */
|
||||||
const getPropertyValueList = async (id, propertyId) => {
|
const getPropertyValueList = async (id, propertyId) => {
|
||||||
formLoading.value = true
|
formLoading.value = true
|
||||||
|
|
Loading…
Reference in New Issue