update
This commit is contained in:
@@ -75,12 +75,12 @@ const passTask = async (id, task_backfill_id) => {
|
||||
<template v-slot:backData="{record}">
|
||||
<div class="flex flex-col">
|
||||
<template v-if="record?.back?.material_type === 1">
|
||||
<div v-for="v in record?.back?.content_arr" class="!flex items-center gap-[12px]">
|
||||
<div v-for="v in record?.back?.content_data" class="!flex items-center gap-[12px]">
|
||||
<div class="flex-shrink-0">
|
||||
<a-image width="30" height="30" :src="v" fit="cover"></a-image>
|
||||
<a-image width="30" height="30" :src="v.content" fit="cover"></a-image>
|
||||
</div>
|
||||
<a-link @click="openUrl(v)" :hoverable="false">
|
||||
{{ v }}
|
||||
{{ v.name }}
|
||||
</a-link>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -157,12 +157,12 @@ const passTask = async (id, task_backfill_id) => {
|
||||
<template v-slot:content="{record}">
|
||||
<div v-for="(item, index) in record?.task_content" class="flex flex-col">
|
||||
<template v-if="item?.back?.material_type === 1">
|
||||
<div v-for="v in item?.back?.content_arr" class="!flex items-center gap-[12px]">
|
||||
<div v-for="v in item?.back?.content_data" class="!flex items-center gap-[12px]">
|
||||
<div class="flex-shrink-0">
|
||||
<a-image width="30" height="30" :src="v"></a-image>
|
||||
<a-image width="30" height="30" :src="v.content"></a-image>
|
||||
</div>
|
||||
<a-link @click="openUrl(v)" :hoverable="false">
|
||||
{{ v }}
|
||||
{{ v.name }}
|
||||
</a-link>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user