You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.5 KiB
106 lines
2.5 KiB
<template> |
|
<div> |
|
<el-dialog |
|
v-bind="$attrs" |
|
width="500px" |
|
:close-on-click-modal="false" |
|
:modal-append-to-body="false" |
|
v-on="$listeners" |
|
@open="onOpen" |
|
@close="onClose" |
|
> |
|
<el-row :gutter="15"> |
|
<el-form |
|
ref="elForm" |
|
:model="formData" |
|
:rules="rules" |
|
size="medium" |
|
label-width="100px" |
|
> |
|
<el-col :span="24"> |
|
<el-form-item label="生成类型" prop="type"> |
|
<el-radio-group v-model="formData.type"> |
|
<el-radio-button |
|
v-for="(item, index) in typeOptions" |
|
:key="index" |
|
:label="item.value" |
|
:disabled="item.disabled" |
|
> |
|
{{ item.label }} |
|
</el-radio-button> |
|
</el-radio-group> |
|
</el-form-item> |
|
<el-form-item v-if="showFileName" label="文件名" prop="fileName"> |
|
<el-input v-model="formData.fileName" placeholder="请输入文件名" clearable /> |
|
</el-form-item> |
|
</el-col> |
|
</el-form> |
|
</el-row> |
|
|
|
<div slot="footer"> |
|
<el-button @click="close"> |
|
取消 |
|
</el-button> |
|
<el-button type="primary" @click="handelConfirm"> |
|
确定 |
|
</el-button> |
|
</div> |
|
</el-dialog> |
|
</div> |
|
</template> |
|
<script> |
|
export default { |
|
inheritAttrs: false, |
|
props: ['showFileName'], |
|
data() { |
|
return { |
|
formData: { |
|
fileName: undefined, |
|
type: 'file' |
|
}, |
|
rules: { |
|
fileName: [{ |
|
required: true, |
|
message: '请输入文件名', |
|
trigger: 'blur' |
|
}], |
|
type: [{ |
|
required: true, |
|
message: '生成类型不能为空', |
|
trigger: 'change' |
|
}] |
|
}, |
|
typeOptions: [{ |
|
label: '页面', |
|
value: 'file' |
|
}, { |
|
label: '弹窗', |
|
value: 'dialog' |
|
}] |
|
} |
|
}, |
|
computed: { |
|
}, |
|
watch: {}, |
|
mounted() {}, |
|
methods: { |
|
onOpen() { |
|
if (this.showFileName) { |
|
this.formData.fileName = `${+new Date()}.vue` |
|
} |
|
}, |
|
onClose() { |
|
}, |
|
close(e) { |
|
this.$emit('update:visible', false) |
|
}, |
|
handelConfirm() { |
|
this.$refs.elForm.validate(valid => { |
|
if (!valid) return |
|
this.$emit('confirm', { ...this.formData }) |
|
this.close() |
|
}) |
|
} |
|
} |
|
} |
|
</script>
|
|
|