release/2.19.1.2503.01-业务线个税
This commit is contained in:
parent
ec76b9cdca
commit
357b78ce88
|
|
@ -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?.["操作日志"],
|
||||
|
|
|
|||
Loading…
Reference in New Issue