|
@ -34,7 +34,12 @@ $(function(){
|
|
|
template.helper('getStatusName',function(status) {
|
|
|
return getStatusName(status)
|
|
|
})
|
|
|
|
|
|
template.helper('setReview',function(o){
|
|
|
if(o == 0){ return '<span style="color:#ffa54b">审核中</span>' }
|
|
|
if(o == 1){ return '<span style="color:#17b3ec">审核通过</span>' }
|
|
|
if(o == -1){ return '<span style="color:#ff4c4c">审核未通过</span>' }
|
|
|
if(o == -2){ return '<span style="color:#ff4c4c">审核无效</span>' }
|
|
|
})
|
|
|
template.helper('getReviewResultName',function(status) {
|
|
|
return getReviewResultName(status)
|
|
|
})
|