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
linweijiong
jinfa-platform
Commits
3e64aae2
Commit
3e64aae2
authored
Aug 20, 2021
by
XieZhiXiong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v2' of
http://10.0.0.22:3000/lingxi/lingxi-business-paltform
into v2
parents
ca4dbfbf
be321b34
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletion
+13
-1
selectChannel.tsx
...pages/commodity/products/addChannelItem/selectChannel.tsx
+3
-0
selectProduct.tsx
...pages/commodity/products/addChannelItem/selectProduct.tsx
+3
-0
priceAttributeForm.tsx
...commodity/products/addProductsItem/priceAttributeForm.tsx
+7
-1
No files found.
src/pages/commodity/products/addChannelItem/selectChannel.tsx
View file @
3e64aae2
...
...
@@ -12,6 +12,7 @@ import ModalTable from '@/components/ModalTable'
import
{
store
}
from
'@/store'
import
{
observer
}
from
'mobx-react'
import
EyePreview
from
'@/components/EyePreview'
;
import
{
clearModalParams
}
from
'@/utils'
;
const
{
Search
}
=
Input
const
{
Option
}
=
Select
...
...
@@ -199,6 +200,7 @@ const SelectChannel:React.FC<IProps> = (props) => {
setVisibleChannelMember
(
false
)
console
.
log
(
memberRowCtl
.
selectRow
,
memberRowCtl
.
selectedRowKeys
,
'选中的项'
)
setSelectMemberRow
(
memberRowCtl
.
selectRow
)
clearModalParams
()
}
const
clickDeleteMember
=
(
record
:
any
)
=>
{
...
...
@@ -210,6 +212,7 @@ const SelectChannel:React.FC<IProps> = (props) => {
const
handleCancelAddMember
=
()
=>
{
setVisibleChannelMember
(
false
)
clearModalParams
()
}
const
roleChange
=
(
value
:
number
,
option
:
IOption
)
=>
{
...
...
src/pages/commodity/products/addChannelItem/selectProduct.tsx
View file @
3e64aae2
...
...
@@ -19,6 +19,7 @@ import Submit from '@/components/NiceForm/components/Submit'
import
{
inject
,
observer
}
from
'mobx-react'
import
{
store
}
from
'@/store'
import
{
clearModalParams
}
from
'@/utils'
;
const
layout
=
{
labelCol
:
{
...
...
@@ -173,11 +174,13 @@ const SelectProduct:React.FC<IProps> = (props) => {
const
handleOkAddTabs
=
()
=>
{
setSelectProduct
(
productRowCtl
.
selectRow
)
setVisibleAddTabs
(
false
)
clearModalParams
()
}
const
handleCancelAddTabs
=
()
=>
{
setVisibleAddTabs
(
false
)
productRowCtl
.
setSelectedRowKeys
([])
clearModalParams
()
}
const
clickDelete
=
(
record
:
any
)
=>
{
...
...
src/pages/commodity/products/addProductsItem/priceAttributeForm.tsx
View file @
3e64aae2
...
...
@@ -690,6 +690,11 @@ const PriceAttributeForm: React.FC<Iprops> = (props) => {
message
:
'请输入最小起订数'
},
{
type
:
'number'
,
min
:
0.001
,
message
:
'请输入大于0的数值'
,
},
{
pattern
:
/^
\d
+
(\.\d
{1,3}
)?
$/
,
message
:
'最小起订数小数点后仅限三位'
,
}
...
...
@@ -714,7 +719,8 @@ const PriceAttributeForm: React.FC<Iprops> = (props) => {
// initialValue={planPrice}
>
{
history
.
location
.
query
?.
id
?
<
Radio
.
Group
onChange=
{
handlePlanPriceChange
}
disabled=
{
!
productInfoByEdit
.
isUpdateAttribute
}
>
// disabled=
{
!
productInfoByEdit
.
isUpdateAttribute
}
history
.
location
.
query
?.
id
?
<
Radio
.
Group
onChange=
{
handlePlanPriceChange
}
>
<
Radio
value=
{
1
}
>
现货价格
</
Radio
>
<
Radio
value=
{
2
}
>
价格需要询价
</
Radio
>
<
Radio
value=
{
3
}
>
积分兑换商品
</
Radio
>
...
...
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