Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
confucius
Commits
f0a2acb2
Commit
f0a2acb2
authored
Dec 18, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
07360c3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
4 deletions
+39
-4
bill.js
src/api/sale/bill.js
+12
-1
backflow-form.vue
src/components/sale/backflow-form.vue
+27
-3
No files found.
src/api/sale/bill.js
View file @
f0a2acb2
...
...
@@ -23,4 +23,15 @@ export function saveBackBillAduit(data) {
data
})
}
\ No newline at end of file
/**
* 学员退课审核
*/
export
function
queryBackBillAduitInfo
(
data
)
{
return
request
({
url
:
'/stu/GetBackBillAduitInfo'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/components/sale/backflow-form.vue
View file @
f0a2acb2
<
template
>
<div>
流程信息
<div
v-for=
"(item,index) in DataList"
>
<span>
<br/>
{{
item
.
AduitStatus
}}
{{
item
.
NodeName
}}
<span
v-for=
"(subItem,subIndex) in item.SubList"
>
审核人
{{
subItem
.
AduitName
}}
<br/>
备注
{{
subItem
.
Description
}}
<br/>
时间
{{
subItem
.
CreateTime
}}
<br/>
</span>
</span>
</div>
</div>
</
template
>
<
script
>
import
{
queryBackBillAduitInfo
}
from
'../../api/sale/bill'
export
default
{
props
:
{
setingObj
:
{
...
...
@@ -18,14 +30,26 @@
data
()
{
return
{
persistent
:
true
,
qMsg
:
{
BackId
:
0
},
DataList
:
[]
}
},
created
()
{},
created
()
{
this
.
qMsg
.
BackId
=
this
.
setingObj
.
BackId
;
},
mounted
()
{
this
.
getStuBaclFlow
();
console
.
log
(
"setingObj"
,
this
.
setingObj
);
},
methods
:
{
getStuBaclFlow
()
{
queryBackBillAduitInfo
(
this
.
qMsg
).
then
(
res
=>
{
console
.
log
(
"res"
,
res
);
this
.
DataList
=
res
.
Data
;
})
}
},
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment