瀏覽代碼

修改buttom样式

qinzhipeng_v 5 年之前
父節點
當前提交
3d00b94591
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/components/dialog/normalDialog.vue

+ 3 - 3
src/components/dialog/normalDialog.vue

@@ -11,9 +11,9 @@
     >
       <slot />
       <span v-show="showFooter" slot="footer" class="dialog-footer">
-        <el-button v-show="buttomType ==='danger'" :type="buttomType" size="mini" @click="confirm()">{{ submitButton }}</el-button>
-        <el-button size="mini" @click="cancel()">取 消</el-button>
-        <el-button v-show="buttomType !=='danger'" :type="buttomType" size="mini" @click="confirm()">{{ submitButton }}</el-button>
+        <el-button v-show="buttomType ==='danger'" :type="buttomType" @click="confirm()">{{ submitButton }}</el-button>
+        <el-button @click="cancel()">取 消</el-button>
+        <el-button v-show="buttomType !=='danger'" :type="buttomType" @click="confirm()">{{ submitButton }}</el-button>
       </span>
     </el-dialog>
   </div>