|
@@ -165,7 +165,11 @@
|
|
|
@click="toView(item, '2')"
|
|
|
>
|
|
|
<el-col :span="4" class="left">
|
|
|
- <el-image class="image" :src="getUrl(item.logo)" fit="fill" />
|
|
|
+ <el-image class="image" :src="getUrl(item.logo)" fit="fill">
|
|
|
+ <template v-slot:error>
|
|
|
+ <el-image class="image" :src="match" fit="fill" />
|
|
|
+ </template>
|
|
|
+ </el-image>
|
|
|
</el-col>
|
|
|
<el-col :span="20" class="right">
|
|
|
<el-col :span="24" class="right_1">
|
|
@@ -262,6 +266,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
+import match from '/images/match.jpg'
|
|
|
import moment from 'moment'
|
|
|
const $checkRes = inject('$checkRes')
|
|
|
import { get } from 'lodash-es'
|