📖 MALL:商品编辑 => 简化 InfoForm 基础设置

This commit is contained in:
YunaiV
2024-01-11 09:42:23 +08:00
parent 2c76d3aeee
commit efe702d383
5 changed files with 35 additions and 42 deletions

View File

@ -177,7 +177,7 @@ export const fileSizeFormatter = (row, column, cellValue) => {
* @param target 目标对象
* @param source 源对象
*/
export const copyValueToTarget = (target, source) => {
export const copyValueToTarget = (target: any, source: any) => {
const newObj = Object.assign({}, target, source)
// 删除多余属性
Object.keys(newObj).forEach((key) => {