jinhui.wang

文本修正

...@@ -88,7 +88,7 @@ export const constantRoutes = [ ...@@ -88,7 +88,7 @@ export const constantRoutes = [
88 path: '/upDateResult->:from', 88 path: '/upDateResult->:from',
89 component: (resolve) => require(['@/views/preMdeConfig/upDateResult'], resolve), 89 component: (resolve) => require(['@/views/preMdeConfig/upDateResult'], resolve),
90 name: 'UpDateResult', 90 name: 'UpDateResult',
91 - meta: { title: '导入信息', icon: 'user' } 91 + meta: { title: '错误信息提示', icon: 'user' }
92 }, 92 },
93 { 93 {
94 path: '/goodsLog', 94 path: '/goodsLog',
......
...@@ -76,7 +76,8 @@ ...@@ -76,7 +76,8 @@
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 == ''"></span> 79 + <span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''">{{ scope.row.remarksDetail
80 + }}</span>
80 <div v-else> 81 <div v-else>
81 <div v-for="item in scope.row.remarksDetail.split('\\r\\n')">{{ item }}</div> 82 <div v-for="item in scope.row.remarksDetail.split('\\r\\n')">{{ item }}</div>
82 </div> 83 </div>
......