release/2.19.1.2503.01-业务线个税

This commit is contained in:
lys 2025-12-04 13:25:29 +08:00
parent ec76b9cdca
commit 357b78ce88
1 changed files with 14 additions and 1 deletions

View File

@ -89,6 +89,13 @@ export function renderCols(initialState: any[], type: string, i18n?: AnyObject,
<Button type="link" onClick={() => postMessageToParent("VIEW", record)}>
{i18n?.["查看"]}
</Button>
{[
..._.map(qzOpts, (o) => (
<Button type="link" onClick={() => postMessageToParent(o.key, record)}>
{o.label}
</Button>
))
]}
<Dropdown
menu={{
items: [
@ -131,10 +138,16 @@ export function renderCols(initialState: any[], type: string, i18n?: AnyObject,
{i18n?.["重新核算"]}
</Button>
)}
{[
..._.map(qzOpts, (o) => (
<Button type="link" onClick={() => postMessageToParent(o.key, record)}>
{o.label}
</Button>
))
]}
<Dropdown
menu={{
items: [
..._.map(qzOpts, (o) => ({ ...o, onClick: () => postMessageToParent(o.key, record) })),
{
key: "Log",
label: i18n?.["操作日志"],