@@ -24,7 +24,7 @@
<template v-for="item in model[field + 'Imgs']" :key="item">
<div class="video" @click="bofang(item)" style="display: inline-block;position: relative;" v-if="checkMediaType(item) == 'video'">
<Image
- style="overflow: hidden; height: 100%; object-fit: cover; margin-right: 10px; cursor: none;"
+ style="overflow: hidden; height: 100%; object-fit: cover; margin-right: 10px; pointer-events: none;"
:height="80"
:width="80"
:key="item"
@@ -25,7 +25,7 @@
@@ -48,6 +48,9 @@ export const configurationSchema: BasicColumn[] = [
title: '选项(英文)',
width: 400,
dataIndex: 'nameEn',
+ customRender: ({ record }) => {
+ return record.nameEn || '-';
+ },
},
];
export const agentSchema: BasicColumn[] = [