Commit 695678f3 authored by GuanHua's avatar GuanHua

fix: 店铺装修问题修复

parent 3ee6e3fd
......@@ -78,7 +78,7 @@ const memberCenterRoute = {
// MemberRoute,
// HandlingRoute,
marketingRoute,
// ...asyncRoutes,
...asyncRoutes,
{
path: '/memberCenter/noAuth',
auth: false,
......
......@@ -98,7 +98,7 @@ const GoodsSetting: React.FC<GoodsSettingPropsType> = (props) => {
useEffect(() => {
fetchGoodsList()
}, [filterParam, current])
}, [filterParam, current, pageSize])
const fetchGoodsList = () => {
let param: any = {
......@@ -199,7 +199,7 @@ const GoodsSetting: React.FC<GoodsSettingPropsType> = (props) => {
// message.error("请选择要推荐的商品")
// return
// } else
if (selectGoodsList.length > 10) {
if (selectGoodsList.length > 9) {
message.error("最多只能推荐10件商品")
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