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
09b22555
Commit
09b22555
authored
Feb 17, 2022
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
6f56abbf
492154b5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
8 deletions
+10
-8
reset.less
src/global/styles/reset.less
+4
-0
balance.ts
src/locales/en-US/balance.ts
+0
-0
balance.ts
src/locales/ko-KR/balance.ts
+0
-0
index.tsx
src/pages/afterService/components/ReturnDetailInfo/index.tsx
+2
-2
index.ts
.../afterService/components/ReturnInfoDrawer/schema/index.ts
+3
-3
index.tsx
src/pages/balance/accountsReceivable/invoice/index.tsx
+1
-3
No files found.
src/global/styles/reset.less
View file @
09b22555
...
...
@@ -324,6 +324,10 @@
display: none;
}
.ant-btn-link {
white-space: normal !important;
}
/* 处理某些电脑显示与缩放比推荐>100%的影响 */
@media all
...
...
src/locales/en-US/balance.ts
View file @
09b22555
This diff is collapsed.
Click to expand it.
src/locales/ko-KR/balance.ts
View file @
09b22555
This diff is collapsed.
Click to expand it.
src/pages/afterService/components/ReturnDetailInfo/index.tsx
View file @
09b22555
...
...
@@ -203,11 +203,11 @@ const ReturnDetailInfo: React.FC<ReturnDetailInfoProps> = ({
descriptions=
{
[
{
title
:
`${intl.formatMessage({ id: 'afterService.common.productColumns.payAmount2' }, { default: '已支付金额' })}:`
,
value
:
`
¥
${text}`
,
value
:
`
${intl.formatMessage({ id: 'common.money' }, { default: '¥' })}
${text}`
,
},
{
title
:
`${intl.formatMessage({ id: 'afterService.common.productColumns.purchaseAmount' }, { default: '采购金额' })}:`
,
value
:
`
¥
${record.purchaseAmount}`
,
value
:
`
${intl.formatMessage({ id: 'common.money' }, { default: '¥' })}
${record.purchaseAmount}`
,
},
]
}
percent=
{
(
text
/
record
.
purchaseAmount
)
*
100
}
...
...
src/pages/afterService/components/ReturnInfoDrawer/schema/index.ts
View file @
09b22555
...
...
@@ -131,8 +131,8 @@ const schema: ISchema = {
MEGA_LAYOUT_2
:
{
'x-component'
:
'Mega-Layout'
,
'x-component-props'
:
{
labelCol
:
6
,
wrapperCol
:
14
,
//
labelCol: 6,
//
wrapperCol: 14,
grid
:
true
,
columns
:
2
,
autoRow
:
true
,
...
...
@@ -150,7 +150,7 @@ const schema: ISchema = {
},
payRatio
:
{
type
:
'string'
,
title
:
'支付比例'
,
title
:
intl
.
formatMessage
({
id
:
'afterService.components.ReturnDetailInfo.payRatio'
},
{
default
:
'支付比例'
}),
editable
:
false
,
'x-component-props'
:
{
addonAfter
:
'%'
...
...
src/pages/balance/accountsReceivable/invoice/index.tsx
View file @
09b22555
...
...
@@ -151,7 +151,7 @@ const SettlementList: React.FC = () => {
const
{
data
,
code
,
message
:
msg
}
=
await
postSettleAccountsMemberSettlementInvoiceByReturn
(
postDataList
);
setSubmitLoading
(
false
);
if
(
code
!==
1000
)
{
message
.
error
(
msg
);
// message.error(intl.formatMessage({ id: `responseCode.${code}` })
);
return
}
formActions
.
submit
();
...
...
@@ -171,8 +171,6 @@ const SettlementList: React.FC = () => {
if
(
code
===
1000
)
{
formActions
.
submit
();
setVisible
(
false
)
}
else
{
message
.
error
(
msg
);
}
}
...
...
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