price.js 772 Bytes
module.exports=function(app) {
	/*代销变价页面渲染*/
	app.get("/goods/pricechange/index","goods.price.Index");

	/*列表数据*/
	app.post("/goods/price/list","goods_queryProductPriceList");

	/*获得单个变价详情*/
	app.post("/goods/getPrice","goods_getProductPrice");

	/*单个变价接口*/
	app.post("/goods/updatePrice","goods_updateProductPrice");

	/*批量变价接口*/
	app.post("/goods/batchUpdatePrice","goods_batchUpdateProductPrice");

	/*品牌合作模式页面渲染*/
	app.get("/goods/brandCooperation/index","goods.price.brandCooperation");

	/*列表数据*/
	app.post("/goods/brandCooperation/list","goods_queryBrandCooperationList");

	/*修改合作模式*/
	app.post("/goods/brandCooperation/update","goods_saveBrandCooperation");
}