Authored by ZhongW

二审权限控制

... ... @@ -27,6 +27,11 @@ module.exports=function(app) {
/*二审驳回 用于权限配置*/
app.post("/goods/price/reject1","price_auditRejectProductPrice");
/*跳批量二审校验*/
app.post("/goods/price/ajax/secondCheck","price_skipBatchSecondView");
/*批量修改学生价格*/
app.get("/supplier/baseproduct/batchUpdateStudentPrice","goods.batchUpdateStudentPrice.Batch",function(){
... ...
... ... @@ -49,6 +49,15 @@ module.exports={
{name: 'size', type: 'Number'}
]
},
skipBatchSecondView:{
title:"跳转批量二审页面",
url:"/product/checkBatchAuditAuthority",
params:[
{name: 'product_skn',type: 'Number'},
]
},
auditPassProductPrice:{
title:"商品审核通过",
url:"/product/auditPassProductPrice",
... ...