diff --git a/src/components/BaseForm/search-form.vue b/src/components/BaseForm/search-form.vue index d1a05a1..c93e3ac 100644 --- a/src/components/BaseForm/search-form.vue +++ b/src/components/BaseForm/search-form.vue @@ -1,158 +1,68 @@ @@ -170,11 +80,11 @@ export default { }, labelWidth: { type: String, - default: "", + default: '', }, size: { type: String, - default: "mini", + default: 'mini', }, searchForm: { type: Array, @@ -186,16 +96,16 @@ export default { }, searchData: { type: Object, - default: () => {}, + default: () => { }, }, }, methods: { handleClick(emitKey) { // emit事件 - this.$emit(`${emitKey}`); + this.$emit(`${emitKey}`) }, }, -}; +}