round完成

This commit is contained in:
2023-06-28 21:02:31 +08:00
parent 1063053510
commit 67cb0df5b9
12 changed files with 198 additions and 35 deletions

View File

@@ -26,18 +26,20 @@ const crudOptions = ref({
showIndex: false,
rowSelection: { showCheckedAll: true },
add: { show: true },
edit: { show: true },
edit: { show: true, api: designDemandApi.editDesignDemand },
delete: { show: true },
searchColNumber: 3,
tablePagination: true,
operationColumn: true,
operationColumnAlign:'center',
formOption: {
width: 1200
width: 1200,
}
})
const crudColumns = ref([
{
title: "ID",
align:'center',
width: 50,
dataIndex: "id",
search: true,
@@ -46,6 +48,7 @@ const crudColumns = ref([
},
{
title: "标识",
align:'center',
width: 120,
dataIndex: "ident",
search: true,
@@ -54,6 +57,7 @@ const crudColumns = ref([
},
{
title: "需求名称",
align:'center',
width: 150,
dataIndex: "name",
search: true,
@@ -63,6 +67,7 @@ const crudColumns = ref([
{
title: "需求类型",
width: 150,
align:'center',
dataIndex: "demandType",
formType: "radio",
search: true,
@@ -73,6 +78,7 @@ const crudColumns = ref([
{
title: "需求描述",
dataIndex: "description",
hide:true,
width: 300,
formType: "editor",
height: 300