Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-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
531172ac
authored
2023-08-14 16:34:46 +0800
by
tianhaohao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改规则
1 parent
a7e3294f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
src/views/ywbl/ywsq/components/selecBdcql.vue
src/views/ywbl/ywsq/guidePage.vue
src/views/ywbl/ywsq/selectBdc.vue
src/views/ywbl/ywsq/components/selecBdcql.vue
View file @
531172a
...
...
@@ -107,7 +107,7 @@
*/
queryClick
()
{
this
.
$startLoading
();
this
.
queryForm
.
bsmSqyw
=
this
.
bsmSqyw
;
this
.
queryForm
.
bsmSqyw
=
this
.
sqywInfo
.
bsmSqyw
;
selectQlxx
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
...
...
src/views/ywbl/ywsq/guidePage.vue
View file @
531172a
...
...
@@ -369,7 +369,12 @@
* @author: renchao
*/
openDialog
()
{
let
title
=
"申请业务:"
+
this
.
selectParam
?.
djywmc
?
this
.
selectParam
?.
djywmc
:
''
;
let
title
=
this
.
selectParam
.
djywmc
;
if
(
this
.
selectParam
.
nodetype
==
"djqx"
){
title
+=
"("
+
this
.
selectParam
.
nodename
+
")"
;
}
//let title = "申请业务:";
//console.log(title);
this
.
$popupDialog
(
title
,
"ywbl/ywsq/selectBdc"
,
{
'sqywInfo'
:
this
.
selectParam
},
"90%"
,
true
)
},
/**
...
...
src/views/ywbl/ywsq/selectBdc.vue
View file @
531172a
...
...
@@ -37,9 +37,7 @@
* @param {*} view
* @author: renchao
*/
loadView
(
view
)
{
console
.
log
(
view
,
'view'
);
console
.
log
(
this
.
formData
,
'data'
);
loadView
(
view
)
{
return
(
r
)
=>
require
.
ensure
([],
()
=>
r
(
require
(
`./components/
${
view
}
.vue`
)));
},
...
...
Please
register
or
sign in
to post a comment