-- 查看 优秀学员

This commit is contained in:
yuping
2022-12-26 17:43:41 +08:00
parent 39687730cb
commit d674c660e8

View File

@@ -15,7 +15,8 @@
@click="closeDrawer"
/>
</div>
<div class="main">
<a-spin v-if="loading" :spinning="loading"/>
<div v-if="!loading" class="main">
<div class="stuinfor">
<div class="portrait">
<img src="../../assets/images/studentimg/character.png" />
@@ -176,6 +177,7 @@ export default {
},
setup(props, ctx) {
const state = reactive({
loading:false,
userName: null, //用户名
deptName: null, //部门
jobName: null, //岗位
@@ -302,11 +304,13 @@ export default {
state.stageList = array;
};
const check = () => {
state.loading = true
let obj = {
projectId: props.projectId,
studentId: props.checkStuId,
};
studentProcess(obj).then((res) => {
state.loading = false
console.log("查看了学员", res.data.data);
let result = res.data.data;
state.userName = result.userInfoBo.userName;