Commit f0a2acb2 authored by 黄奎's avatar 黄奎

页面修改

parent 07360c3e
......@@ -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
<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;
})
}
},
}
......
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