This commit is contained in:
2026-01-20 18:48:58 +08:00
20 changed files with 1335 additions and 475 deletions

View File

@ -74,7 +74,9 @@
// 根据行唯一ID查询行数据并设置表单数据 【编辑】
async function setFormDataFromId(rowId, skipUpdate) {
try {
const record = await getXjrNotice(rowId);
let record = await getXjrNotice(rowId);
record.status = ''+record.status
record.publisherType = ''+record.publisherType
if (skipUpdate) {
return record;
}