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 11:26:58 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5bcb1108a8af52b098a9a5b3ab8229bef203284e
5bcb1108
1 parent
13ae361b
dm数据提示语修正
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
src/assets/languages/tableHeaders.js
src/views/systemLog/dmLog/index.vue
src/assets/languages/tableHeaders.js
View file @
5bcb110
...
...
@@ -1260,7 +1260,8 @@ let tableHeaders = {
columnName
:
"remarksDetail"
,
columnWidth
:
"450"
,
align
:
'left'
,
status
:
1
status
:
1
,
ext1
:
'slot'
,
},
{
columnChineseName
:
"处理状态级别"
,
...
...
src/views/systemLog/dmLog/index.vue
View file @
5bcb110
...
...
@@ -75,6 +75,13 @@
}}<i class="el-icon-link"></i> </el-link>
<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>
<div v-else>
<div v-for="item in scope.row.remarksDetail.split('\n')">{{ item }}</div>
</div>
</template>
</Tables>
</div>
</template>
...
...
Please
register
or
login
to post a comment