diff --git a/examples/docs/message-box.md b/examples/docs/message-box.md index b116785f9..1a1773be4 100644 --- a/examples/docs/message-box.md +++ b/examples/docs/message-box.md @@ -15,12 +15,12 @@ this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', { type: 'warning' }).then(() => { - this.$msgbox({ + this.$notify({ message: '删除成功!', type: 'success' }); }).catch(() => { - this.$msgbox({ + this.$notify({ message: '已取消删除', type: 'info' }); @@ -31,11 +31,16 @@ this.$prompt('请输入邮箱', '提示', { inputPattern: /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/, inputErrorMessage: '邮箱格式不正确' - }).then(({ value, action }) => { - console.log('action: ', action); - this.$msgbox('', '你的邮箱是: ' + value); + }).then(({ value }) => { + this.$notify({ + type: 'success', + message: '你的邮箱是: ' + value + }); }).catch(() => { - this.$msgbox('', '取消输入'); + this.$notify({ + type: 'info', + messgae: '取消输入' + }); }); }, @@ -46,7 +51,10 @@ message: '这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容', showCancelButton: true }).then(action => { - this.$msgbox('', 'action: ' + action); + this.$notify({ + type: 'info', + message: 'action: ' + action + }); }); } @@ -124,12 +132,14 @@ MessageBox 组件也拥有极高的定制性,我们可以传入`options`作为 this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', { type: 'warning' }).then(() => { - this.$alert('删除成功!',{ - type: 'success' + this.$notify({ + type: 'success', + message: '删除成功!' }); }).catch(() => { - this.$alert('已取消删除', { - type: 'info' + this.$notify({ + type: 'info', + message: '已取消删除' }); }); }, @@ -157,9 +167,15 @@ Prompt 框功能强大,可以处理简单的输入,甚至你可以用`inputP inputPattern: /[\w!#$%&'*+/=?^_`{|}~-]+(?:\.[\w!#$%&'*+/=?^_`{|}~-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?/, inputErrorMessage: '邮箱格式不正确' }).then(value => { - this.$alert('你的邮箱是: ' + value); + this.$notify({ + type: 'success', + message: '你的邮箱是: ' + value + }); }).catch(() => { - this.$alert('取消输入'); + this.$notify({ + type: 'info', + message: '取消输入' + }); }); } } @@ -187,7 +203,10 @@ Msgbox 框是最基本的弹框,与 Alert 的区别在于 Alert 无法通过 E message: '这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容, 这是一段内容', showCancelButton: true }).then(action => { - this.$alert('action: ' + action); + this.$notify({ + type: 'info', + message: 'action: ' + action + }); }); }, } diff --git a/examples/docs/select.md b/examples/docs/select.md index ad0e3bc4f..b6b19bbc0 100644 --- a/examples/docs/select.md +++ b/examples/docs/select.md @@ -37,62 +37,31 @@ label: '北京烤鸭' }], options3: [{ - label: '分组1', + label: '热门城市', options: [{ - value: '选项1', - label: '标签1' + value: 'Shanghai', + label: '上海' }, { - value: '选项2', - label: '标签2' + value: 'Beijing', + label: '北京' }] }, { - label: '分组2', + label: '城市名', options: [{ - value: '选项3', - label: '标签3' + value: 'Chengdu', + label: '成都' }, { - value: '选项4', - label: '标签4' + value: 'Shenzhen', + label: '深圳' }, { - value: '选项5', - label: '标签5' + value: 'Guangzhou', + label: '广州' + }, { + value: 'Dalian', + label: '大连' }] }], - options4: [{ - value: '选项1', - label: '黄金糕' - }, { - value: '选项2', - label: '双皮奶' - }, { - value: '选项3', - label: '蚵仔煎' - }, { - value: '选项4', - label: '龙须面' - }, { - value: '选项5', - label: '北京烤鸭' - }, { - value: '选项6', - label: '炸酱面' - }, { - value: '选项7', - label: '羊蝎子' - }, { - value: '选项8', - label: '肉夹馍' - }, { - value: '选项9', - label: '回锅肉' - }, { - value: '选项10', - label: '小笼包' - }, { - value: '选项11', - label: '红烧肉' - }], - options5: [], + options4: [], cities: [{ value: 'Beijing', label: '北京' @@ -119,11 +88,7 @@ value5: '', value6: '', value7: [], - value8: '', - value9: '', - value10: '', - value11: '', - value12: [], + value8: [], loading: false, states: ["Alabama", "Alaska", "Arizona", "Arkansas", "California", "Colorado", "Connecticut", "Delaware", "Florida", "Georgia", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas", "Kentucky", "Louisiana", "Maine", "Maryland", "Massachusetts", "Michigan", "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", "New Jersey", "New Mexico", "New York", "North Carolina", "North Dakota", "Ohio", "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island", "South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont", "Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming"] }; @@ -139,10 +104,10 @@ this.loading = true; setTimeout(() => { this.loading = false; - this.options5 = this.list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1); + this.options4 = this.list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1); }, 200); } else { - this.options5 = []; + this.options4 = []; } } } @@ -172,19 +137,19 @@ return { options: [{ value: '选项1', - label: '标签1' + label: '黄金糕' }, { value: '选项2', - label: '标签2' + label: '双皮奶' }, { value: '选项3', - label: '标签3' + label: '蚵仔煎' }, { value: '选项4', - label: '标签4' + label: '龙须面' }, { value: '选项5', - label: '标签5' + label: '北京烤鸭' }], value: '' } @@ -193,59 +158,15 @@ ``` -## 禁用状态 - - - - - -```html - - - -``` - ## 有禁用选项 - + ```html