From 4fedec105f0419818e612f1ae1dbb5d49439f667 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 26 Aug 2025 13:13:09 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BaseForm/search-form.vue | 184 +++------- src/components/BaseTable/index.vue | 70 ++-- src/directive/adaptive/adaptive.js | 6 +- src/directive/dialogDrag.js | 10 +- src/styles/element-ui.scss | 4 + src/styles/index.scss | 270 +++++++++------ src/styles/mixin.scss | 2 +- src/styles/sidebar.scss | 46 ++- src/styles/transition.scss | 2 +- src/styles/variables.scss | 16 +- src/utils/dialog.js | 11 +- src/utils/splitScreen.js | 1 + src/views/system/user/list/index.vue | 318 +++++++++++------- .../components/staffExternalAdd.vue | 2 +- .../personnel-manage/components/staffForm.vue | 2 +- 15 files changed, 524 insertions(+), 420 deletions(-) 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}`) }, }, -}; +}