|
@@ -28,26 +28,26 @@ export default {
|
|
|
data: function() {
|
|
|
return {
|
|
|
formFields: [
|
|
|
- { label: '姓名', model: 'name' },
|
|
|
- { label: '手机号', model: 'phone' },
|
|
|
- { label: '机构代码', model: 'code' },
|
|
|
- { label: '电子邮箱', model: 'email' },
|
|
|
- { label: '联系地址', model: 'addr' },
|
|
|
- { label: '办公电话', model: 'office_phone' },
|
|
|
- { label: '所属行业', model: 'profession' },
|
|
|
- { label: '机构代码', model: 'institution_code' },
|
|
|
- { label: '统一社会信用代码', model: 'code' },
|
|
|
- { label: '注册类型', model: 'companytype' },
|
|
|
- { label: '注册时间', model: 'companydate' },
|
|
|
- { label: '注册资金', model: 'companycapital' },
|
|
|
- { label: '企业法人', model: 'companyperson' },
|
|
|
- { label: '上年度企业总收入', model: 'sndqyzsr' },
|
|
|
- { label: '上年度研发费用', model: 'sndyffy' },
|
|
|
- { label: '企业总人数', model: 'companytotal' },
|
|
|
- { label: '专&兼职研发人数', model: 'zjzyfrs' },
|
|
|
- { label: '企业简介', model: 'companybrief', type: 'textarea' },
|
|
|
- { label: '主要产品', model: 'mainproduct', type: 'textarea' },
|
|
|
- { label: '企业资质&荣誉', model: 'qualifications', type: 'textarea' },
|
|
|
+ { label: '姓名', model: 'name', options: { readonly: true } },
|
|
|
+ { label: '手机号', model: 'phone', options: { readonly: true } },
|
|
|
+ { label: '机构代码', model: 'code', options: { readonly: true } },
|
|
|
+ { label: '电子邮箱', model: 'email', options: { readonly: true } },
|
|
|
+ { label: '联系地址', model: 'addr', options: { readonly: true } },
|
|
|
+ { label: '办公电话', model: 'office_phone', options: { readonly: true } },
|
|
|
+ { label: '所属行业', model: 'profession', options: { readonly: true } },
|
|
|
+ { label: '机构代码', model: 'institution_code', options: { readonly: true } },
|
|
|
+ { label: '统一社会信用代码', model: 'code', options: { readonly: true } },
|
|
|
+ { label: '注册类型', model: 'companytype', options: { readonly: true } },
|
|
|
+ { label: '注册时间', model: 'companydate', options: { readonly: true } },
|
|
|
+ { label: '注册资金', model: 'companycapital', options: { readonly: true } },
|
|
|
+ { label: '企业法人', model: 'companyperson', options: { readonly: true } },
|
|
|
+ { label: '上年度企业总收入', model: 'sndqyzsr', options: { readonly: true } },
|
|
|
+ { label: '上年度研发费用', model: 'sndyffy', options: { readonly: true } },
|
|
|
+ { label: '企业总人数', model: 'companytotal', options: { readonly: true } },
|
|
|
+ { label: '专&兼职研发人数', model: 'zjzyfrs', options: { readonly: true } },
|
|
|
+ { label: '企业简介', model: 'companybrief', type: 'textarea', options: { readonly: true } },
|
|
|
+ { label: '主要产品', model: 'mainproduct', type: 'textarea', options: { readonly: true } },
|
|
|
+ { label: '企业资质&荣誉', model: 'qualifications', type: 'textarea', options: { readonly: true } },
|
|
|
{ label: '状态', model: 'status', type: 'radio' },
|
|
|
],
|
|
|
};
|