Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-platform
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
陈智峰
jinfa-platform
Commits
f17ec721
Commit
f17ec721
authored
Dec 21, 2021
by
GuanHua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 装修接口传参修改
parent
5d4c34f2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
index.tsx
...ropsSettings/components/suggestProductCommodity/index.tsx
+1
-1
index.tsx
...e/categoryNavigation/components/CommodityDrawer/index.tsx
+1
-1
index.tsx
...plate/categoryNavigation/components/Layout/Tabs/index.tsx
+1
-1
index.tsx
src/pages/mobileTemplate/shopTemplateEdit/index.tsx
+1
-1
index.tsx
src/pages/mobileTemplate/shopTemplatePreview/index.tsx
+1
-1
No files found.
src/pages/editor/mobileSettingPanel/propsSettings/components/suggestProductCommodity/index.tsx
View file @
f17ec721
...
...
@@ -39,7 +39,7 @@ const SuggestProductCommodity: React.FC<SuggestProductCommodityProps> = (props:
if
(
id
&&
id
!=
record
.
id
)
{
const
_params
:
any
=
{
shopId
,
idInList
:
id
,
idInList
:
Array
.
isArray
(
id
)
?
id
.
join
(
','
)
:
id
,
current
:
1
,
pageSize
:
10
}
...
...
src/pages/mobileTemplate/categoryNavigation/components/CommodityDrawer/index.tsx
View file @
f17ec721
...
...
@@ -136,7 +136,7 @@ const CommodityDrawer: React.FC<CommodityDrawerProps> = (props: CommodityDrawerP
const
_params
=
{
// ...params,
shopId
,
idNotInList
:
Array
.
isArray
(
selectId
)
?
selectId
:
[
selectId
]
,
idNotInList
:
Array
.
isArray
(
selectId
)
?
selectId
.
join
(
','
)
:
selectId
,
...
formated
};
const
fetchService
=
service
||
getMarketingAdornChannelGoodsListAdorn
;
...
...
src/pages/mobileTemplate/categoryNavigation/components/Layout/Tabs/index.tsx
View file @
f17ec721
...
...
@@ -65,7 +65,7 @@ const CustomizeTabs: React.FC<Iprops> & { TabItem: typeof TabItem } = (props: Ip
?
getMarketingAdornGoodsListAdorn
:
getMarketingAdornChannelGoodsListAdorn
return
service
({
idInList
:
ids
as
any
||
[]
,
idInList
:
Array
.
isArray
(
ids
)
?
ids
.
join
(
","
)
:
ids
,
shopId
:
shopId
,
current
:
1
,
pageSize
:
ids
?.
length
,
...
...
src/pages/mobileTemplate/shopTemplateEdit/index.tsx
View file @
f17ec721
...
...
@@ -220,7 +220,7 @@ const mobileShopTempleteEdit: React.FC<ShopPreviewPropsType> = (props) => {
})
if
(
commodityIds
&&
commodityIds
.
length
>
0
)
{
const
param
:
any
=
{
idInList
:
commodityIds
,
idInList
:
commodityIds
.
join
(
','
)
,
shopId
:
shopId
,
current
:
1
,
pageSize
:
80
...
...
src/pages/mobileTemplate/shopTemplatePreview/index.tsx
View file @
f17ec721
...
...
@@ -205,7 +205,7 @@ const mobileShopTempleteEdit: React.FC<ShopPreviewPropsType> = (props) => {
})
if
(
commodityIds
&&
commodityIds
.
length
>
0
)
{
const
param
:
any
=
{
idInList
:
commodityIds
,
idInList
:
commodityIds
.
join
(
','
)
,
shopId
:
shopId
,
current
:
1
,
pageSize
:
80
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment