客服完善

This commit is contained in:
SjS 2025-04-21 10:58:03 +08:00
parent eecbb9614d
commit b8db402ede
2 changed files with 0 additions and 2 deletions

View File

@ -64,7 +64,6 @@ public class CustomerServiceServiceImpl implements CustomerServiceService
@Override
public List<CustomerServiceVO> selectCustomerServiceList(CustomerServiceQuery query)
{
ServiceUtil.assertion(query.getAreaId()== null,"该运营区不存在");
query.addAreaPermission(AreaJoinPermission.CUSTOMER_SERVICE_VIEW.getCode());
return customerServiceMapper.selectCustomerServiceList(query);
}

View File

@ -60,7 +60,6 @@ public class CustomerServiceController extends BaseController
{
startPage();
startOrderBy();
query.setStoreId(getUserId());
query.setScope(true);
List<CustomerServiceVO> list = customerServiceService.selectCustomerServiceList(query);
return getDataTable(list);