iwebshop 取产品评论 API
//最新评论列表
'getNewCommentindex'=>array(
'query'=>array(
'name' => 'comment as co',
'join' => 'left join goods as go on go.id = co.goods_id left join user as us on us.id = co.user_id',
'where' => ' co.status = 1 AND go.is_del = 0 AND go.id is not null',
'fields'=> 'us.username as username,go.img as img,go.sell_price as sell_price,go.name as name,co.point,co.contents,co.goods_id,co.time as time',
'order' => ' co.id desc',
'limit' => 10,
)
),