jinhui.wang

字段截取修正

......@@ -76,10 +76,9 @@
<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>
<span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''"></span>
<div v-else>
<div v-for="item in scope.row.remarksDetail.split('\n')">{{ item }}</div>
<div v-for="item in scope.row.remarksDetail.split('\\r\\n')">{{ item }}</div>
</div>
</template>
</Tables>
......