|
@@ -98,7 +98,8 @@ class Price
|
|
|
public function getHave($info)
|
|
|
{
|
|
|
$result['status'] = 1;
|
|
|
- if ($info['have_vip']) {
|
|
|
+ if ($info['have_vip'] && $info['have_vip'] != '[]') {
|
|
|
+ $info['have_vip'] = str_replace('a', '', $info['have_vip']);
|
|
|
$result['status'] = 2;
|
|
|
$result['list'] = [];
|
|
|
$where['id'] = ['in', $info['have_vip']];
|