商品管理: 完成商品属性批量添加
This commit is contained in:
parent
ab1120b0ff
commit
64f6f67ddd
@ -68,7 +68,9 @@
|
|||||||
</template>
|
</template>
|
||||||
<el-table-column v-if="formData.specType" align="center" fixed="right" label="操作" width="80">
|
<el-table-column v-if="formData.specType" align="center" fixed="right" label="操作" width="80">
|
||||||
<template #default>
|
<template #default>
|
||||||
<el-button v-if="isBatch" link size="small" type="primary">批量添加</el-button>
|
<el-button v-if="isBatch" link size="small" type="primary" @click="batchAdd"
|
||||||
|
>批量添加
|
||||||
|
</el-button>
|
||||||
<el-button v-else link size="small" type="primary">删除</el-button>
|
<el-button v-else link size="small" type="primary">删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -81,6 +83,7 @@ import { PropType } from 'vue'
|
|||||||
import { SpuType } from '@/api/mall/product/management/type/spuType'
|
import { SpuType } from '@/api/mall/product/management/type/spuType'
|
||||||
import { propTypes } from '@/utils/propTypes'
|
import { propTypes } from '@/utils/propTypes'
|
||||||
import { SkuType } from '@/api/mall/product/management/type/skuType'
|
import { SkuType } from '@/api/mall/product/management/type/skuType'
|
||||||
|
import { copyValueToTarget } from '@/utils/object'
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
propFormData: {
|
propFormData: {
|
||||||
@ -131,6 +134,12 @@ const SkuData = ref<SkuType[]>([
|
|||||||
volume: 0
|
volume: 0
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
/** 批量添加 */
|
||||||
|
const batchAdd = () => {
|
||||||
|
formData.value.skus.forEach((item) => {
|
||||||
|
copyValueToTarget(item, SkuData.value[0])
|
||||||
|
})
|
||||||
|
}
|
||||||
const tableHeaderList = ref<{ prop: string; label: string }[]>([])
|
const tableHeaderList = ref<{ prop: string; label: string }[]>([])
|
||||||
/**
|
/**
|
||||||
* 将传进来的值赋值给SkuData
|
* 将传进来的值赋值给SkuData
|
||||||
@ -209,8 +218,21 @@ watch(
|
|||||||
(data) => {
|
(data) => {
|
||||||
// 如果不是多规格则结束
|
// 如果不是多规格则结束
|
||||||
if (!formData.value.specType) return
|
if (!formData.value.specType) return
|
||||||
// 如果当前组件作为批量添加数据使用则结束
|
// 如果当前组件作为批量添加数据使用则重置表数据
|
||||||
if (props.isBatch) return
|
if (props.isBatch) {
|
||||||
|
SkuData.value = [
|
||||||
|
{
|
||||||
|
price: 0,
|
||||||
|
marketPrice: 0,
|
||||||
|
costPrice: 0,
|
||||||
|
barCode: '',
|
||||||
|
picUrl: '',
|
||||||
|
stock: 0,
|
||||||
|
weight: 0,
|
||||||
|
volume: 0
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
// 判断代理对象是否为空
|
// 判断代理对象是否为空
|
||||||
if (JSON.stringify(data) === '[]') return
|
if (JSON.stringify(data) === '[]') return
|
||||||
// 重置表头
|
// 重置表头
|
||||||
|
Loading…
Reference in New Issue
Block a user