فهرست منبع

修改字段名称

lifanagju_citu 2 ماه پیش
والد
کامیت
1f52597807

+ 1 - 1
src/components/FormUI/autocomplete/index.vue

@@ -21,7 +21,7 @@
       :no-data-text="item.noDataText || 'No data available'"
       :hide-selected="item.hideSelected"
       :return-object="item.returnObject || false"
-      :hide-details="item.hireDetails || false"
+      :hide-details="item.hideDetails || false"
       @update:search="v => item.search ? debouncedCallbackSearch(v) : null"
       @update:modelValue="modelValueUpDate"
     ></v-autocomplete>

+ 2 - 2
src/views/recruit/enterprise/interviewManagement/index.vue

@@ -79,8 +79,8 @@ const query = ref({
 })
 const positionItems = ref([])
 
-const jobItem = ref({ width: 300, items: positionItems, clearable: true, hireDetails: true, label: '职位' })
-const statusItem = ref({ width: 300, items: statusList, clearable: true, hireDetails: true, label: '面试状态' })
+const jobItem = ref({ width: 300, items: positionItems, clearable: true, hideDetails: true, label: '职位' })
+const statusItem = ref({ width: 300, items: statusList, clearable: true, hideDetails: true, label: '面试状态' })
 
 // 获取有面试的日期列表
 const markers = ref([])

+ 1 - 1
src/views/recruit/enterprise/statistics/overallAnalysis.vue

@@ -71,7 +71,7 @@ const selectItems = ref({
   itemText: 'name',
   itemValue: 'id',
   clearable: true,
-  hireDetails: true,
+  hideDetails: true,
   items: []
 })
 

+ 1 - 1
src/views/recruit/personal/PersonalCenter/resume/blockEnt/index.vue

@@ -91,7 +91,7 @@ const item = ref({
   label: '请输入企业名称搜索',
   outlined: true,
   clearable: true,
-  hireDetails: true,
+  hideDetails: true,
   itemText: 'value',
   itemValue: 'key',
   width: '400',