|
|
@ -33,7 +33,9 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
label: '领用描述', |
|
|
|
field: 'usageDescription', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: true, |
|
|
|
isSearch: false, |
|
|
|
isTable:false, |
|
|
|
isForm:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '成本中心ID', |
|
|
@ -41,6 +43,7 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
isTable:false, |
|
|
|
isForm: false, |
|
|
|
form:{ |
|
|
|
componentProps:{ |
|
|
|
disabled:true |
|
|
@ -52,6 +55,8 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'costcentreCode', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
isTable:false, |
|
|
|
isForm: false, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
@ -70,10 +75,10 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '成本中心类型', |
|
|
|
label: '类型', |
|
|
|
field: 'costcentreType', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
isSearch: true, |
|
|
|
form:{ |
|
|
|
componentProps:{ |
|
|
|
disabled:true |
|
|
@ -86,6 +91,7 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
isTable:false, |
|
|
|
isForm:false, |
|
|
|
disabled:true, |
|
|
|
form:{ |
|
|
|
componentProps:{ |
|
|
@ -98,6 +104,7 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
field: 'projectCode', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
isForm:false, |
|
|
|
form: { |
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
|
componentProps: { |
|
|
@ -115,6 +122,28 @@ export const SubjectAccount = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '会计账户', |
|
|
|
field: 'accountingAccount', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
form:{ |
|
|
|
componentProps:{ |
|
|
|
disabled:false |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '名称', |
|
|
|
field: 'accountingName', |
|
|
|
sort: 'custom', |
|
|
|
isSearch: false, |
|
|
|
form:{ |
|
|
|
componentProps:{ |
|
|
|
disabled:false |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '是否可用', |
|
|
|
field: 'available', |
|
|
|