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
shenshaokai
jinfa-platform
Commits
fadff86f
Commit
fadff86f
authored
Dec 16, 2020
by
GuanHua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复模板装修相关bug
parent
95bacda4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
28 deletions
+31
-28
index.tsx
...ngsPanel/propsSettings/components/AdvertSetting/index.tsx
+28
-26
index.tsx
...ingsPanel/propsSettings/components/GoodsSetting/index.tsx
+2
-1
index.tsx
src/pages/editor/shopEdit/index.tsx
+1
-1
index.tsx
src/pages/preview/channelPreview/index.tsx
+0
-0
No files found.
src/pages/editor/settingsPanel/propsSettings/components/AdvertSetting/index.tsx
View file @
fadff86f
...
...
@@ -11,7 +11,7 @@ import { ArrowUpOutlined, DeleteOutlined, PlusOutlined, ArrowDownOutlined, Caret
import
{
addTempalteIdToList
}
from
'../../../../utils'
import
styles
from
'./index.less'
interface
a
dvertItemType
{
interface
A
dvertItemType
{
/**
* ID
*/
...
...
@@ -54,7 +54,7 @@ interface advertItemType {
interface
AdvertSettingPropsType
{
advertList
:
a
dvertItemType
[];
advertList
:
A
dvertItemType
[];
onChange
:
Function
;
type
:
'top'
|
'banner'
|
'interact'
|
'category'
;
templateid
:
number
;
...
...
@@ -64,7 +64,7 @@ interface AdvertSettingPropsType {
const
AdvertSetting
:
React
.
FC
<
AdvertSettingPropsType
>
=
forwardRef
((
props
,
ref
)
=>
{
const
{
advertList
=
[],
templateid
,
type
,
categoryid
,
templateType
}
=
props
const
[
list
,
setList
]
=
useState
<
a
dvertItemType
[]
>
(
advertList
)
const
[
list
,
setList
]
=
useState
<
A
dvertItemType
[]
>
(
advertList
)
const
[
confirmLoading
,
setConfirmLoading
]
=
useState
<
boolean
>
(
false
)
const
[
newProps
,
setNewProps
]
=
useState
(
props
)
...
...
@@ -87,10 +87,10 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
setNewProps
(
newProps
)
}
const
sortUp
=
(
index
:
number
,
item
:
a
dvertItemType
)
=>
{
le
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
le
t
tempItem
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
le
t
temp
=
newList
[
index
-
1
]
const
sortUp
=
(
index
:
number
,
item
:
A
dvertItemType
)
=>
{
cons
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
cons
t
tempItem
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
cons
t
temp
=
newList
[
index
-
1
]
newList
[
index
-
1
]
=
item
newList
[
index
-
1
].
sort
=
temp
.
sort
newList
[
index
]
=
temp
...
...
@@ -99,10 +99,10 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
changeNewProps
(
'advertList'
,
newList
)
}
const
sortDown
=
(
index
:
number
,
item
:
a
dvertItemType
)
=>
{
le
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
le
t
temp
=
newList
[
index
+
1
]
le
t
tempItem
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
const
sortDown
=
(
index
:
number
,
item
:
A
dvertItemType
)
=>
{
cons
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
cons
t
temp
=
newList
[
index
+
1
]
cons
t
tempItem
=
JSON
.
parse
(
JSON
.
stringify
(
item
))
newList
[
index
+
1
]
=
item
newList
[
index
+
1
].
sort
=
temp
.
sort
newList
[
index
]
=
temp
...
...
@@ -112,7 +112,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
}
const
addSliderItem
=
()
=>
{
le
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
cons
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
let
sort
=
0
if
(
newList
.
length
<=
0
)
{
sort
=
1
...
...
@@ -120,7 +120,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
sort
=
newList
[
newList
.
length
-
1
].
sort
+
1
}
le
t
tempItem
:
any
=
{
cons
t
tempItem
:
any
=
{
templateId
:
Number
(
templateid
),
type
:
getAdvertType
(
type
),
name
:
''
,
...
...
@@ -140,7 +140,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
}
const
handleDeleteItem
=
(
index
:
number
)
=>
{
le
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
cons
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
newList
.
splice
(
index
,
1
)
let
sort
=
1
newList
.
map
(
item
=>
{
...
...
@@ -152,7 +152,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
}
const
handleExpand
=
(
sort
:
number
,
state
:
boolean
)
=>
{
le
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
cons
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
newList
.
map
(
item
=>
{
if
(
item
.
sort
===
sort
)
{
item
.
expand
=
state
...
...
@@ -162,7 +162,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
}
const
handleKeyChange
=
(
value
:
string
,
sort
:
number
,
key
:
string
)
=>
{
le
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
cons
t
newList
=
JSON
.
parse
(
JSON
.
stringify
(
list
))
newList
.
map
(
item
=>
{
if
(
item
.
sort
===
sort
)
{
item
[
key
]
=
value
...
...
@@ -193,9 +193,10 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
return
}
setConfirmLoading
(
true
)
le
t
newParam
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
newProps
))
cons
t
newParam
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
newProps
))
newParam
.
advertList
=
newParam
.
advertList
.
map
((
item
)
=>
{
if
(
!
item
.
link
&&
!
item
.
link
.
startsWith
(
'http://'
)
&&
!
item
.
link
.
startsWith
(
'https://'
))
{
console
.
log
(
item
.
link
,
"item.link"
)
if
(
item
.
link
&&
!
item
.
link
.
startsWith
(
'http://'
)
&&
!
item
.
link
.
startsWith
(
'https://'
))
{
item
.
link
=
`http://
${
item
.
link
}
`
}
return
item
...
...
@@ -247,7 +248,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
reject
()
return
}
le
t
param
:
any
=
{
cons
t
param
:
any
=
{
templateId
:
templateid
,
type
:
getAdvertType
(
type
),
adverts
:
addTempalteIdToList
(
advertList
,
templateid
)
...
...
@@ -293,7 +294,7 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
<
div
className=
{
styles
.
advert_setting_line_name
}
onClick=
{
()
=>
handleExpand
(
item
.
sort
,
!
item
.
expand
)
}
>
<
span
>
{
item
.
name
}
</
span
>
{
!!
item
.
expand
?
<
CaretUpOutlined
className=
{
styles
.
icon
}
/>
:
<
CaretDownOutlined
className=
{
styles
.
icon
}
/>
item
.
expand
?
<
CaretUpOutlined
className=
{
styles
.
icon
}
/>
:
<
CaretDownOutlined
className=
{
styles
.
icon
}
/>
}
</
div
>
{
...
...
@@ -319,10 +320,10 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
<
div
className=
{
styles
.
advert_setting_line_addItem_line
}
>
<
div
className=
{
styles
.
advert_setting_line_addItem_line_label
}
>
链接
</
div
>
<
div
className=
{
styles
.
advert_setting_line_addItem_line_brief
}
>
<
Input
className=
{
styles
.
advert_setting_line_addItem_input
}
value=
{
item
.
link
}
onChange=
{
(
e
)
=>
handleKeyChange
(
e
.
target
.
value
,
item
.
sort
,
'link'
)
}
<
Input
className=
{
styles
.
advert_setting_line_addItem_input
}
value=
{
item
.
link
}
onChange=
{
(
e
)
=>
handleKeyChange
(
e
.
target
.
value
,
item
.
sort
,
'link'
)
}
/>
</
div
>
</
div
>
...
...
@@ -344,4 +345,6 @@ const AdvertSetting: React.FC<AdvertSettingPropsType> = forwardRef((props, ref)
)
})
export
default
AdvertSetting
\ No newline at end of file
AdvertSetting
.
displayName
=
"AdvertSetting"
export
default
AdvertSetting
src/pages/editor/settingsPanel/propsSettings/components/GoodsSetting/index.tsx
View file @
fadff86f
import
React
,
{
useState
,
useEffect
,
useCallback
}
from
'react'
import
React
,
{
useState
,
useEffect
}
from
'react'
import
{
clearSelectedStatus
,
changeProps
}
from
'lingxi-editor-core'
import
{
Row
,
Col
,
Button
,
Input
,
Pagination
,
Select
,
Form
,
message
,
Modal
}
from
'antd'
import
SettingList
from
'../../../../components/SettingList'
...
...
@@ -207,6 +207,7 @@ const GoodsSetting: React.FC<GoodsSettingPropsType> = (props) => {
changeProps
({
props
:
{
linkdisable
:
true
,
templateid
,
categoryid
,
goodsList
:
newList
...
...
src/pages/editor/shopEdit/index.tsx
View file @
fadff86f
...
...
@@ -127,7 +127,7 @@ const ShopEdit: React.FC<ShopEditPropsType> = (props) => {
const
fetchShopInfo
=
()
=>
{
return
new
Promise
((
resolve
)
=>
{
const
param
:
any
=
{
memberId
,
memberId
,
roleId
:
memberRoleId
}
PublicApi
.
getTemplateShopFindShop
(
param
).
then
(
res
=>
{
...
...
src/pages/preview/channelPreview/index.tsx
View file @
fadff86f
This diff is collapsed.
Click to expand it.
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