86 lines
2.9 KiB
Vue
86 lines
2.9 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<el-dialog title="编辑课程" :visible.sync="dialogVisible" width="500px" :before-close="doClose" center>
|
||
|
<data-form ref="dataform" :form="form" :form-model="formModel" :rules="rules" />
|
||
|
<span slot="footer" class="dialog-footer">
|
||
|
<el-button type="primary" @click="doCreate">{{ $t('global.confirm') }}</el-button>
|
||
|
<el-button @click="doClose">{{ $t('global.cancel') }}</el-button>
|
||
|
</span>
|
||
|
</el-dialog>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
import { updatePublishLesson } from '@/api/jmap/lesson';
|
||
|
export default {
|
||
|
name: 'EditLessonInfo',
|
||
|
props: {
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
dialogVisible: false,
|
||
|
cityList:[],
|
||
|
formModel:{
|
||
|
id:'',
|
||
|
remarks:'',
|
||
|
name:''
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
computed: {
|
||
|
form() {
|
||
|
const form = {
|
||
|
labelWidth: '150px',
|
||
|
items: [
|
||
|
{ prop: 'name', label: this.$t('publish.lessonName'), type: 'text', required: true},
|
||
|
{ prop: 'remarks', label: this.$t('publish.lessonIntroduction'), type: 'textarea', required: true, isAutoSize:{ minRows:1, maxRows:5 }}
|
||
|
]
|
||
|
};
|
||
|
return form;
|
||
|
},
|
||
|
rules() {
|
||
|
const crules = {
|
||
|
name:[
|
||
|
{ required: true, message: this.$t('rules.pleaseInputLessonName'), trigger: 'blur', max:100 },
|
||
|
{ required: true, message: this.$t('rules.pleaseInputLessonName'), trigger: 'change', max:100 }
|
||
|
],
|
||
|
remarks:[
|
||
|
{ required: true, message: this.$t('rules.pleaseLessonIntroduction'), trigger: 'blur', max:300 },
|
||
|
{ required: true, message: this.$t('rules.pleaseLessonIntroduction'), trigger: 'change', max:300 }
|
||
|
]
|
||
|
};
|
||
|
return crules;
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
doShow(row) {
|
||
|
this.formModel.id = row.id;
|
||
|
this.formModel.remarks = row.remarks;
|
||
|
this.formModel.name = row.name;
|
||
|
this.dialogVisible = true;
|
||
|
},
|
||
|
doCreate() {
|
||
|
const self = this;
|
||
|
this.$refs.dataform.validateForm(() => {
|
||
|
updatePublishLesson(this.formModel).then(response => {
|
||
|
this.$emit('refresh');
|
||
|
this.$message.success(this.$t('publish.updateSuccess'));
|
||
|
self.doClose();
|
||
|
}).catch(() => {
|
||
|
this.$message.error(this.$t('error.updateFailed'));
|
||
|
self.doClose();
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
doClose() {
|
||
|
this.isShow = false;
|
||
|
this.dialogVisible = false;
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
/deep/ .el-dialog--center .el-dialog__body{
|
||
|
padding: 15px 65px 10px 10px;
|
||
|
}
|
||
|
</style>
|