<template>
|
<el-dialog
|
custom-class="sy-modal"
|
|
:title="title"
|
:close-on-click-modal="false"
|
width="600px"
|
:before-close="onClose"
|
>
|
<div class="sy-default-form-modal-content" v-loading="loading">
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
<el-form-item label="权限名称" prop="name">
|
<el-input v-model.trim="form.name" clearable placeholder="请输入..."></el-input>
|
</el-form-item>
|
<el-form-item label="父级权限">
|
<el-input :modelValue="parent.Name" disabled></el-input>
|
</el-form-item>
|
<el-form-item label="优先级" prop="orderSort">
|
<el-input-number v-model="form.orderSort" :min="0" placeholder="请输入..." />
|
</el-form-item>
|
<el-form-item label="Icon">
|
<el-input v-model.trim="form.icon" clearable placeholder="请输入..."></el-input>
|
</el-form-item>
|
<el-form-item label="路由地址">
|
<el-input v-model.trim="form.code" clearable placeholder="请输入..."></el-input>
|
</el-form-item>
|
<el-form-item label="描述">
|
<el-input v-model.trim="form.description" clearable :rows="4" type="textarea" placeholder="请输入..."></el-input>
|
</el-form-item>
|
</el-form>
|
</div>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="onClose">取 消</el-button>
|
<el-button type="primary" @click="onSubmit(false)">提 交</el-button>
|
<el-button v-if="type==='add'" type="primary" @click="onSubmit(true)">提交并继续新增</el-button>
|
</span>
|
</template>
|
</el-dialog>
|
</template>
|
|
<script>
|
const defaultForm = {
|
name:'',
|
code:'',
|
description:'',
|
isButton:false,
|
isHide:false,
|
iskeepAlive:false,
|
menuType:'页面',
|
orderSort:0,
|
icon:'',
|
enabled:true
|
}
|
export default {
|
name:'permissionsManagementFormModalCompontent',
|
emits:['submitCallback','update:visible'],
|
props:{
|
visible:{
|
type:Boolean,
|
default:false
|
},
|
type:{
|
type:String,
|
default:'add'
|
},
|
parent:{
|
type:Object,
|
default:function(){
|
return {}
|
}
|
},
|
row:{
|
type:Object,
|
default:function(){
|
return {}
|
}
|
}
|
},
|
data(){
|
return {
|
title:'',
|
form:{...defaultForm},
|
loading:false,
|
rules:{
|
name:[
|
{ required: true, message: '请输入权限名称!' }
|
],
|
orderSort:[
|
{ required: true, message: '请设置优先级!' }
|
]
|
}
|
}
|
},
|
watch:{
|
visible(newVal,oldVal){
|
if (newVal!==oldVal) {
|
if (newVal) {
|
this.initForm();
|
} else {
|
this.clearForm();
|
}
|
}
|
}
|
},
|
methods:{
|
initForm(){
|
if (this.type==='add') {
|
this.title = '权限新增'
|
this.form = {...defaultForm}
|
this.$nextTick(()=>{
|
this.$refs.form.clearValidate()
|
})
|
} else {
|
this.title = '权限修改'
|
this.form.name = this.row.Name;
|
this.form.code = this.row.Code;
|
this.form.icon = this.row.Icon;
|
this.form.description = this.row.Description;
|
this.form.orderSort = this.row.OrderSort
|
}
|
},
|
clearForm(){
|
this.form = {...defaultForm}
|
},
|
close(){
|
this.$emit('update:visible',false)
|
},
|
onClose(){
|
this.close();
|
},
|
onSubmit(isMore){
|
this.$refs.form.validate((valid) => {
|
if (valid) {
|
this.dealSubmit((f)=>{
|
if (f) {
|
if (isMore) {
|
this.form = {...defaultForm}
|
this.$nextTick(()=>{
|
this.$refs.form.clearValidate()
|
})
|
} else {
|
this.close();
|
}
|
this.$emit('submitCallback',!isMore)
|
}
|
})
|
}
|
})
|
},
|
dealSubmit(callback){
|
let type = '', method = '', params = {...this.form};
|
params.pid = this.parent.Id
|
if (this.type==='add') {
|
type = 'post'
|
method = 'Post'
|
} else {
|
type = 'put'
|
method = 'Put'
|
params.id = this.row.Id
|
}
|
this.loading = true
|
this.$api[type](method,params,{block:'permission'}).then((d)=>{
|
this.loading = false
|
callback && callback(true)
|
}).catch((err)=>{
|
this.loading = false
|
callback && callback(false)
|
})
|
}
|
}
|
}
|
</script>
|
|
<style scoped lang="scss">
|
</style>
|