li.shaoyi 3 年之前
父節點
當前提交
172eb0d11b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/common/components/btnList/interface.ts

+ 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 名字
 }