维护用户排序时间搜索

This commit is contained in:
wanyongkang
2020-11-24 15:22:25 +08:00
parent 4736fdd979
commit a326346f5b
2 changed files with 8 additions and 11 deletions

View File

@@ -101,7 +101,7 @@ class SellInfo extends Controller
$data['sell_percent'] = "我的营业额($user_cost)/总营业额($all_cost)=" . $sell_percent . '%';
$data['cost_percent'] = "消费客户数($user_cost_num)/所有客户($all_cost_num)=" . $cost_percent . '%';
$data['cost_register'] = "注册且购买过的客户($user_register_cost_count)/当月新注册客户总数($user_register_count)=" . $cost_register . '%';
$data['cost_old_user'] = "老客户在本月再次购买(" . ($user_cost_num - $user_register_cost_count) . ")/所有老客户(" . $cost_old_user . '%';
$data['cost_old_user'] = "老客户在本月再次购买(" . ($user_cost_num - $user_register_cost_count) . ")/所有老客户(" . ($all_cost_num - $user_register_count) . ')=' . $cost_old_user . '%';
$data['com_cost'] = "同比增加金额=" . $com_cost;
$data['com_percent'] = "同比增加百分比=" . $com_percent . '%';
$data['today_new_user'] = "今日新赠客户" . $today_new_user;