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
1ff03345
Commit
1ff03345
authored
Aug 06, 2021
by
前端-钟卫鹏
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
62d9c85a
5f81110f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
FormList.tsx
src/pages/contract/manage/add/components/FormList.tsx
+1
-1
Fromtable.tsx
src/pages/contract/manage/add/components/Fromtable.tsx
+1
-1
FormList.tsx
src/pages/contract/manage/editing/components/FormList.tsx
+1
-1
Fromtable.tsx
src/pages/contract/manage/editing/components/Fromtable.tsx
+1
-1
index.tsx
...ingsPanel/propsSettings/components/GoodsSetting/index.tsx
+1
-1
No files found.
src/pages/contract/manage/add/components/FormList.tsx
View file @
1ff03345
...
...
@@ -274,7 +274,7 @@ const FormList = (props: any) => {
dataIndex
:
'bidAmount'
,
key
:
'bidAmount'
,
align
:
'center'
,
render
:
(
text
:
any
,
record
:
any
)
=>
<
Text
>
¥
{
record
.
bidAmount
}
</
Text
>
render
:
(
text
:
any
,
record
:
any
)
=>
<
Text
>
¥
{
Number
(
record
.
bidAmount
).
toFixed
(
2
)
}
</
Text
>
},
];
...
...
src/pages/contract/manage/add/components/Fromtable.tsx
View file @
1ff03345
...
...
@@ -115,7 +115,7 @@ const FormList = (props: any) => {
item
.
payWay
!=
3
&&
<
div
className=
{
styles
.
setBox
}
>
{
/* payParam */
}
<
InputNumber
placeholder=
''
onChange=
{
(
e
)
=>
onSelectChange
(
e
,
'payParam'
,
index
)
}
width=
{
60
}
max=
{
31
}
/>
<
InputNumber
placeholder=
''
onChange=
{
(
e
)
=>
onSelectChange
(
e
,
'payParam'
,
index
)
}
width=
{
60
}
max=
{
item
.
payWay
==
2
?
31
:
999
}
/>
<
span
>
{
item
.
payWay
==
2
?
'号'
:
item
.
payWay
==
1
?
'天'
:
''
}
</
span
>
</
div
>
}
...
...
src/pages/contract/manage/editing/components/FormList.tsx
View file @
1ff03345
...
...
@@ -133,7 +133,7 @@ const FormList = (props: any) => {
dataIndex
:
'bidAmount'
,
key
:
'bidAmount'
,
align
:
'center'
,
render
:
(
text
:
any
,
record
:
any
)
=>
<
Text
>
¥
{
record
.
bidAmount
}
</
Text
>
render
:
(
text
:
any
,
record
:
any
)
=>
<
Text
>
¥
{
Number
(
record
.
bidAmount
).
toFixed
(
2
)
}
</
Text
>
},
];
useEffect
(()
=>
{
...
...
src/pages/contract/manage/editing/components/Fromtable.tsx
View file @
1ff03345
...
...
@@ -105,7 +105,7 @@ const FormList = (props: any) => {
item
.
payWay
!=
3
&&
<
div
className=
{
styles
.
setBox
}
>
{
/* payParam */
}
<
InputNumber
defaultValue=
{
item
.
payParam
}
placeholder=
''
onChange=
{
(
e
)
=>
onSelectChange
(
e
,
'payParam'
,
index
)
}
width=
{
60
}
max=
{
31
}
/>
<
InputNumber
placeholder=
''
onChange=
{
(
e
)
=>
onSelectChange
(
e
,
'payParam'
,
index
)
}
width=
{
60
}
max=
{
item
.
payWay
==
2
?
31
:
999
}
/>
<
span
>
{
item
.
payWay
==
2
?
'号'
:
item
.
payWay
==
1
?
'天'
:
''
}
</
span
>
</
div
>
}
...
...
src/pages/editor/settingsPanel/propsSettings/components/GoodsSetting/index.tsx
View file @
1ff03345
...
...
@@ -200,7 +200,7 @@ const GoodsSetting: React.FC<GoodsSettingPropsType> = (props) => {
// return
// } else
if
(
selectGoodsList
.
length
>
9
)
{
message
.
error
(
"最多只能推荐
10
件商品"
)
message
.
error
(
"最多只能推荐
9
件商品"
)
return
}
setConfirmLoading
(
true
)
...
...
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