jinhui.wang

dm数据提示语修正

......@@ -1260,7 +1260,8 @@ let tableHeaders = {
columnName: "remarksDetail",
columnWidth: "450",
align: 'left',
status: 1
status: 1,
ext1: 'slot',
},
{
columnChineseName: "处理状态级别",
......
......@@ -75,6 +75,13 @@
}}<i class="el-icon-link"></i> </el-link>
<span v-else>{{ scope.row.flightFltNo }}</span>
</template>
<template v-slot:remarksDetail="scope">
<span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''">{{ scope.row.remarksDetail
}}</span>
<div v-else>
<div v-for="item in scope.row.remarksDetail.split('\n')">{{ item }}</div>
</div>
</template>
</Tables>
</div>
</template>
......