import Fields from '@/utils/fields.js' export default [ new Fields({ name: '抬头类型', fieldName: 'titleType', formType: 'select', setting: [ { label: '单位', value: 1 }, { label: '个人', value: 2 } ], value: [{ label: '单位', value: 1 }] }), new Fields({ name: '开票抬头', fieldName: 'invoiceTitle', formType: 'text' }), new Fields({ name: '纳税人识别号', fieldName: 'taxNumber', formType: 'text' }), new Fields({ name: '开户行', fieldName: 'depositBank', formType: 'text' }), new Fields({ name: '开户账号', fieldName: 'depositAccount', formType: 'text' }), new Fields({ name: '开票地址', fieldName: 'depositAddress', formType: 'text' }), new Fields({ name: '电话', fieldName: 'telephone', formType: 'text' }), new Fields({ name: '联系人', fieldName: 'contactsName', formType: 'text' }), new Fields({ name: '联系方式', fieldName: 'contactsMobile', formType: 'text' }), new Fields({ name: '邮寄地址', fieldName: 'contactsAddress', formType: 'position', precisions: 1 }) ]