{template 'common/header'} {template 'common'}
查询网店的销售指标(注:其中订单数指完成的订单数;订单总金额指完成的订单总金额。)
销售指标分析

平均每位客户订单金额

订单总金额 总会员数 平均每位客户订单金额
{$allorderprice} {$allmembercount} {php echo round(($allorderprice/($allmembercount==0?1:$allmembercount)),2);}%
{$pager}

平均每次访问订单金额

订单总金额 总访问次数 平均每次访问订单金额
{$allorderprice} {$allorderviewcount} {php echo round(($allorderprice/($allorderviewcount==0?1:$allorderviewcount)),2);}%
{$pager}

订单转化率

总订单数 总访问次数 订单转化率
{$allordercount} {$allorderviewcount} {php echo round(($allordercount/($allmembercount==0?1:$allmembercount))*100,2);}%
{$pager}

注册会员购买率

有过订单的会员 总会员数 注册会员购买率
{$haveordermembercount} {$allmembercount} {php echo round(($haveordermembercount/($allmembercount==0?1:$allmembercount))*100,2);}%
{$pager}

平均会员订单量

总订单数 总会员数 平均会员订单量
{$allordercount} {$allmembercount} {php echo round(($allordercount/($allmembercount==0?1:$allmembercount))*100,2);}%
{$pager}
{template 'common/footer'}