商品管理: 完善选择商品分类

This commit is contained in:
puhui999
2023-04-26 17:53:17 +08:00
parent 5c52c17227
commit ab1685a741
4 changed files with 15 additions and 8 deletions

View File

@ -49,7 +49,7 @@ const DescriptionRef = ref<ComponentRef<typeof DescriptionForm>>() // 商品详
const OtherSettingsRef = ref<ComponentRef<typeof OtherSettingsForm>>() // 其他设置Ref
const formData = ref<SpuType>({
name: '', // 商品名称
categoryId: 0, // 商品分类
categoryId: undefined, // 商品分类
keyword: '', // 关键字
unit: '', // 单位
picUrl: '', // 商品封面图

View File

@ -10,7 +10,7 @@
<el-form-item label="商品分类" prop="categoryId">
<el-tree-select
v-model="formData.categoryId"
:data="[]"
:data="categoryList"
:props="defaultProps"
check-strictly
node-key="id"
@ -101,10 +101,11 @@
</template>
<script lang="ts" name="ProductManagementBasicInfoForm" setup>
import { PropType } from 'vue'
import { defaultProps } from '@/utils/tree'
import type { SpuType } from '@/api/mall/product/management/type'
import { UploadImg, UploadImgs } from '@/components/UploadFile'
import { copyValueToTarget } from '@/utils/object'
import * as ProductCategoryApi from '@/api/mall/product/category'
import { defaultProps, handleTree } from '@/utils/tree'
const message = useMessage() // 消息弹窗
const props = defineProps({
@ -117,7 +118,7 @@ const props = defineProps({
const ProductManagementBasicInfoRef = ref() // 表单Ref
const formData = ref<SpuType>({
name: '', // 商品名称
categoryId: 155415, // 商品分类
categoryId: undefined, // 商品分类
keyword: '', // 关键字
unit: '', // 单位
picUrl: '', // 商品封面图
@ -186,4 +187,10 @@ const changeSubCommissionType = (subCommissionType) => {
const confirm = () => {}
// 添加规格
const addRule = () => {}
const categoryList = ref() // 分类树
onMounted(async () => {
// 获得分类树
const data = await ProductCategoryApi.getCategoryList({})
categoryList.value = handleTree(data, 'id', 'parentId')
})
</script>

View File

@ -92,9 +92,9 @@ const onChangeGroup = () => {
const OtherSettingsFormRef = ref() // 表单Ref
// 表单数据
const formData = ref<SpuType>({
sort: 12, // 商品排序
giveIntegral: 666, // 赠送积分
virtualSalesCount: 565656, // 虚拟销量
sort: 1, // 商品排序
giveIntegral: 1, // 赠送积分
virtualSalesCount: 1, // 虚拟销量
recommendHot: false, // 是否热卖
recommendBenefit: false, // 是否优惠
recommendBest: false, // 是否精品