qinzhipeng_v 5 жил өмнө
parent
commit
3d00b94591

+ 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>