feat: 家具初版

This commit is contained in:
砂糖
2025-09-03 11:55:00 +08:00
parent 623fa846a4
commit 82faee4f7c
44 changed files with 1824 additions and 943 deletions

View File

@@ -26,8 +26,8 @@
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" size="mini" @click="resetQuery">重置</el-button>
<el-button type="primary" icon="Search" size="small" @click="handleQuery">搜索</el-button>
<el-button icon="Refresh" size="small" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
@@ -37,7 +37,7 @@
type="primary"
plain
icon="Plus"
size="mini"
size="small"
@click="handleAdd"
>新增</el-button>
</el-col>
@@ -46,7 +46,7 @@
type="success"
plain
icon="Edit"
size="mini"
size="small"
:disabled="single"
@click="handleUpdate"
>修改</el-button>
@@ -56,7 +56,7 @@
type="danger"
plain
icon="Delete"
size="mini"
size="small"
:disabled="multiple"
@click="handleDelete"
>删除</el-button>
@@ -66,7 +66,7 @@
type="warning"
plain
icon="Download"
size="mini"
size="small"
@click="handleExport"
>导出</el-button>
</el-col>
@@ -95,13 +95,13 @@
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button
size="mini"
size="small"
type="text"
icon="Edit"
@click="handleUpdate(scope.row)"
>修改</el-button>
<el-button
size="mini"
size="small"
type="text"
icon="Delete"
@click="handleDelete(scope.row)"