feat(address-book-management): 添加班组信息字段

- 在地址簿管理页面的表单中添加了班组信息
This commit is contained in:
dj
2025-01-15 22:57:02 +08:00
parent 3366fa6005
commit b2f02e2c5d

View File

@@ -105,6 +105,18 @@ const formSchema = computed(() => {
clearable: true,
}
},
{
label: '班组信息',
prop: 'team',
component: 'el-input',
colProps: {
span: 24
},
props: {
placeholder: '请输入班组信息',
clearable: true,
}
},
{
label: '姓名',
prop: 'name',
@@ -220,6 +232,11 @@ const addressBookTableConfig = reactive({
label: '拨打单位',
align: 'center'
},
{
prop: 'team',
label: '班组信息',
align: 'center'
},
{
prop: 'name',
label: '姓名',