123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- <template>
- <el-form ref="ProductManagementBasicInfoRef" :model="formData" :rules="rules" label-width="120px">
- <el-row>
- <el-col :span="12">
- <el-form-item label="商品名称" prop="name">
- <el-input v-model="formData.name" placeholder="请输入商品名称" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="商品分类" prop="categoryId">
- <el-tree-select
- v-model="formData.categoryId"
- :data="categoryList"
- :props="defaultProps"
- check-strictly
- node-key="id"
- placeholder="请选择商品分类"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="商品关键字" prop="keyword">
- <el-input v-model="formData.keyword" placeholder="请输入商品关键字" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="单位" prop="unit">
- <el-input v-model="formData.unit" placeholder="请输入单位" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="商品简介" prop="introduction">
- <el-input
- v-model="formData.introduction"
- :rows="3"
- placeholder="请输入商品简介"
- type="textarea"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="商品封面图" prop="picUrl">
- <UploadImg v-model="formData.picUrl" height="80px" />
- </el-form-item>
- </el-col>
- <el-col :span="24">
- <el-form-item label="商品轮播图" prop="sliderPicUrls">
- <UploadImgs v-model="formData.sliderPicUrls" />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="运费模板" prop="deliveryTemplateId">
- <el-select v-model="formData.deliveryTemplateId" placeholder="请选择" style="width: 100%">
- <el-option v-for="item in []" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-button class="ml-20px">运费模板</el-button>
- </el-col>
- <el-col :span="12">
- <el-form-item label="商品规格" props="specType">
- <el-radio-group v-model="formData.specType" @change="changeSpecType(formData.specType)">
- <el-radio :label="false" class="radio">单规格</el-radio>
- <el-radio :label="true">多规格</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="分销类型" props="subCommissionType">
- <el-radio-group v-model="formData.subCommissionType" @change="changeSubCommissionType">
- <el-radio :label="false">默认设置</el-radio>
- <el-radio :label="true" class="radio">自行设置</el-radio>
- </el-radio-group>
- </el-form-item>
- </el-col>
- <!-- 多规格添加-->
- <el-col :span="24">
- <el-form-item v-if="formData.specType" label="商品属性" prop="">
- <el-button class="mr-15px" @click="AttributesAddFormRef.open()">添加规格</el-button>
- <ProductAttributes :attribute-data="attributeList" />
- </el-form-item>
- <el-form-item>
- <SkuList :sku-data="formData.skus" :subCommissionType="formData.subCommissionType" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <ProductAttributesAddForm ref="AttributesAddFormRef" @success="addAttribute" />
- </template>
- <script lang="ts" name="ProductManagementBasicInfoForm" setup>
- import { PropType } from 'vue'
- import type { SpuType } from '@/api/mall/product/management/type/spuType'
- import { UploadImg, UploadImgs } from '@/components/UploadFile'
- import SkuList from './SkuList/index.vue'
- import ProductAttributesAddForm from './ProductAttributesAddForm.vue'
- import ProductAttributes from './ProductAttributes.vue'
- import { copyValueToTarget } from '@/utils/object'
- // 业务Api
- import * as ProductCategoryApi from '@/api/mall/product/category'
- import * as PropertyApi from '@/api/mall/product/property'
- import { defaultProps, handleTree } from '@/utils/tree'
- import { ElInput } from 'element-plus'
- const message = useMessage() // 消息弹窗
- const props = defineProps({
- propFormData: {
- type: Object as PropType<SpuType>,
- default: () => {}
- }
- })
- const AttributesAddFormRef = ref() // 添加商品属性表单
- const ProductManagementBasicInfoRef = ref() // 表单Ref
- // 属性列表
- const attributeList = ref([
- {
- id: 1,
- name: '颜色',
- attributeValues: [{ id: 1, name: '白色' }]
- }
- ])
- const addAttribute = async (propertyId: number) => {
- const data = await PropertyApi.getPropertyValuePage({ id: propertyId })
- console.log(data)
- }
- const formData = reactive<SpuType>({
- name: '', // 商品名称
- categoryId: undefined, // 商品分类
- keyword: '', // 关键字
- unit: '', // 单位
- picUrl: '', // 商品封面图
- sliderPicUrls: [], // 商品轮播图
- introduction: '', // 商品简介
- deliveryTemplateId: 1, // 运费模版
- selectRule: '', // 选择规则 TODO 暂定
- specType: false, // 商品规格
- subCommissionType: false, // 分销类型
- skus: [
- {
- /**
- * 商品价格,单位:分
- */
- price: 0,
- /**
- * 市场价,单位:分
- */
- marketPrice: 0,
- /**
- * 成本价,单位:分
- */
- costPrice: 0,
- /**
- * 商品条码
- */
- barCode: '',
- /**
- * 图片地址
- */
- picUrl: '',
- /**
- * 库存
- */
- stock: 0,
- /**
- * 商品重量,单位:kg 千克
- */
- weight: 0,
- /**
- * 商品体积,单位:m^3 平米
- */
- volume: 0
- }
- ]
- })
- const rules = reactive({
- name: [required],
- categoryId: [required],
- keyword: [required],
- unit: [required],
- introduction: [required],
- picUrl: [required],
- sliderPicUrls: [required]
- // deliveryTemplateId: [required],
- // specType: [required],
- // subCommissionType: [required],
- })
- /**
- * 将传进来的值赋值给formData
- */
- watch(
- () => props.propFormData,
- (data) => {
- if (!data) return
- copyValueToTarget(formData, data)
- },
- {
- deep: true,
- immediate: true
- }
- )
- const emit = defineEmits(['update:activeName'])
- /**
- * 表单校验
- */
- const validate = async () => {
- // 校验表单
- if (!ProductManagementBasicInfoRef) return
- return await unref(ProductManagementBasicInfoRef).validate((valid) => {
- if (!valid) {
- message.warning('商品信息未完善!!')
- emit('update:activeName', 'basicInfo')
- // 目的截断之后的校验
- throw new Error('商品信息未完善!!')
- } else {
- // 校验通过更新数据
- Object.assign(props.propFormData, formData)
- }
- })
- }
- defineExpose({ validate })
- // 选择规格
- const changeSpecType = (specType) => {
- console.log(specType)
- }
- // 分销类型
- const changeSubCommissionType = () => {
- // 默认为零,类型切换后也要重置为零
- for (const item of formData.skus) {
- item.subCommissionFirstPrice = 0
- item.subCommissionSecondPrice = 0
- }
- }
- // 选择属性确认
- // const confirm = () => {}
- // 添加规格
- // const addRule = () => {}
- const categoryList = ref() // 分类树
- onMounted(async () => {
- // 获得分类树
- const data = await ProductCategoryApi.getCategoryList({})
- categoryList.value = handleTree(data, 'id', 'parentId')
- })
- </script>
|