1) 修复立减金时间问题
This commit is contained in:
parent
dfbd7cd67a
commit
f9c4b9f3a8
|
@ -47,7 +47,6 @@ const UseGoodsScopePop = forwardRef((props, ref) => {
|
||||||
} else {
|
} else {
|
||||||
new_tableData.push(form_model);
|
new_tableData.push(form_model);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new_tableData;
|
return new_tableData;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -69,7 +68,7 @@ const UseGoodsScopePop = forwardRef((props, ref) => {
|
||||||
); // 库存数量
|
); // 库存数量
|
||||||
table_obj.channel_activity_id = form_model.channel_activity_id; // 批次号
|
table_obj.channel_activity_id = form_model.channel_activity_id; // 批次号
|
||||||
table_obj.all_budget = Number(form_model.all_budget); // 总预算
|
table_obj.all_budget = Number(form_model.all_budget); // 总预算
|
||||||
table_obj.effectDate = `${form_model.time_limit.effect_time.end_time} 至 ${form_model.time_limit.effect_time.start_time}`; // 有效时间段
|
table_obj.effectDate = `${form_model.time_limit.effect_time.start_time} 至 ${form_model.time_limit.effect_time.end_time}`; // 有效时间段
|
||||||
table_obj.create_time = form_model.create_time; // 创建时间
|
table_obj.create_time = form_model.create_time; // 创建时间
|
||||||
|
|
||||||
if (product_title === "编辑立减金") {
|
if (product_title === "编辑立减金") {
|
||||||
|
|
Loading…
Reference in New Issue