Skip to content

Commit

Permalink
Update standard_new.amis.js
Browse files Browse the repository at this point in the history
  • Loading branch information
baozhoutao committed Dec 26, 2024
1 parent ad94edc commit 2218ba9
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: [email protected]
* @Date: 2022-11-01 15:51:00
* @LastEditors: [email protected]
* @LastEditTime: 2024-02-18 18:37:35
* @LastEditTime: 2024-12-26 20:28:43
* @Description:
*/
import { i18next } from "../i18n";
Expand Down Expand Up @@ -163,20 +163,23 @@ export const getSchema = async (uiSchema, ctx) => {
{
type: 'button',
actionType: 'cancel',
label: i18next.t('frontend_form_cancel')
label: i18next.t('frontend_form_cancel'),
className: 'form-btn-cancel'
},
{
type: 'button',
label: i18next.t('frontend_form_save_and_new'),
actionType: 'confirm',
close: false,
id: "confirmAndNew"
id: "confirmAndNew",
className: 'form-btn-save_and_new'
},
{
type: 'button',
actionType: 'confirm',
label: i18next.t('frontend_form_save'),
primary: true
primary: true,
className: 'form-btn-save'
},
]
}
Expand Down

0 comments on commit 2218ba9

Please sign in to comment.