|
@@ -47,6 +47,9 @@ export const searchFormSchema: FormSchema[] = [
|
|
|
label: '名称(name)',
|
|
|
field: 'name',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
];
|
|
|
//表单数据
|
|
@@ -55,36 +58,57 @@ export const formSchema: FormSchema[] = [
|
|
|
label: '名称(name)',
|
|
|
field: 'name',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '税号(taxcode)',
|
|
|
field: 'taxcode',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '单位地址(address)',
|
|
|
field: 'address',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '电话(telphone)',
|
|
|
field: 'telphone',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '开户行(bank)',
|
|
|
field: 'bank',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '银行账户(bank account)',
|
|
|
field: 'bankAccount',
|
|
|
component: 'Input',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
label: '排序号(order)',
|
|
|
field: 'reorder',
|
|
|
component: 'InputNumber',
|
|
|
+ componentProps:{
|
|
|
+ AutoComplete:'off'
|
|
|
+ },
|
|
|
},
|
|
|
// TODO 主键隐藏字段,目前写死为ID
|
|
|
{
|