stats add bizs about

This commit is contained in:
qianhy
2023-03-27 15:46:51 +08:00
committed by lccsw
parent 75fa0d1d20
commit b0b8877983
+11 -5
View File
@@ -119,13 +119,14 @@ class order extends HD_Controller
6 => ['biz_name' => '三明代理店', 'type' => 3, 'city_id' => '350400'],
7 => ['biz_name' => '南平代理店', 'type' => 3, 'city_id' => '350700'],
8 => ['biz_name' => '漳州代理店', 'type' => 3, 'city_id' => '350600'],
9 => ['biz_name' => '厦门代理店', 'type' => 3, 'city_id' => '350200'],
];
$res = $this->common2Select($params, $config);
$this->data['info'] = $res['info'];
$this->data['params'] = $res['params'];
$this->data['url'] = '/stats/order/get_agent';
$this->data['type_name'] = '代理店';
$this->data['_title'] = '代理店品牌店群';
$this->data['_title'] = '代理店群';
return $this->show_view('stats/order/common2', true);
}
@@ -145,12 +146,12 @@ class order extends HD_Controller
$this->data['params'] = $res['params'];
$this->data['url'] = '/stats/order/get_partner';
$this->data['type_name'] = '合伙店';
$this->data['_title'] = '合伙店品牌店群';
$this->data['_title'] = '合伙店群';
return $this->show_view('stats/order/common2', true);
}
/**
* Notes:东风品牌店群
* Notes:品牌店群
* Created on: 2022/8/17 14:17
* Created by: dengbw
* @return bool|void
@@ -162,13 +163,18 @@ class order extends HD_Controller
$config['bizs'] = [
1 => ['biz_name' => '厦门东风', 'ids' => '20', 'rowspan' => 1],
2 => ['biz_name' => '晋江东风', 'ids' => '99'],
3 => ['biz_name' => '福州东风', 'ids' => '55']];
3 => ['biz_name' => '福州东风', 'ids' => '55'],
4 => ['biz_name' => '厦门哪吒', 'ids' => '191'],
5 => ['biz_name' => '宁德哪吒', 'ids' => '70'],
6 => ['biz_name' => '漳州哪吒', 'ids' => '160'],
7 => ['biz_name' => '泉州零跑', 'ids' => '63'],
];
$res = $this->common2Select($params, $config);
$this->data['info'] = $res['info'];
$this->data['params'] = $res['params'];
$this->data['url'] = '/stats/order/';
$this->data['type_name'] = '品牌店';
$this->data['_title'] = '东风品牌店群';
$this->data['_title'] = '品牌店群';
return $this->show_view('stats/order/common2', true);
}