web端:新增工作台;异动管理页面与需求说明更新

Made-with: Cursor
This commit is contained in:
王冕
2026-03-23 09:35:39 +08:00
parent 49d9e3675d
commit d3da3da73b
9 changed files with 706 additions and 104 deletions

View File

@@ -586,7 +586,7 @@ const Component = function () {
}, []);
var handleAdd = useCallback(function () {
message.info('新增异动(原型,联调时跳转新建页或打开表单');
message.info('跳转异动-新增页(原型,表单与编辑页一致,联调时按路由区分新建/编辑');
}, []);
function fmtNowYMDHM() {
@@ -747,7 +747,7 @@ const Component = function () {
}, '结束异动'));
}
if (canShowMovementEdit(r.approvalStatus)) {
nodes.push(React.createElement(Button, { key: 'edit', type: 'link', size: 'small', onClick: function () { message.info('跳转异动-编辑页原型ID' + r.id); } }, '编辑'));
nodes.push(React.createElement(Button, { key: 'edit', type: 'link', size: 'small', onClick: function () { message.info('跳转异动-编辑页(原型,表单与新增页一致ID' + r.id); } }, '编辑'));
}
return React.createElement(React.Fragment, null, nodes);
}