|
@@ -387,12 +387,13 @@ const handleSave = async (formEl, statuCode) => {
|
|
|
await formEl.validate((valid, fields) => {
|
|
|
if (valid) {
|
|
|
reportInfo.value.issued_status = statuCode;
|
|
|
+ reportInfo.value.field_names = hotData.value;
|
|
|
const tempHead = reportInfo.value.field_names.flatMap(obj =>
|
|
|
Object.values(obj).filter(value => typeof value === "string")
|
|
|
);
|
|
|
let data = {
|
|
|
table_name: reportInfo.value.table_name,
|
|
|
- status: reportInfo.value.issued_status,
|
|
|
+ issued_status: reportInfo.value.issued_status,
|
|
|
period_type: reportInfo.value.period_type,
|
|
|
end_time: reportInfo.value.end_time,
|
|
|
new_fields: tempHead
|