新增待办信息

This commit is contained in:
2025-12-16 22:22:58 +08:00
parent e5b6f7a2a6
commit 5884a3125c
23 changed files with 374 additions and 171 deletions

View File

@@ -58,6 +58,7 @@
const [register, { closeModal }] = useModalInner(async (data: any) => {
if (!data) return;
NoticeList.value = Array.isArray(data) ? data[0] : data;
TodoValue.value = NoticeList.value.extraDesc|| '';
});
const getTypeText = (type: string) => {
@@ -77,8 +78,8 @@
const params = {
id: NoticeList.value?.id ?? '',
extra: TodoValue.value ?? {},
readFlag: true,
extraDesc: TodoValue.value ?? {},
readFlag: '1',
};
try {
const res = await bizListItemSflow(params);
@@ -171,12 +172,11 @@
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
/* 数据库格式展示样式 - 优化字体和间距 */
.db-content {
margin: 0;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
white-space: pre-wrap; /* 保留换行和空格 */
word-break: break-all; /* 防止长文本溢出 */
white-space: pre-wrap;
word-break: break-all;
color: #333;
}