jinhui.wang

dm数据提示语修正

...@@ -1260,7 +1260,8 @@ let tableHeaders = { ...@@ -1260,7 +1260,8 @@ let tableHeaders = {
1260 columnName: "remarksDetail", 1260 columnName: "remarksDetail",
1261 columnWidth: "450", 1261 columnWidth: "450",
1262 align: 'left', 1262 align: 'left',
1263 - status: 1 1263 + status: 1,
1264 + ext1: 'slot',
1264 }, 1265 },
1265 { 1266 {
1266 columnChineseName: "处理状态级别", 1267 columnChineseName: "处理状态级别",
......
...@@ -75,6 +75,13 @@ ...@@ -75,6 +75,13 @@
75 }}<i class="el-icon-link"></i> </el-link> 75 }}<i class="el-icon-link"></i> </el-link>
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">
79 + <span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''">{{ scope.row.remarksDetail
80 + }}</span>
81 + <div v-else>
82 + <div v-for="item in scope.row.remarksDetail.split('\n')">{{ item }}</div>
83 + </div>
84 + </template>
78 </Tables> 85 </Tables>
79 </div> 86 </div>
80 </template> 87 </template>
......