Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
2a2b4e2c
authored
2023-01-16 15:16:34 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcjg-web
2 parents
ac22fbbe
f0f14d61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
src/components/dataDetails/edit-dialog.vue
src/views/jsbwcx/index.vue
src/components/dataDetails/edit-dialog.vue
View file @
2a2b4e2
...
...
@@ -118,6 +118,12 @@ import { getDetail } from "@/api/sbbwcx.js";
import
{
MessageBox
}
from
"element-ui"
;
export
default
{
components
:
{
JsonEditor
},
props
:
{
title
:
{
type
:
String
,
default
:
''
}
},
computed
:
{
...
mapGetters
([
"dicData"
]),
},
...
...
@@ -151,7 +157,6 @@ export default {
dialogVisible
:
false
,
activeName
:
undefined
,
editItem
:
""
,
title
:
""
,
headerList
:
[],
dataTable
:
""
,
};
...
...
src/views/jsbwcx/index.vue
View file @
2a2b4e2
...
...
@@ -88,7 +88,7 @@
</lb-table>
</div>
<!-- 编辑 -->
<dataDetails
ref=
"editLog"
/>
<dataDetails
ref=
"editLog"
:title=
"title"
/>
</div>
</
template
>
...
...
@@ -198,6 +198,7 @@ export default {
},
// 业务名称
statusOptions
:
[],
title
:
''
};
},
methods
:
{
...
...
@@ -220,6 +221,7 @@ export default {
},
// 详情
handleEdit
(
row
)
{
this
.
title
=
row
.
rectypeName
this
.
$refs
.
editLog
.
isShow
(
row
);
}
}
...
...
Please
register
or
sign in
to post a comment