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
e7379727
authored
2020-12-11 10:48:59 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
修改进度条bug
1 parent
8c7fac79
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
staticJs/onlineApply/workFlow.js
staticJs/onlineApply/workFlow.js
View file @
e737972
...
...
@@ -20,15 +20,17 @@ function getCreateFlow(ywid, businessno) {
//获取正在办理的流程业务
function
getAcceptFlow
(
bsm_slsq
,
businessno
)
{
var
data
=
{
"bsmSlsq"
:
bsm_slsq
,
"businessNo"
:
businessno
};
$
.
ajax
({
type
:
"post"
,
//提交方式
contentType
:
'application/json'
,
url
:
portal
.
api_url
+
"/portal/ApplyBusinessService/getApplyFlow"
,
//路径
dataType
:
"json"
,
async
:
false
,
data
:
{
"bsm_slsq"
:
bsm_slsq
,
"businessno"
:
businessno
},
data
:
JSON
.
stringify
(
data
),
//数据,这里使用的是Json格式进行传输
success
:
function
(
result
)
{
//返回数据根据结果进行相应的处理
if
(
result
.
code
==
200
&&
result
.
data
!=
null
)
{
...
...
@@ -46,15 +48,21 @@ function setArticleSteps() {
switch
(
item
.
stepState
)
{
case
0
:
ArticleContent
.
append
(
'<li class="item_proress"><p></p><h5>'
+
item
.
stepname
+
'</h5></li>'
);
if
((
index
+
1
)
<
business
.
stepList
.
length
)
{
ArticleContent
.
append
(
'<li class="layui-progress"><div class="layui-progress-bar" lay-percent="0%"></div></li>'
);
}
break
;
case
1
:
ArticleContent
.
append
(
'<li class="item_proress"><p class="activeing"></p><h5 class="activeingtext">'
+
item
.
stepname
+
'</h5></li>'
);
if
((
index
+
1
)
<
business
.
stepList
.
length
)
{
ArticleContent
.
append
(
'<li class="layui-progress"><div class="layui-progress-bar" lay-percent="50%"></div></li>'
);
}
break
;
case
2
:
ArticleContent
.
append
(
'<li class="item_proress"><p class="active"></p><h5>'
+
item
.
stepname
+
'</h5></li>'
);
if
((
index
+
1
)
<
business
.
stepList
.
length
)
{
ArticleContent
.
append
(
'<li class="layui-progress"><div class="layui-progress-bar" lay-percent="100%"></div></li>'
);
}
break
;
}
});
...
...
Please
register
or
sign in
to post a comment