rt-sim-training-client/src/views/management/userTraining/add.vue

177 lines
4.7 KiB
Vue
Raw Normal View History

2019-07-26 13:32:43 +08:00
<template>
2019-08-08 15:57:36 +08:00
<div>
<el-dialog v-dialogDrag :title="title" :visible.sync="dialogVisible" width="30%" :before-close="handleClose" center :close-on-click-modal="false">
2019-08-08 15:57:36 +08:00
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
<span slot="footer" class="dialog-footer">
2019-08-29 17:16:33 +08:00
<el-button type="primary" @click="doSave">{{ $t('global.confirm') }}</el-button>
<el-button @click="handleClose">{{ $t('global.cancel') }}</el-button>
2019-08-08 15:57:36 +08:00
</span>
</el-dialog>
<add-training ref="addTraining" @selectTrain="selectTrain" />
</div>
2019-07-26 13:32:43 +08:00
</template>
<script>
2019-08-08 15:57:36 +08:00
import { addUserTraining } from '@/api/jmap/training';
import { getPublishLessonList } from '@/api/jmap/lesson';
import { getDimUserList } from '@/api/management/user';
import AddTraining from './addTraining';
2019-07-26 13:32:43 +08:00
2019-08-08 15:57:36 +08:00
export default {
name: 'UsersTrainingAdd',
components: {
AddTraining
},
props: {
type: {
type: String,
required: true
}
},
data() {
return {
dialogVisible: false,
formModel: {
lessonId: '',
trainingId: '',
trainingName: '',
userId: '',
userName: '',
duration: ''
},
LessonList: [],
UserList: [],
UserLoading: false
};
},
computed: {
form() {
this.type === 'ADD';
const form = {
2019-08-29 17:16:33 +08:00
labelWidth: '150px',
2019-08-08 15:57:36 +08:00
items: [
2019-08-29 17:16:33 +08:00
{ prop: 'lessonId', label: this.$t('system.lessonName'), type: 'select', required: true, options: this.LessonList },
{ prop: 'trainingName', label: this.$t('system.trainingName'), type: 'text', required: true, rightWidth: true, disabled: true, buttontip: this.$t('system.selectTraining'), buttonClick: this.buttonClick, placeholder: this.$t('rules.pleaseSelectTraining') },
{ prop: 'userName', label: this.$t('system.userName'), type: 'complete', required: false, querySearchAsync: this.querySearchAsync, handleSelect: this.prdSelect, placeholder: this.$t('system.pleaseInputNames') },
{ prop: 'duration', label: this.$t('system.trainingTime'), type: 'text', required: true, rightWidth: true, message: 's' }
2019-08-08 15:57:36 +08:00
]
};
return form;
},
rules() {
const crules = {
lessonId: [
2019-08-29 17:16:33 +08:00
{ required: true, message: this.$t('rules.pleaseInputLessonName'), trigger: 'change' }
2019-08-08 15:57:36 +08:00
],
trainingName: [
2019-08-29 17:16:33 +08:00
{ required: true, message: this.$t('rules.pleaseSelectTraining'), trigger: 'change' }
2019-08-08 15:57:36 +08:00
],
userName: [
2019-08-29 17:16:33 +08:00
{ required: true, message: this.$t('rules.userNameInput'), trigger: 'change' }
2019-08-08 15:57:36 +08:00
],
duration: [
2019-08-29 17:16:33 +08:00
{ required: true, message: this.$t('rules.timeInput'), trigger: 'blur' }
2019-08-08 15:57:36 +08:00
]
};
return crules;
},
title() {
2019-08-29 17:16:33 +08:00
return this.$t('system.createUserTraining');
2019-08-08 15:57:36 +08:00
}
},
mounted() {
this.initLoadPage();
},
methods: {
initLoadPage() {
// 加载发布课程列表
this.LessonList.length = 0;
this.UserList.length = 0;
getPublishLessonList().then(response => {
const data = response.data;
if (data && data.length) {
data.forEach(elem => {
this.LessonList.push({ value: elem.id, label: elem.name });
});
}
});
},
// 搜索查询input
async querySearchAsync(queryString, cb) {
// 根据queryString 查询用户 并显示
const results = [];
if (queryString) {
try {
const params = {
fuzzyParam: queryString
};
const res = await getDimUserList(params);
const list = res.data;
list.forEach(item => {
const value = {
id: item.id,
value: `${item.nickname}(${item.name})${item.mobile}`
};
results.push(value);
});
cb(results);
} catch (error) {
console.error(error, '查询用户list');
cb(results);
}
} else {
cb(results);
}
},
prdSelect(item) {
this.formModel.userId = item.id;
},
selectTrain(data) {
this.formModel.trainingId = data.id;
this.formModel.trainingName = data.name;
},
buttonClick() {
if (this.formModel.lessonId) {
this.$refs.addTraining.show(this.formModel.lessonId);
} else {
2019-09-11 17:11:51 +08:00
this.$message.error(this.$t('rules.selectTheCourseNameFirst'));
2019-08-08 15:57:36 +08:00
}
},
show(data) {
this.dialogVisible = true;
},
doSave() {
const self = this;
this.$refs.dataform.validateForm(() => {
self.save();
});
},
save() {
const self = this;
if (this.formModel.userId) {
addUserTraining(this.formModel).then(response => {
2019-08-29 17:16:33 +08:00
self.$message.success(this.$t('system.addSuccess'));
2019-08-08 15:57:36 +08:00
self.handleClose();
self.$emit('reloadTable');
}).catch(error => {
2019-08-29 17:16:33 +08:00
self.$message.error(this.$t('error.addFailed') + error.message);
2019-08-08 15:57:36 +08:00
});
} else {
2019-08-29 17:16:33 +08:00
self.$message.error(this.$t('rules.chooseUser'));
2019-08-08 15:57:36 +08:00
}
},
handleClose(done) {
this.formModel = {
lessonId: '',
trainingId: '',
trainingName: '',
userId: '',
userName: '',
duration: ''
};
this.dialogVisible = false;
}
}
};
</script>