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.
 
 
 
 
 
 
zhishifufei_php/application/admin/view/setting/system_role/edit.php

98 lines
3.7 KiB

<!DOCTYPE html>
<!--suppress JSAnnotator -->
<html lang="zh-CN">
<head>
{include file="public/head"}
<title></title>
</head>
<body>
<div id="form-add" class="mp-form" v-cloak>
<i-Form :model="formData" :label-width="80" >
<Form-Item label="身份名称">
<i-input v-model="formData.role_name" placeholder="请输入身份名称"></i-input>
</Form-Item>
<Form-Item label="身份标识">
<i-input v-model="formData.sign" placeholder="唯一身份标识,一旦确定,不可更改。" disabled></i-input>
</Form-Item>
<Form-Item label="是否开启">
<Radio-Group v-model="formData.status">
<Radio label="1">开启</Radio>
<Radio label="0">关闭</Radio>
</Radio-Group>
</Form-Item>
<Form-Item label="权限">
<Tree :data="menus" show-checkbox ref="tree"></Tree>
</Form-Item>
<Form-Item :class="'add-submit-item'">
<i-Button :type="'primary'" :html-type="'submit'" :size="'large'" :long="true" :loading="loading" @click.prevent="submit">提交</i-Button>
</Form-Item>
</i-Form>
</div>
<script>
$eb = parent._mpApi;
var role = <?php echo $role; ?> || {};
var menus = <?php echo $menus; ?> || [];
mpFrame.start(function(Vue){
new Vue({
el:'#form-add',
data:{
formData:{
role_name:role.role_name || '',
status:String(role.status) || '1',
checked_menus:role.rules,
sign:role.sign,
},
menus:[],
loading:false
},
methods:{
tidyRes:function(){
var data = [];
menus.map((menu)=>{
data.push(this.initMenu(menu));
});
this.$set(this,'menus',data);
},
initMenu:function(menu){
var data = {},checkMenus = ','+this.formData.checked_menus+',';
data.title = menu.menu_name;
data.id = menu.id;
if(menu.child && menu.child.length >0){
data.children = [];
menu.child.map((child)=>{
data.children.push(this.initMenu(child));
})
}else{
data.checked = checkMenus.indexOf(String(','+data.id+',')) !== -1;
data.expand = !data.checked;
}
return data;
},
submit:function(){
this.loading = true;
this.formData.checked_menus = [];
this.$refs.tree.getCheckedNodes().map((node)=>{
this.formData.checked_menus.push(node.id);
});
$eb.axios.post("{$updateUrl}",this.formData).then((res)=>{
if(res.status && res.data.code == 200)
return Promise.resolve(res.data);
else
return Promise.reject(res.data.msg || '添加失败,请稍候再试!');
}).then((res)=>{
$eb.message('success',res.msg || '操作成功!');
$eb.closeModalFrame(window.name);
}).catch((err)=>{
this.loading=false;
$eb.message('error',err);
});
}
},
mounted:function(){
t = this;
this.tidyRes();
}
});
});
</script>
</body>