mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 03:46:45 +08:00
体系细节调整
This commit is contained in:
@@ -209,7 +209,7 @@ export default {
|
||||
deleteInTeacherdialog: false,
|
||||
teacherdialog: false,
|
||||
teacherdialogtitle: null,
|
||||
delId: null,
|
||||
id: null,
|
||||
searchParam: {
|
||||
trainorgId: null,
|
||||
userNo: null,
|
||||
@@ -307,12 +307,12 @@ export default {
|
||||
//删除弹窗
|
||||
const deleteModal = (record) => {
|
||||
state.deleteInTeacherdialog = true
|
||||
state.delId = record.kid
|
||||
state.id = record.kid
|
||||
};
|
||||
//确认删除
|
||||
const closeDeleteTeacher = () => {
|
||||
//调用删除接口
|
||||
deleteLecturerSystem({kid:state.delId}).then((res) => {
|
||||
deleteLecturerSystem({kid:state.id}).then((res) => {
|
||||
if (res.data.code == 200) {
|
||||
// message.success("删除成功");
|
||||
state.deleteInTeacherdialog = false
|
||||
@@ -339,14 +339,14 @@ export default {
|
||||
const handleModify = (record) => {
|
||||
state.teacherdialog = true;
|
||||
state.teacherdialogtitle = '修改归属组织'
|
||||
state.delId = record.kid
|
||||
state.id = record.id
|
||||
state.vf = false
|
||||
TeacherSystem()
|
||||
}
|
||||
//查看
|
||||
const TeacherSystem=(record)=>{
|
||||
const TeacherSystem=()=>{
|
||||
let obj = {
|
||||
kid : state.delId,
|
||||
id : state.id,
|
||||
pageNo:1,
|
||||
pageSize:1
|
||||
}
|
||||
@@ -359,7 +359,7 @@ export default {
|
||||
}
|
||||
const getteacherrecordstableData = () => {
|
||||
// api接口
|
||||
querySystemLevelByKid({systemId: state.delId}).then((res) => {
|
||||
querySystemLevelByKid({systemId: state.id}).then((res) => {
|
||||
state.formParam.levelList = res.data.data
|
||||
})
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user