产品-列表按钮数统一

This commit is contained in:
黎永顺 2023-07-07 10:47:45 +08:00
parent ff7ef86172
commit 153be5b7a7
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>;
}