Commit ffdb5001e041cfa61768ff66578c0468ae8a0805

Authored by 梁灏
1 parent fabc2496

update Alert Icon

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
src/components/alert/alert.vue
... ... @@ -80,16 +80,16 @@
80 80  
81 81 switch (this.type) {
82 82 case 'success':
83   - type = 'ios-checkmark';
  83 + type = 'ios-checkmark-circle';
84 84 break;
85 85 case 'info':
86   - type = 'ios-information';
  86 + type = 'ios-information-circle';
87 87 break;
88 88 case 'warning':
89   - type = 'android-alert';
  89 + type = 'ios-alert';
90 90 break;
91 91 case 'error':
92   - type = 'ios-close';
  92 + type = 'ios-close-circle';
93 93 break;
94 94 }
95 95  
... ...