feat: 结款记录

This commit is contained in:
duan
2025-02-27 16:30:20 +08:00
parent af5ba4c954
commit 6cd651d545
13 changed files with 479 additions and 20 deletions

View File

@@ -39,7 +39,7 @@ const datas = reactive({
title: '新增数据',
pagingConfig: {
total: 0, // 总数
pageSize: "10", // 每页数据数量
pageSize: 10, // 每页数据数量
pageNumber: 1, // 当前页码
},
DialogForm: { // 弹窗表单数据

View File

@@ -6,8 +6,8 @@
<el-table-column prop="address" label="Address" />
<el-table-column label="操作">
<template #default="scope">
<el-button size="small" type="text" icon="Edit" @click="handleEdit(scope.row)">编辑</el-button>
<el-button size="small" type="text" icon="Delete" style="color: #f89797;"
<el-button size="small" type="primary" link icon="Edit" @click="handleEdit(scope.row)">编辑</el-button>
<el-button size="small" type="danger" link icon="Delete" style="color: #f89797;"
@click="handleDelete(scope.$index, scope.row)"> 删除 </el-button>
</template>
</el-table-column>