修复已知问题

This commit is contained in:
2024-09-27 14:17:12 +08:00
parent c0328fa23e
commit 5e56c31300
299 changed files with 17512 additions and 987 deletions

View File

@@ -83,6 +83,7 @@
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
import { FormInstance } from 'ant-design-vue/es/form';
import { SpecValue } from '@/api/shop/specValue/model';
import { getMerchantId } from '@/utils/merchant';
// 是否是修改
const isUpdate = ref(false);
@@ -196,6 +197,7 @@
}
const formData = {
...form,
merchantId: getMerchantId(),
specValue: JSON.stringify(spec.value)
};
const saveOrUpdate = isUpdate.value ? updateSpec : addSpec;