Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.portalStaticPage
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
84050934
authored
2020-12-15 18:35:33 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:办事指南
1 parent
40949680
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
24 deletions
staticJs/bszn.js
staticJs/onlineApply/workFlow.js
staticJs/bszn.js
View file @
8405093
...
...
@@ -181,7 +181,7 @@ function _listBusinessIdsByBsznId(id) {
success
:
function
(
result
)
{
//返回数据根据结果进行相应的处理
if
(
result
.
code
==
200
&&
result
.
data
!=
null
)
{
if
(
result
.
data
.
length
==
1
)
{
_getFQFBusiness
Flow
(
result
.
data
[
0
])
createBusinesse
Flow
(
result
.
data
[
0
])
}
else
{
window
.
open
(
'./wssq.html'
,
"_self"
)
}
...
...
@@ -190,27 +190,6 @@ function _listBusinessIdsByBsznId(id) {
});
}
// /portal/ApplyBusinessService/getFQFBusinessFlow获取发起方业务流程信息
function
_getFQFBusinessFlow
(
id
)
{
$
.
ajax
({
type
:
"post"
,
//提交方式
url
:
portal
.
api_url
+
"/portal/ApplyBusinessService/getFQFBusinessFlow"
,
//路径
dataType
:
"json"
,
data
:
{
'ywid'
:
id
},
//数据,这里使用的是Json格式进行传输
success
:
function
(
result
)
{
//返回数据根据结果进行相应的处理
if
(
result
.
code
==
200
&&
result
.
data
!=
null
)
{
console
.
log
(
result
.
data
)
// getInitiateFLow($(this).attr("ywid"),$(this).attr("businessNo"));
getInitiateFLow
(
id
,
result
.
data
.
businessNo
);
}
}
});
}
var
data
=
{
//数据
"list"
:
[],
...
...
staticJs/onlineApply/workFlow.js
View file @
8405093
...
...
@@ -27,8 +27,7 @@ function loadBusinessConfig(ywid) {
dataType
:
"json"
,
async
:
false
,
data
:
{
"ywid"
:
ywid
,
"businessNo"
:
businessno
"ywid"
:
ywid
},
//数据,这里使用的是Json格式进行传输
success
:
function
(
result
)
{
//返回数据根据结果进行相应的处理
...
...
Please
register
or
sign in
to post a comment