Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2022-11-21 14:43:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4d4810d45998574be05120a603bad07acb2e3aa7
4d4810d4
1 parent
a46f6e55
字段截取修正
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
src/views/systemLog/dmLog/index.vue
src/views/systemLog/dmLog/index.vue
View file @
4d4810d
...
...
@@ -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>
...
...
Please
register
or
login
to post a comment