-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
修复 Grid 批量删除 修复 Grid 快捷搜索 修复 Grid ToolbarButton UI间距 ActionButton 添加 message 属性
- Loading branch information
1 parent
1c394e1
commit ca4bbee
Showing
23 changed files
with
158 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"/app.js": "/app.js?id=6194a656d0d6c596f473", | ||
"/app.js": "/app.js?id=be0e1de324934e54f7a3", | ||
"/manifest.js": "/manifest.js?id=3c768977c2574a34506e", | ||
"/vendor.js": "/vendor.js?id=38a9d2f43b98aaf4f7dd" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
<template> | ||
<router-link :to="$route.path + '/create'"> | ||
<el-button | ||
:type="attrs.type" | ||
:size="attrs.size" | ||
:plain="attrs.plain" | ||
:round="attrs.round" | ||
:circle="attrs.circle" | ||
:disabled="attrs.disabled" | ||
:icon="attrs.icon" | ||
:autofocus="attrs.autofocus" | ||
class="mr-10" | ||
>{{attrs.content}}</el-button | ||
> | ||
</router-link> | ||
<el-button | ||
:type="attrs.type" | ||
:size="attrs.size" | ||
:plain="attrs.plain" | ||
:round="attrs.round" | ||
:circle="attrs.circle" | ||
:disabled="attrs.disabled" | ||
:icon="attrs.icon" | ||
:autofocus="attrs.autofocus" | ||
@click="onCreate" | ||
>{{ attrs.content }}</el-button | ||
> | ||
</template> | ||
<script> | ||
export default { | ||
props: { | ||
attrs: Object | ||
}, | ||
methods: { | ||
onCreate() { | ||
this.$router.push(this.$route.path + "/create"); | ||
} | ||
} | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.