Xiao_123 1 yıl önce
ebeveyn
işleme
159aaa7fa6

+ 1 - 2
src/components/Enterprise/components/introduction.vue

@@ -37,8 +37,7 @@ const list = [
   'https://img.bosszhipin.com/beijin/upload/com/img/20190823/f01c227906f5c15554d19904cf5009944d4ba1fec2b1a061e4a46fb61ddab12d.jpg',
   'https://img.bosszhipin.com/beijin/upload/com/img/20190823/154f6a1bc139eea59bf2610c3115fc664d4ba1fec2b1a061e4a46fb61ddab12d.jpg',
   'https://img.bosszhipin.com/beijin/upload/com/img/20190823/644c82121f1d19cb120c1e4c2836d1004d4ba1fec2b1a061e4a46fb61ddab12d.jpg',
-  'https://img.bosszhipin.com/beijin/upload/com/img/20190823/4b867202f288d6512dac50856bae61194d4ba1fec2b1a061e4a46fb61ddab12d.jpg',
-  'https://zhipin-company-1251955568.file.myqcloud.com/zhipin-company/99/20240411/fp0316a40013_f2abd6bc44254064931620a9a1dbdf21-OSS11.30.go15.fmHblack.mp4?sign=8bbdf46fa8ec4f97a742edf59e559379&t=1716168952'
+  'https://img.bosszhipin.com/beijin/upload/com/img/20190823/4b867202f288d6512dac50856bae61194d4ba1fec2b1a061e4a46fb61ddab12d.jpg'
 ]
 
 const isImage = (url) => {

+ 3 - 4
src/views/recruit/position/components/conditionFilter/areaType.vue

@@ -8,7 +8,7 @@
         @click="handle(item)"
       > 
         <template v-if="selectedItems.includes(item.id)" v-slot:append>
-          <v-icon icon="mdi-close"></v-icon>
+          <v-icon icon="mdi-check"></v-icon>
         </template>
         <v-list-item-title>{{ item.label }}</v-list-item-title>
       </v-list-item>
@@ -34,14 +34,13 @@ getDict('menduner_area_type', {}, 'areaList').then(({ data }) => {
   data = data?.length && data || []
   const arr = props.list.map(e => {
     const { id, parentId, type, name: label } = data.find(k => Number(k.id) === Number(e.key))
-    return { id, label, number: e.value, parentId, type, props: { appendIcon: '' } }
+    return { id, label, number: e.value, parentId, type }
   })
-  items.value = [{ id: -1, label: '全部', props: { appendIcon: '' } }, ...arr]
+  items.value = [{ id: -1, label: '全部' }, ...arr]
 })
 const handle = (val) => {
   const obj = selectedItems.value.find(e => e === val.id)
   title.value = obj ? '工作地点' : '工作地点(1)'
-  val.props.appendIcon = obj ? '' : 'mdi-check'
   selectedItems.value = obj ? [] : [val.id]
   emits('selectedItems', selectedItems.value)
 }