baserule.porattr.js 926 Bytes
module.exports=function(app) {
	/*商品管理>【产品属性】页面渲染*/
	app.get("/erpproduct/attribute/index","baserule.Porattr","porattr_queryProductSortListByConf",function(pros){
		this.$extend={
			moduleName:'商品基础规则',
			pageName:'产品属性列表',
			data:pros.data
		}
	});
	/*商品管理>【产品属性ajax获取】*/
	app.post("/product/attr/get","porattr_getAttr");
	/*商品管理>【添加产品属性ajax】*/
	app.post("/product/attr/add","porattr_addProductAttribute");
	/*商品管理>【更新产品属性ajax】*/
	app.post("/product/attr/update","porattr_updateProductAttribute");
	/*商品管理【根据类目ID ajax查询属性列表】*/
	app.post("/product/attr/queryProductAttributeList","porattr_queryProductAttributeList");
	/*商品管理【根据类目ID ajax查询属性的详细信息】*/
	app.post("/product/attr/getProductAttribute","porattr_getProductAttribute");
}