Commit f0a2acb2 authored by 黄奎's avatar 黄奎

页面修改

parent 07360c3e
...@@ -23,4 +23,15 @@ export function saveBackBillAduit(data) { ...@@ -23,4 +23,15 @@ export function saveBackBillAduit(data) {
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
<template> <template>
<div> <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> </div>
</template> </template>
<script> <script>
import {
queryBackBillAduitInfo
} from '../../api/sale/bill'
export default { export default {
props: { props: {
setingObj: { setingObj: {
...@@ -18,14 +30,26 @@ ...@@ -18,14 +30,26 @@
data() { data() {
return { return {
persistent: true, persistent: true,
qMsg: {
BackId: 0
},
DataList: []
} }
}, },
created() {}, created() {
this.qMsg.BackId = this.setingObj.BackId;
},
mounted() { mounted() {
this.getStuBaclFlow();
console.log("setingObj", this.setingObj); console.log("setingObj", this.setingObj);
}, },
methods: { methods: {
getStuBaclFlow() {
queryBackBillAduitInfo(this.qMsg).then(res => {
console.log("res", res);
this.DataList = res.Data;
})
}
}, },
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment