Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ems3.3
Project
Project
Details
Activity
Releases
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
wuhao
ems3.3
Commits
0c47c69f
Commit
0c47c69f
authored
Feb 09, 2023
by
TZW
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1111
parent
35e39505
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
51 additions
and
9 deletions
+51
-9
DesItem.jsx
src/components/RepaireDetail/DesItem.jsx
+1
-1
columns.js
src/pages/maintain/plan/columns.js
+3
-0
index.jsx
src/pages/repair/track/index.jsx
+6
-7
columns.js
src/pages/spare/outstore/columns.js
+19
-0
columns.js
src/pages/spare/record/columns.js
+11
-1
columns.js
src/pages/spare/requisition/columns.js
+3
-0
columns.js
src/pages/spare/spareback/columns.js
+8
-0
No files found.
src/components/RepaireDetail/DesItem.jsx
View file @
0c47c69f
...
...
@@ -643,7 +643,7 @@ export default (props) => {
dataSource=
{
dataSource
}
columns=
{
columns_zzgd
[
dataSource
?.
operationType
]
}
/>
{
dataSource
?.
trackProcessList
?
(
{
dataSource
?.
trackProcessList
?.
length
>
0
?
(
<
Collapse
expandIconPosition=
{
'end'
}
>
<
Panel
header=
{
<
span
style=
{
{
fontSize
:
16
,
fontWeight
:
600
}
}
>
验证信息
</
span
>
}
>
<
ProDescriptions
...
...
src/pages/maintain/plan/columns.js
View file @
0c47c69f
...
...
@@ -539,6 +539,9 @@ function getcolumns(setdrawer) {
},
],
},
render
:
(
_
,
row
)
=>
{
return
row
?.
isCycle
==
1
?
'单次'
:
'周期'
;
},
},
{
title
:
'关单日期'
,
...
...
src/pages/repair/track/index.jsx
View file @
0c47c69f
...
...
@@ -3,7 +3,7 @@
* @Author: Li Hanlin
* @Date: 2022-12-02 11:41:03
* @Last Modified by: Li Hanlin
* @Last Modified time: 2023-02-0
8 14:50:08
* @Last Modified time: 2023-02-0
9 10:41:27
*/
import
*
as
React
from
'react'
;
...
...
@@ -77,7 +77,6 @@ function Failure(props) {
formItemProps
:
{
rules
:
[{
required
:
true
,
message
:
'此项为必填项'
}]
},
fieldProps
:
{
placeholder
:
'请选择'
,
mode
:
'multiple'
,
},
key
:
'trackAssistList'
,
valueType
:
'select'
,
...
...
@@ -89,7 +88,7 @@ function Failure(props) {
]
}
onFinish=
{
async
(
vals
)
=>
{
let
params
=
{
trackAssistList
:
vals
?.
trackAssistList
.
map
((
it
)
=>
({
assistUserId
:
it
}))
,
trackAssistList
:
[{
assistUserId
:
vals
?.
trackAssistList
}]
,
id
:
drawer
?.
item
?.
id
,
};
let
res
=
await
doFetch
({
...
...
@@ -424,11 +423,11 @@ function Failure(props) {
item
:
{
...
row
,
trackCycle
:
String
(
row
?.
trackCycle
),
trackResult
:
'1'
,
isFinishTrack
:
'2'
,
trackResult
:
1
,
isFinishTrack
:
2
,
},
detailpath
:
'/repair/umTrackTraceinfo/queryByTrackOrderId'
,
params
:
{
trackOrderId
:
row
?.
id
},
//
detailpath: '/repair/umTrackTraceinfo/queryByTrackOrderId',
//
params:
{
trackOrderId
:
row
?.
id
},
val
:
'only'
,
title
:
'追踪信息'
,
}));
...
...
src/pages/spare/outstore/columns.js
View file @
0c47c69f
...
...
@@ -209,6 +209,15 @@ function getcolumns(setdrawer) {
},
hideInForm
:
true
,
},
{
title
:
'工单状态'
,
dataIndex
:
'statusName'
,
key
:
'statusName'
,
span
:
3
,
hideInSearch
:
true
,
hideInTable
:
true
,
hideInForm
:
true
,
},
{
title
:
'备件信息'
,
dataIndex
:
'details'
,
...
...
@@ -419,6 +428,16 @@ function getcolumns(setdrawer) {
},
hideInForm
:
true
,
},
{
title
:
'工单状态'
,
dataIndex
:
'statusName'
,
key
:
'statusName'
,
hideInSearch
:
true
,
hideInTable
:
true
,
hideInForm
:
true
,
span
:
2
,
},
{
title
:
'备件信息'
,
dataIndex
:
'details'
,
...
...
src/pages/spare/record/columns.js
View file @
0c47c69f
...
...
@@ -5,13 +5,23 @@ function getcolumns(setdrawer) {
title
:
'操作时间'
,
dataIndex
:
'operateTime'
,
key
:
'operateTimeList'
,
valueType
:
'dateRange'
,
valueType
:
'dateTimeRange'
,
fieldProps
:
{
showTime
:
{
format
:
'HH:mm'
,
},
format
:
'YYYY-MM-DD HH:mm'
,
},
},
{
title
:
'操作人'
,
dataIndex
:
'operateUserName'
,
key
:
'operateUserId'
,
valueType
:
'select'
,
fieldProps
:
{
dropdownMatchSelectWidth
:
120
,
showSearch
:
true
,
},
options
:
{
path
:
'/auth/sysUser/selection'
,
params
:
{},
...
...
src/pages/spare/requisition/columns.js
View file @
0c47c69f
...
...
@@ -164,6 +164,9 @@ function getcolumns(type, fullName) {
dataIndex
:
'statusName'
,
key
:
'status'
,
hideInForm
:
true
,
fieldProps
:
{
dropdownMatchSelectWidth
:
120
,
},
valueType
:
'select'
,
span
:
3
,
options
:
[
...
...
src/pages/spare/spareback/columns.js
View file @
0c47c69f
...
...
@@ -179,6 +179,10 @@ function getcolumns(type, fullName) {
title
:
'状态'
,
dataIndex
:
'statusName'
,
key
:
'status'
,
fieldProps
:
{
dropdownMatchSelectWidth
:
120
,
},
span
:
3
,
hideInForm
:
true
,
valueType
:
'select'
,
options
:
[
...
...
@@ -418,8 +422,12 @@ function getcolumns(type, fullName) {
{
title
:
'状态'
,
dataIndex
:
'statusName'
,
span
:
2
,
key
:
'status'
,
hideInForm
:
true
,
fieldProps
:
{
dropdownMatchSelectWidth
:
120
,
},
valueType
:
'select'
,
options
:
[
{
...
...
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