diff --git a/packages/button/index.tsx b/packages/button/index.tsx
index 68128e6a2..eea20c878 100644
--- a/packages/button/index.tsx
+++ b/packages/button/index.tsx
@@ -7,10 +7,14 @@ import Loading from '../loading';
import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/use/sfc';
+export type ButtonType = 'default' | 'primary' | 'info' | 'warning' | 'danger';
+
+export type ButtonSize = 'large' | 'normal' | 'small' | 'mini';
+
export type ButtonProps = RouteProps & {
tag: keyof HTMLElementTagNameMap | string;
- type: 'default' | 'primary' | 'info' | 'warning' | 'danger';
- size: 'large' | 'normal' | 'small' | 'mini';
+ type: ButtonType;
+ size: ButtonSize;
text?: string;
block?: boolean;
plain?: boolean;
diff --git a/packages/submit-bar/en-US.md b/packages/submit-bar/en-US.md
index 217ddff60..decd37169 100644
--- a/packages/submit-bar/en-US.md
+++ b/packages/submit-bar/en-US.md
@@ -72,6 +72,7 @@ Use slot to add custom contents.
| disabled | Whether to disable button | `Boolean` | `false` |
| loading | Whether to show loading icon | `Boolean` | `false` |
| currency | Currency symbol | `String` | `¥` |
+| decimal-length | Number of digits to appear after the decimal point | `Number` | `2` |
### Event
diff --git a/packages/submit-bar/index.tsx b/packages/submit-bar/index.tsx
index 1b8bc9541..404a13e72 100644
--- a/packages/submit-bar/index.tsx
+++ b/packages/submit-bar/index.tsx
@@ -1,6 +1,6 @@
import { use } from '../utils';
import { emit, inherit } from '../utils/functional';
-import Button from '../button';
+import Button, { ButtonType } from '../button';
// Types
import { CreateElement, RenderContext } from 'vue/types';
@@ -13,8 +13,9 @@ export type SubmitBarProps = {
loading?: boolean;
currency: string;
disabled?: boolean;
- buttonType: string;
+ buttonType: ButtonType;
buttonText?: string;
+ decimalLength: number;
};
export type SubmitBarSlots = DefaultSlots & {
@@ -49,7 +50,7 @@ function SubmitBar(
{props.label || t('label')},
{`${props.currency} ${(
(price as number) / 100
- ).toFixed(2)}`}
+ ).toFixed(props.decimalLength)}`}
]}