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 15:40:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4fa4fff1eb2fc5c9848e164f4510b87f3529b248
4fa4fff1
1 parent
4d4810d4
文本修正
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
src/router/index.js
src/views/systemLog/dmLog/index.vue
src/router/index.js
View file @
4fa4fff
...
...
@@ -88,7 +88,7 @@ export const constantRoutes = [
path
:
'/upDateResult->:from'
,
component
:
(
resolve
)
=>
require
([
'@/views/preMdeConfig/upDateResult'
],
resolve
),
name
:
'UpDateResult'
,
meta
:
{
title
:
'
导入信息
'
,
icon
:
'user'
}
meta
:
{
title
:
'
错误信息提示
'
,
icon
:
'user'
}
},
{
path
:
'/goodsLog'
,
...
...
src/views/systemLog/dmLog/index.vue
View file @
4fa4fff
...
...
@@ -76,7 +76,8 @@
<span v-else>{{ scope.row.flightFltNo }}</span>
</template>
<template v-slot:remarksDetail="scope">
<span v-if="scope.row.remarksDetail == null || scope.row.remarksDetail == ''"></span>
<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('\\r\\n')">{{ item }}</div>
</div>
...
...
Please
register
or
login
to post a comment