jinhui.wang

字段截取修正

...@@ -76,10 +76,9 @@ ...@@ -76,10 +76,9 @@
76 <span v-else>{{ scope.row.flightFltNo }}</span> 76 <span v-else>{{ scope.row.flightFltNo }}</span>
77 </template> 77 </template>
78 <template v-slot:remarksDetail="scope"> 78 <template v-slot:remarksDetail="scope">
79 - <span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''">{{ scope.row.remarksDetail 79 + <span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''"></span>
80 - }}</span>
81 <div v-else> 80 <div v-else>
82 - <div v-for="item in scope.row.remarksDetail.split('\n')">{{ item }}</div> 81 + <div v-for="item in scope.row.remarksDetail.split('\\r\\n')">{{ item }}</div>
83 </div> 82 </div>
84 </template> 83 </template>
85 </Tables> 84 </Tables>
......