wuxw
2020-01-14 69e2baf5518079bfc16cfadc2fb29842fb3de85d
WebService/src/main/resources/components/appPackage/add-app/addApp.js
@@ -1,93 +1,92 @@
(function(vc){
(function (vc) {
    vc.extends({
        propTypes: {
               callBackListener:vc.propTypes.string, //父组件名称
               callBackFunction:vc.propTypes.string //父组件监听方法
            callBackListener: vc.propTypes.string, //父组件名称
            callBackFunction: vc.propTypes.string //父组件监听方法
        },
        data:{
            addAppInfo:{
                name:'',
securityCode:'',
whileListIp:'',
blackListIp:'',
remark:'',
        data: {
            addAppInfo: {
                appId: '',
                name: '',
                securityCode: '',
                whileListIp: '',
                blackListIp: '',
                remark: '',
            }
        },
         _initMethod:function(){
        _initMethod: function () {
         },
         _initEvent:function(){
            vc.on('addApp','openAddAppModal',function(){
        },
        _initEvent: function () {
            vc.on('addApp', 'openAddAppModal', function () {
                $('#addAppModel').modal('show');
            });
        },
        methods:{
            addAppValidate(){
        methods: {
            addAppValidate() {
                return vc.validate.validate({
                    addAppInfo:vc.component.addAppInfo
                },{
                    'addAppInfo.name':[
{
                            limit:"required",
                            param:"",
                            errInfo:"应用名称不能为空"
                    addAppInfo: vc.component.addAppInfo
                }, {
                    'addAppInfo.name': [
                        {
                            limit: "required",
                            param: "",
                            errInfo: "应用名称不能为空"
                        },
 {
                            limit:"maxin",
                            param:"2,50",
                            errInfo:"应用名称必须在2至50字符之间"
                        {
                            limit: "maxin",
                            param: "2,50",
                            errInfo: "应用名称必须在2至50字符之间"
                        },
                    ],
'addAppInfo.securityCode':[
 {
                            limit:"maxLength",
                            param:"64",
                            errInfo:"秘钥太长超过64位"
                    'addAppInfo.securityCode': [
                        {
                            limit: "maxLength",
                            param: "64",
                            errInfo: "秘钥太长超过64位"
                        },
                    ],
'addAppInfo.whileListIp':[
 {
                            limit:"maxLength",
                            param:"200",
                            errInfo:"白名单内容不能超过200"
                    'addAppInfo.whileListIp': [
                        {
                            limit: "maxLength",
                            param: "200",
                            errInfo: "白名单内容不能超过200"
                        },
                    ],
'addAppInfo.blackListIp':[
 {
                            limit:"maxLength",
                            param:"200",
                            errInfo:"黑名单内容不能超过200"
                    'addAppInfo.blackListIp': [
                        {
                            limit: "maxLength",
                            param: "200",
                            errInfo: "黑名单内容不能超过200"
                        },
                    ],
'addAppInfo.remark':[
 {
                            limit:"maxLength",
                            param:"200",
                            errInfo:"备注内容不能超过200"
                    'addAppInfo.remark': [
                        {
                            limit: "maxLength",
                            param: "200",
                            errInfo: "备注内容不能超过200"
                        },
                    ],
                });
            },
            saveAppInfo:function(){
                if(!vc.component.addAppValidate()){
                    vc.message(vc.validate.errInfo);
            saveAppInfo: function () {
                if (!vc.component.addAppValidate()) {
                    vc.toast(vc.validate.errInfo);
                    return ;
                    return;
                }
                vc.component.addAppInfo.communityId = vc.getCurrentCommunity().communityId;
                //vc.component.addAppInfo.communityId = vc.getCurrentCommunity().communityId;
                //不提交数据将数据 回调给侦听处理
                if(vc.notNull($props.callBackListener)){
                    vc.emit($props.callBackListener,$props.callBackFunction,vc.component.addAppInfo);
                if (vc.notNull($props.callBackListener)) {
                    vc.emit($props.callBackListener, $props.callBackFunction, vc.component.addAppInfo);
                    $('#addAppModel').modal('hide');
                    return ;
                    return;
                }
                vc.http.post(
@@ -95,37 +94,37 @@
                    'save',
                    JSON.stringify(vc.component.addAppInfo),
                    {
                        emulateJSON:true
                     },
                     function(json,res){
                        emulateJSON: true
                    },
                    function (json, res) {
                        //vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
                        if(res.status == 200){
                        if (res.status == 200) {
                            //关闭model
                            $('#addAppModel').modal('hide');
                            vc.component.clearAddAppInfo();
                            vc.emit('appManage','listApp',{});
                            vc.emit('appManage', 'listApp', {});
                            return ;
                            return;
                        }
                        vc.message(json);
                     },
                     function(errInfo,error){
                    },
                    function (errInfo, error) {
                        console.log('请求失败处理');
                        vc.message(errInfo);
                     });
                    });
            },
            clearAddAppInfo:function(){
            clearAddAppInfo: function () {
                vc.component.addAppInfo = {
                                            name:'',
securityCode:'',
whileListIp:'',
blackListIp:'',
remark:'',
                    name: '',
                    securityCode: '',
                    whileListIp: '',
                    blackListIp: '',
                    remark: '',
                                        };
                };
            }
        }
    });