$orderCount = $this->es_biz->count([
                    'index' => 'order_search-0',
                    'routing' => $userId,
                    'body' => [
                        'query' => [
                            'bool' => [
                                'must' => [
                                    ['term' => ['shopId' => $shopId]],
                                    ['term' => ['storeId' => 'taobao']]
                                ]
                            ]
                        ]
                    ]
                ])['count'];