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
81c79966
Commit
81c79966
authored
Apr 20, 2022
by
前端-钟卫鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 处理计划送货相关页面高级筛选排序问题
parent
4154b496
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
80 deletions
+28
-80
index.tsx
...iveryPlanCollaboration/deliveryPlanAwait/schema/index.tsx
+9
-24
index.tsx
...iveryPlanCollaboration/deliveryPlanQuery/schema/index.tsx
+9
-24
index.tsx
.../order/deliveryPlanManagement/deliveryPlanQuery/index.tsx
+1
-10
index.tsx
...deliveryPlanManagement/deliveryPlanQuery/schema/index.tsx
+9
-22
No files found.
src/pages/order/deliveryPlanCollaboration/deliveryPlanAwait/schema/index.tsx
View file @
81c79966
...
...
@@ -12,28 +12,13 @@ export const deliveryPlanCollaborationAwaitSchema: ISchema = {
type
:
'object'
,
'x-component'
:
'mega-layout'
,
properties
:
{
topLayout
:
{
type
:
'
object
'
,
'x-component'
:
'
mega-layout
'
,
planCode
:
{
type
:
'
string
'
,
'x-component'
:
'
Search
'
,
'x-component-props'
:
{
grid
:
true
,
},
properties
:
{
ctl
:
{
type
:
'object'
,
'x-component'
:
'Children'
,
'x-component-props'
:
{
children
:
'{{controllerBtns}}'
,
},
},
planCode
:
{
type
:
'string'
,
'x-component'
:
'Search'
,
'x-component-props'
:
{
allowClear
:
true
,
placeholder
:
'请输入计划编号查询'
},
},
allowClear
:
true
,
align
:
'flex-left'
,
placeholder
:
'请输入计划编号查询'
},
},
[
FORM_FILTER_PATH
]:
{
...
...
@@ -42,9 +27,10 @@ export const deliveryPlanCollaborationAwaitSchema: ISchema = {
'x-component-props'
:
{
rowStyle
:
{
flexWrap
:
'nowrap'
,
justifyContent
:
'flex-start'
,
},
colStyle
:
{
margin
Lef
t
:
20
,
margin
Righ
t
:
20
,
},
},
properties
:
{
...
...
@@ -76,4 +62,4 @@ export const deliveryPlanCollaborationAwaitSchema: ISchema = {
}
}
}
}
\ No newline at end of file
}
src/pages/order/deliveryPlanCollaboration/deliveryPlanQuery/schema/index.tsx
View file @
81c79966
...
...
@@ -12,28 +12,13 @@ export const deliveryPlanCollaborationQuerySchema: ISchema = {
type
:
'object'
,
'x-component'
:
'mega-layout'
,
properties
:
{
topLayout
:
{
type
:
'
object
'
,
'x-component'
:
'
mega-layout
'
,
planNo
:
{
type
:
'
string
'
,
'x-component'
:
'
Search
'
,
'x-component-props'
:
{
grid
:
true
,
},
properties
:
{
ctl
:
{
type
:
'object'
,
'x-component'
:
'Children'
,
'x-component-props'
:
{
children
:
'{{controllerBtns}}'
,
},
},
planNo
:
{
type
:
'string'
,
'x-component'
:
'Search'
,
'x-component-props'
:
{
allowClear
:
true
,
placeholder
:
'请输入计划编号查询'
},
},
allowClear
:
true
,
align
:
'flex-left'
,
placeholder
:
'请输入计划编号查询'
},
},
[
FORM_FILTER_PATH
]:
{
...
...
@@ -42,9 +27,10 @@ export const deliveryPlanCollaborationQuerySchema: ISchema = {
'x-component-props'
:
{
rowStyle
:
{
flexWrap
:
'nowrap'
,
justifyContent
:
'flex-start'
,
},
colStyle
:
{
margin
Lef
t
:
20
,
margin
Righ
t
:
20
,
},
},
properties
:
{
...
...
@@ -76,4 +62,4 @@ export const deliveryPlanCollaborationQuerySchema: ISchema = {
}
}
}
}
\ No newline at end of file
}
src/pages/order/deliveryPlanManagement/deliveryPlanQuery/index.tsx
View file @
81c79966
...
...
@@ -28,11 +28,6 @@ const DeliveryPlanManagementQuery: React.FC = () => {
const
ref
=
useRef
<
any
>
({})
const
formActions
=
createFormActions
()
const
controllerBtns
=
(
<
Space
>
{
/* 杰哥说没有新增按钮 */
}
</
Space
>
)
const
renderOptionButton
=
(
record
:
any
)
=>
{
const
btnAuthOfOperationTextMap
=
{
'查看'
:
'deliveryPlanManagement.looking'
,
...
...
@@ -108,9 +103,6 @@ const DeliveryPlanManagementQuery: React.FC = () => {
<
NiceForm
actions=
{
formActions
}
onSubmit=
{
values
=>
ref
.
current
.
reload
(
values
)
}
expressionScope=
{
{
controllerBtns
,
}
}
effects=
{
(
$
,
actions
)
=>
{
useStateFilterSearchLinkageEffect
(
$
,
...
...
@@ -127,4 +119,4 @@ const DeliveryPlanManagementQuery: React.FC = () => {
</
PageHeaderWrapper
>)
}
export
default
DeliveryPlanManagementQuery
\ No newline at end of file
export
default
DeliveryPlanManagementQuery
src/pages/order/deliveryPlanManagement/deliveryPlanQuery/schema/index.tsx
View file @
81c79966
...
...
@@ -12,28 +12,14 @@ export const deliveryPlanManagementQuerySchema: ISchema = {
type
:
'object'
,
'x-component'
:
'mega-layout'
,
properties
:
{
topLayout
:
{
type
:
'
object
'
,
'x-component'
:
'
mega-layout
'
,
planNo
:
{
type
:
'
string
'
,
'x-component'
:
'
Search
'
,
'x-component-props'
:
{
grid
:
true
,
},
properties
:
{
ctl
:
{
type
:
'object'
,
'x-component'
:
'Children'
,
'x-component-props'
:
{
children
:
'{{controllerBtns}}'
,
},
},
planNo
:
{
type
:
'string'
,
'x-component'
:
'Search'
,
'x-component-props'
:
{
allowClear
:
true
,
placeholder
:
'请输入计划编号查询'
},
},
allowClear
:
true
,
align
:
'flex-left'
,
placeholder
:
'请输入计划编号查询'
},
},
[
FORM_FILTER_PATH
]:
{
...
...
@@ -42,9 +28,10 @@ export const deliveryPlanManagementQuerySchema: ISchema = {
'x-component-props'
:
{
rowStyle
:
{
flexWrap
:
'nowrap'
,
justifyContent
:
'flex-start'
,
},
colStyle
:
{
margin
Lef
t
:
20
,
margin
Righ
t
:
20
,
},
},
properties
:
{
...
...
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