guhongwei 1 year ago
parent
commit
541344e140
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/views/user/expert/detail.vue

+ 6 - 6
src/views/user/expert/detail.vue

@@ -74,12 +74,12 @@ let formFields: Ref<any[]> = ref([
   { label: '单位名称', model: 'company' },
   { label: '头像图片', model: 'icon', custom: true },
   { label: '职务职称', model: 'zwzc' },
-  { label: '擅长领域', model: 'expertise' },
-  { label: '工作经历', model: 'workexperience' },
-  { label: '科研综述', model: 'scientific' },
-  { label: '承担项目', model: 'undertakingproject' },
-  { label: '科技奖励', model: 'scienceaward' },
-  { label: '社会任职', model: 'social' },
+  { label: '擅长领域', model: 'expertise', type: 'textarea' },
+  { label: '工作经历', model: 'workexperience', type: 'textarea' },
+  { label: '科研综述', model: 'scientific', type: 'textarea' },
+  { label: '承担项目', model: 'undertakingproject', type: 'textarea' },
+  { label: '科技奖励', model: 'scienceaward', type: 'textarea' },
+  { label: '社会任职', model: 'social', type: 'textarea' },
   { label: '状态', model: 'status', type: 'select' },
   { label: '个人用户id', model: 'personal_id', type: 'select' } //查询个人用户,选择
 ]);