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
5e3e4606
Commit
5e3e4606
authored
Dec 31, 2020
by
前端-黄佳鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改物流能力中心 待提交选择商品为售后的时候显示订单编号
parent
b68c1dd9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
47 additions
and
14 deletions
+47
-14
index.ts
src/components/ModalTable/schema/index.ts
+4
-3
ModalTableOrder.tsx
...ges/logistics/addLogistics/components/ModalTableOrder.tsx
+5
-5
columns.ts
src/pages/logistics/addLogistics/components/columns.ts
+28
-0
index.tsx
src/pages/logistics/addLogistics/index.tsx
+0
-0
payWayTable.tsx
src/pages/payandSettle/paySetting/components/payWayTable.tsx
+2
-2
setUpModal.tsx
src/pages/payandSettle/paySetting/components/setUpModal.tsx
+2
-2
details.tsx
...es/transaction/confirmInquiryQuote/components/details.tsx
+2
-2
addForm.tsx
src/pages/transaction/goodsOffer/addEnquiryOrder/addForm.tsx
+4
-0
No files found.
src/components/ModalTable/schema/index.ts
View file @
5e3e4606
...
...
@@ -642,12 +642,13 @@ export const logisticsDeliverySearchSchema: ISchema = {
}
}
},
inv
entoryId
:
{
inv
oicesType
:
{
type
:
'string'
,
"x-component"
:
'SearchSelect'
,
// fetchSearch: PublicApi.getWarehouseInvoicesTypeAll,
// "x-component": 'SearchSelect',
'x-component-props'
:
{
placeholder
:
'单据类型'
,
fetchSearch
:
PublicApi
.
getWarehouseInvoicesTypeAll
,
style
:
{
width
:
160
}
...
...
src/pages/logistics/addLogistics/components/ModalTableOrder.tsx
View file @
5e3e4606
...
...
@@ -30,7 +30,7 @@ export interface ModalTableProps extends IStandardTableProps<any> {
export
const
logisticsDeliverySearchSchema
:
ISchema
=
{
type
:
'object'
,
properties
:
{
invoices
No
:
{
order
No
:
{
type
:
'string'
,
'x-component'
:
'ModalSearch'
,
'x-component-props'
:
{
...
...
@@ -53,7 +53,7 @@ export const logisticsDeliverySearchSchema: ISchema = {
},
},
properties
:
{
orderNo
:
{
memberName
:
{
type
:
'string'
,
"x-component-props"
:
{
placeholder
:
'会员名称'
,
...
...
@@ -62,7 +62,7 @@ export const logisticsDeliverySearchSchema: ISchema = {
}
}
},
invoicesAbstract
:
{
orderThe
:
{
type
:
'string'
,
"x-component-props"
:
{
placeholder
:
'单据摘要'
,
...
...
@@ -71,7 +71,7 @@ export const logisticsDeliverySearchSchema: ISchema = {
}
}
},
"[start
TransactionTime,endTransaction
Time]"
:
{
"[start
CreateTime,endCreate
Time]"
:
{
type
:
'string'
,
"x-component"
:
"dateSelect"
,
"x-component-props"
:
{
...
...
@@ -283,7 +283,7 @@ const ModalTableOrder: React.FC<ModalTableProps> = (props) => {
useStateFilterSearchLinkageEffect
(
$
,
actions
,
type
===
1
?
'
invoices
No'
:
'applyNo'
,
type
===
1
?
'
order
No'
:
'applyNo'
,
FORM_FILTER_PATH
,
);
}
...
...
src/pages/logistics/addLogistics/components/columns.ts
View file @
5e3e4606
...
...
@@ -24,6 +24,34 @@ export const SelectGoodsColumns: ColumnType<any>[] = [
}
]
export
const
AfterSalesSelectGoodsColumns
:
ColumnType
<
any
>
[]
=
[
{
title
:
'商品ID'
,
key
:
'productId'
,
dataIndex
:
'productId'
,
},
{
title
:
'商品名称'
,
key
:
'productName'
,
dataIndex
:
'productName'
,
},
{
title
:
'品类'
,
key
:
'category'
,
dataIndex
:
'category'
,
},
{
title
:
'订单编号'
,
key
:
'orderNo'
,
dataIndex
:
'orderNo'
,
},
{
title
:
'品牌'
,
key
:
'brand'
,
dataIndex
:
'brand'
,
}
]
export
const
ExternalListColumns
:
ColumnType
<
any
>
[]
=
[
{
title
:
'流转顺序号'
,
...
...
src/pages/logistics/addLogistics/index.tsx
View file @
5e3e4606
This diff is collapsed.
Click to expand it.
src/pages/payandSettle/paySetting/components/payWayTable.tsx
View file @
5e3e4606
...
...
@@ -68,7 +68,7 @@ const PayWayTable: React.FC<payWayTableParams> = (props) => {
}
else
{
onEdit
(
value
,
idType
,
modifyIndex
)
}
setedit
({});
setmodalvisible
(
false
);
}
...
...
@@ -109,7 +109,7 @@ const PayWayTable: React.FC<payWayTableParams> = (props) => {
modalvisible=
{
modalvisible
}
edit=
{
edit
}
onOK=
{
(
value
)
=>
handleOk
(
value
,
type
)
}
onCancel=
{
()
=>
setmodalvisible
(
false
)
}
onCancel=
{
()
=>
{
setmodalvisible
(
false
);
setedit
({});
}
}
/>
</>
)
...
...
src/pages/payandSettle/paySetting/components/setUpModal.tsx
View file @
5e3e4606
...
...
@@ -71,10 +71,10 @@ const SetUpModal: React.FC<setUpModalParams> = (props) => {
return
(
<
Modal
width=
{
576
}
title=
'新增参数配置'
title=
{
`${Object.keys(edit).length > 0 ? `
编辑
` : '新增'}参数配置`
}
visible=
{
modalvisible
}
onOk=
{
handleOk
}
onCancel=
{
()
=>
onCancel
()
}
onCancel=
{
()
=>
{
onCancel
();
form
.
resetFields
();
}
}
>
<
Form
form=
{
form
}
...
...
src/pages/transaction/confirmInquiryQuote/components/details.tsx
View file @
5e3e4606
...
...
@@ -425,7 +425,7 @@ const Details: React.FC<parmas> = (props) => {
progressDot
current=
{
data
.
externalState
-
1
}
>
{
Object
.
keys
(
data
).
length
>
0
&&
data
.
externalInquiryListStateResponses
.
map
((
item
,
index
)
=>
{
{
(
Object
.
keys
(
data
).
length
>
0
&&
data
.
externalInquiryListStateResponses
)
&&
data
.
externalInquiryListStateResponses
.
map
((
item
,
index
)
=>
{
return
(
<
Step
key=
{
index
}
...
...
@@ -443,7 +443,7 @@ const Details: React.FC<parmas> = (props) => {
progressDot
current=
{
Number
(
data
.
interiorState
-
1
)
}
>
{
Object
.
keys
(
data
).
length
>
0
&&
data
.
interiorRequisitionFormStateResponses
.
map
((
item
,
index
)
=>
{
{
(
Object
.
keys
(
data
).
length
>
0
&&
data
.
interiorRequisitionFormStateResponses
)
&&
data
.
interiorRequisitionFormStateResponses
.
map
((
item
,
index
)
=>
{
return
(
<
Step
key=
{
index
}
...
...
src/pages/transaction/goodsOffer/addEnquiryOrder/addForm.tsx
View file @
5e3e4606
...
...
@@ -39,6 +39,10 @@ const AddQuotes: React.FC<parmas> = (props) => {
memberRoleId
:
res
.
data
.
memberRoleId
,
memberRoleName
:
res
.
data
.
memberRoleName
})
setaddress
({
fullAddress
:
res
.
data
.
fullAddress
,
fullAddressId
:
res
.
data
.
fullAddressId
})
}
})
}
...
...
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