shop.shopAudit.js 1.45 KB
module.exports={
    namespace:"shopAudit",
    apis:{
        /****************店铺审核**********************/
        getLastCheckShopInfoById:{
            title:"审核店铺详情",
            url:"/ShopsCheckRest/getLastCheckShopInfoById",
            params:[
                {name:"shopsId",type:"String"}
            ]
        },
        
        checkShopPass:{
            title:"审核通过",
            url:"/ShopsRest/checkShopPass",
            params: [
                {name:"shopsId",type:"Number"}
            ]
        },

        checkReject:{
            title:"驳回",
            url:"/ShopsRest/checkReject",
            params: [
                {name:"shopsId",type:"Number"}
            ]
        },

        /****************店铺装修审核**********************/

        findAuditShopsDecorator:{
            title:"店铺装修审核列表",
            url:"/ShopsDecoratorRest/findAuditShopsDecorator",
            params:[
                {name: 'supplierId', type: 'Number'},
                {name: 'brandId', type: 'Number'},
                {name: 'checkStatus', type: 'Number'}
            ]
        },

        auditShopsDecorator:{
            title:"店铺装修审核",
            url:"/ShopsDecoratorRest/auditShopsDecorator",
            params:[
                {name: 'id', type: 'Number'},
                {name: 'checkStatus', type: 'Number'},
                {name: 'comment', type: 'String'}
            ]
        }
    }
}