mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-25 06:09:11 +08:00
115 lines
4.1 KiB
JavaScript
Executable File
115 lines
4.1 KiB
JavaScript
Executable File
(function(vc, vm) {
|
|
|
|
vc.extends({
|
|
data: {
|
|
editBasePrivilegeInfo: {
|
|
pId: '',
|
|
name: '',
|
|
resource: '',
|
|
domain: '',
|
|
description: '',
|
|
mId: ''
|
|
|
|
}
|
|
},
|
|
_initMethod: function() {
|
|
|
|
},
|
|
_initEvent: function() {
|
|
vc.on('editBasePrivilege', 'openEditBasePrivilegeModal', function(_params) {
|
|
vc.component.refreshEditBasePrivilegeInfo();
|
|
$('#editBasePrivilegeModel').modal('show');
|
|
vc.copyObject(_params, vc.component.editBasePrivilegeInfo);
|
|
});
|
|
},
|
|
methods: {
|
|
editBasePrivilegeValidate: function() {
|
|
return vc.validate.validate({
|
|
editBasePrivilegeInfo: vc.component.editBasePrivilegeInfo
|
|
}, {
|
|
'editBasePrivilegeInfo.name': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "权限名称不能为空"
|
|
},
|
|
{
|
|
limit: "maxin",
|
|
param: "2,10",
|
|
errInfo: "权限名称必须在2至10字符之间"
|
|
},
|
|
],
|
|
'editBasePrivilegeInfo.resource': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "资源路径不能为空"
|
|
},
|
|
{
|
|
limit: "maxin",
|
|
param: "2,200",
|
|
errInfo: "资源路径必须在2至200字符之间"
|
|
},
|
|
],
|
|
'editBasePrivilegeInfo.domain': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "商户类型不能为空"
|
|
},
|
|
{
|
|
limit: "maxin",
|
|
param: "1,12",
|
|
errInfo: "商户类型错误"
|
|
},
|
|
],
|
|
'editBasePrivilegeInfo.description': [{
|
|
limit: "maxLength",
|
|
param: "200",
|
|
errInfo: "备注内容不能超过200"
|
|
}, ],
|
|
'editBasePrivilegeInfo.pId': [{
|
|
limit: "required",
|
|
param: "",
|
|
errInfo: "权限ID不能为空"
|
|
}]
|
|
});
|
|
},
|
|
editBasePrivilege: function() {
|
|
if (!vc.component.editBasePrivilegeValidate()) {
|
|
vc.toast(vc.validate.errInfo);
|
|
return;
|
|
}
|
|
|
|
vc.http.apiPost(
|
|
'/basePrivilege.updateBasePrivilege',
|
|
JSON.stringify(vc.component.editBasePrivilegeInfo), {
|
|
emulateJSON: true
|
|
},
|
|
function(json, res) {
|
|
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
|
|
if (res.status == 200) {
|
|
//关闭model
|
|
$('#editBasePrivilegeModel').modal('hide');
|
|
vc.emit('basePrivilegeManage', 'listBasePrivilege', {});
|
|
return;
|
|
}
|
|
vc.toast(json);
|
|
},
|
|
function(errInfo, error) {
|
|
console.log('请求失败处理');
|
|
|
|
vc.toast(errInfo);
|
|
});
|
|
},
|
|
refreshEditBasePrivilegeInfo: function() {
|
|
vc.component.editBasePrivilegeInfo = {
|
|
pId: '',
|
|
name: '',
|
|
domain: '',
|
|
description: '',
|
|
resource: ''
|
|
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
})(window.vc, window.vc.component); |