product.productBatch.js 1.86 KB
/**
 *  商品量贩
 */
module.exports={
    namespace:"productBatch",
    apis:{
        productBatchList:{
            title: "单品列表 ajax 分页",
            url: '/productBatchList',
            params: [
                {name: 'productSkn', type: 'String'},
                {name: 'productName', type: 'String'},
                {name: 'brand', type: 'Number'},
                {name: 'minCount', type: 'Number'},
                {name: 'page', type: 'Number'},
                {name: 'size', type: 'Number'}
            ]
        },
        productBatchUpdate: {
            title: "保存编辑",
            url: '/productBatchUpdate',
            params: [
                { name: 'id', type: 'Number'},
                { name: 'productSkn', type: 'String'},
                { name: 'discount', type: 'Number'},
                { name: 'status', type: 'Number'},
                { name: 'minCount', type: 'Number'},
                { name: 'promotionPhrase', type: 'String'}
            ]
        },
        productBatchTrigger: {
            title: "开启关闭",
            url: "/productBatchTrigger",
            params: [
                { name: 'id', type: 'Number'},
                { name: 'status', type: 'Number'}
            ]
        },
        findProductBatchByID: {
            title: "查询单个商品量贩",
            url: "/findProductBatchByID",
            params: [
                { name: 'id', type: 'Number'}
            ]
        },
        findBatchHistory: {
            title: "查询操作历史记录",
            url: "/findBatchHistory",
            params: [
                { name: 'id', type: 'Number'}
            ]
        },
        syncProductBatchToFront: {
            title: "同步到前台",
            url: "/syncProductBatchToFront",
            params: [
                { name: 'id', type: 'Number'}
            ]
        }
    }
}