2019-09-26 10:54:07 +08:00
|
|
|
<template>
|
2019-09-26 13:21:15 +08:00
|
|
|
<el-dialog :title="title" :visible.sync="dialogVisible" width="500px" :before-close="doClose" center>
|
2019-09-26 10:54:07 +08:00
|
|
|
<data-form ref="dataform" :form="form" :formModel="formModel" :rules="rules"></data-form>
|
|
|
|
<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>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { listPublishMap } from '@/api/jmap/map'
|
|
|
|
|
|
|
|
import { getQuestById} from '@/api/quest';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'ScriptDraft',
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
dialogVisible: false,
|
|
|
|
mapList: [],
|
|
|
|
taskStatusList: [],
|
|
|
|
formModel: {
|
|
|
|
name: '',
|
|
|
|
mapId: '',
|
|
|
|
description:''
|
2019-10-22 14:43:27 +08:00
|
|
|
}
|
2019-09-26 10:54:07 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
title: String,
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
form() {
|
|
|
|
let form = {
|
2019-09-26 13:21:15 +08:00
|
|
|
labelWidth: '150px',
|
2019-09-26 10:54:07 +08:00
|
|
|
items: [
|
|
|
|
{ prop: 'name', label: this.$t('scriptRecord.scriptName'), type: 'text', required: true},
|
2019-10-24 11:20:00 +08:00
|
|
|
{ prop: 'mapId', label: this.$t('scriptRecord.map'), type: 'select', required: true, options: this.mapList,disabled:true},
|
2019-09-26 10:54:07 +08:00
|
|
|
{ prop: 'description', label: this.$t('scriptRecord.scriptDescription'), type: 'textarea', required: true},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
return form
|
|
|
|
},
|
|
|
|
rules() {
|
|
|
|
let crules = {
|
|
|
|
name: [
|
2019-10-22 11:20:43 +08:00
|
|
|
{ required: true, message: this.$t('scriptRecord.inputScriptName'), trigger: 'blur' },
|
2019-10-24 11:20:00 +08:00
|
|
|
{ required: true, message: this.$t('scriptRecord.inputScriptName'), trigger: 'change' },
|
2019-09-26 10:54:07 +08:00
|
|
|
],
|
|
|
|
mapId: [
|
2019-10-22 11:20:43 +08:00
|
|
|
{ required: true, message: this.$t('scriptRecord.selectMap'), trigger: 'change' },
|
2019-09-26 10:54:07 +08:00
|
|
|
],
|
|
|
|
description:[
|
2019-10-22 11:20:43 +08:00
|
|
|
{ required: true, message: this.$t('scriptRecord.inputScriptDescription'), trigger: 'blur' },
|
2019-10-24 11:20:00 +08:00
|
|
|
{ required: true, message: this.$t('scriptRecord.inputScriptDescription'), trigger: 'change' },
|
2019-09-26 10:54:07 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
return crules
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.loadInitData();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
loadInitData() {
|
|
|
|
this.mapList = [];
|
|
|
|
listPublishMap().then(response => {
|
|
|
|
this.mapList = response.data.map(elem => { return { value: elem.id, label: elem.name } });
|
|
|
|
})
|
|
|
|
},
|
|
|
|
doShow(questid) {
|
|
|
|
if(questid)
|
|
|
|
{
|
|
|
|
getQuestById(questid).then(resp=>{
|
|
|
|
let data={'name':resp.data.name,'description':resp.data.description,'mapId':resp.data.mapId};
|
|
|
|
this.formModel=data;
|
|
|
|
this.formModel.id=questid;
|
|
|
|
this.dialogVisible = true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.formModel.mapId=this.$route.params.mapId;
|
|
|
|
this.dialogVisible = true
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
doCreate() {
|
|
|
|
let self = this
|
|
|
|
this.$refs.dataform.validateForm(() => {
|
|
|
|
self.$emit('create', Object.assign({}, this.formModel));
|
|
|
|
self.doClose()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
doClose() {
|
|
|
|
this.$refs.dataform.resetForm();
|
|
|
|
this.dialogVisible = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-26 13:21:15 +08:00
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
/deep/ .el-dialog--center .el-dialog__body{
|
|
|
|
padding: 25px 65px 30px 10px;
|
|
|
|
}
|
|
|
|
</style>
|