|
|
|
@ -40,7 +40,10 @@ const formSchema = reactive<FormSchema[]>([
|
|
|
|
|
const res = await getCategory({ paramName: 'reportingType_param', systemCode: 'ordb' });
|
|
|
|
|
return transfDictList(res.body.result);
|
|
|
|
|
},
|
|
|
|
|
value: '1'
|
|
|
|
|
value: '1',
|
|
|
|
|
formItemProps: {
|
|
|
|
|
rules: [required()],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'createUser',
|
|
|
|
@ -49,6 +52,9 @@ const formSchema = reactive<FormSchema[]>([
|
|
|
|
|
componentProps: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
formItemProps: {
|
|
|
|
|
rules: [required()],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'tVersion',
|
|
|
|
@ -57,6 +63,9 @@ const formSchema = reactive<FormSchema[]>([
|
|
|
|
|
componentProps: {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
formItemProps: {
|
|
|
|
|
rules: [required()],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'tStatus',
|
|
|
|
@ -65,7 +74,10 @@ const formSchema = reactive<FormSchema[]>([
|
|
|
|
|
componentProps: {
|
|
|
|
|
options:REPORTING_STATUS_LIST
|
|
|
|
|
},
|
|
|
|
|
value:'1'
|
|
|
|
|
value:'1',
|
|
|
|
|
formItemProps: {
|
|
|
|
|
rules: [required()],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'tDescription',
|
|
|
|
|