Commit 9da949ff authored by 张子雨's avatar 张子雨

Merge branch 'feature/meal-3.0' of...

Merge branch 'feature/meal-3.0' of http://git.quantgroup.cn/ui/merchant-manage-ui into feature/meal-3.0
parents 39dcce1d a58348b0
......@@ -75,6 +75,7 @@ const CustomerInfo = props => {
const params = Object.assign(
{
hideImage: 0,
hidePrice: 0,
},
res,
);
......
......@@ -5,6 +5,7 @@ import { PlusOutlined } from '@ant-design/icons';
import { customerColumn } from './staticData/index';
import CustomerInfo from './components/CustomerInfo';
import utilStyle from '@/utils/utils.less';
import { stringOrObjectTrim } from '@/utils/utils';
import { apiEnterpriseList } from './service';
const BusinessCustomer = () => {
......@@ -15,7 +16,7 @@ const BusinessCustomer = () => {
const data = {
page: params.current,
size: params.pageSize,
data: params,
data: stringOrObjectTrim(params),
};
const res = await apiEnterpriseList(data);
return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment