Commit 252c6548 authored by 黄奎's avatar 黄奎

页面修改

parent ae711f9f
......@@ -31,6 +31,8 @@
</template>
<template v-slot:body-cell-OptionId="props">
<q-td :props="props">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" @click="submitApproval(props.row)"
label="提交审批" />
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" @click="showForm(props.row,1)"
label="评价" />
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" @click="showForm(props.row,2)"
......@@ -52,7 +54,8 @@
</template>
<script>
import {
queryTeacherAssessmentPage
queryTeacherAssessmentPage,
SubmitTeacherAssessmentApproval
} from '../../api/teacher/index';
import behaviorForm from "../../components/teacher/behavior-form.vue";
import helpForm from "../../components/teacher/help-form.vue";
......@@ -182,6 +185,15 @@
closeForm() {
this.isShowBehavior = false;
this.isShowHelp = false;
},
//提交审批
submitApproval(item) {
var saveObj = {
Id: item.Id
};
SubmitTeacherAssessmentApproval(saveObj).then(res => {
console.log("res",res);
});
}
}
}
......
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