li.shaoyi 3 rokov pred
rodič
commit
172eb0d11b

+ 2 - 2
src/common/components/btnList/interface.ts

@@ -1,7 +1,7 @@
 export type BtnClassName = 'btnDeafault' | 'btnPrimary' | 'btnDanger' | 'operBtn'
 export interface BtnListType {
-    lable?: string;  // 按钮名字
+    lable: string;  // 按钮名字
     code: string;   //
     callback?: Function;
-    className?: BtnClassName    // 按钮 class 名字
+    className: BtnClassName    // 按钮 class 名字
 }