Browse Source

修改buttom样式

qinzhipeng_v 5 years ago
parent
commit
3d00b94591
1 changed files with 3 additions and 3 deletions
  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>