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
bf70966b
authored
2023-07-26 17:24:09 +0800
by
yuanbo
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
增加注释
1 parent
ae5415e5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
0 deletions
src/components/EditDialog/index.vue
src/components/EditDialog/index.vue
View file @
bf70966
...
...
@@ -193,6 +193,12 @@
};
},
methods
:
{
/**
* @description: dicStatus
* @param {*} val
* @param {*} code
* @author: renchao
*/
dicStatus
(
val
,
code
)
{
let
data
=
this
.
dicData
[
code
],
name
=
''
...
...
@@ -205,8 +211,18 @@
return
name
}
},
/**
* @description: handleTitleTab
* @param {*} val
* @author: renchao
*/
handleTitleTab
(
val
)
{
},
/**
* @description: isShow
* @param {*} item
* @author: renchao
*/
isShow
(
item
)
{
if
(
item
.
bizMsgid
)
{
this
.
$set
(
this
.
bwoptions
,
0
,
{
...
...
@@ -240,6 +256,11 @@
}
},
// 获取列表接口
/**
* @description: 获取列表接口
* @param {*} data
* @author: renchao
*/
_getList
(
data
)
{
getTabsDetail
({
bsmReport
:
data
.
bsmReport
||
data
.
bsmSjsb
}).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
...
...
@@ -250,6 +271,11 @@
}
});
},
/**
* @description: changeList
* @param {*} val
* @author: renchao
*/
changeList
(
val
)
{
let
_index
=
val
.
index
;
if
(
_index
>
this
.
index
)
{
...
...
@@ -263,10 +289,19 @@
// }
// });
},
/**
* @description: loadView
* @param {*} view
* @author: renchao
*/
loadView
(
view
)
{
return
(
r
)
=>
require
.
ensure
([],
()
=>
r
(
require
(
`@/components/Business/
${
view
}
.vue`
)));
},
/**
* @description: closeDialog
* @author: renchao
*/
closeDialog
()
{
this
.
dialogVisible
=
false
;
//关闭弹框时将tabs项置空
...
...
Please
register
or
sign in
to post a comment