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
2e6fe76c
authored
2023-01-16 11:52:30 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:区县接入
1 parent
80dd3652
Show 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 @
2e6fe76
...
...
@@ -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 @
2e6fe76
...
...
@@ -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