Merge branch 'feature/230701-列表上面操作按钮显示两个' into develop

This commit is contained in:
黎永顺 2023-07-07 11:03:03 +08:00
commit b14e889d57
1 changed files with 4 additions and 4 deletions

View File

@ -149,7 +149,7 @@ export default class StandingBook extends React.Component {
{billStatus === "0" && (
<a
href="javascript:void(0);"
style={{ padding: "0 12px" }}
style={{ marginRight: 10 }}
onClick={() => this.handleGoDetail(billMonth, "", r.paymentOrganizationId, creator)}>
核算
</a>
@ -157,7 +157,7 @@ export default class StandingBook extends React.Component {
{billStatus === "0" && (
<a
href="javascript:void(0);"
style={{ padding: "0 12px" }}
style={{ marginRight: 10 }}
onClick={() => this.handleOperate({
key: "archive",
billMonth,
@ -170,7 +170,7 @@ export default class StandingBook extends React.Component {
{billStatus === "1" && (
<a
href="javascript:void(0);"
style={{ padding: "0 12px" }}
style={{ marginRight: 10 }}
onClick={() => this.handleOperate({
key: "view",
billMonth,
@ -499,7 +499,7 @@ export default class StandingBook extends React.Component {
if (item.dataIndex !== "operate" && item.dataIndex !== "billStatus") {
return {
...item,
width:150,
width: 150,
render: (text) => {
return <span className="ellipsis" title={text}>{text}</span>;
}