Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TF-MOM-WEB
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
TFMOM
TF-MOM-WEB
Commits
9931c6e1
Commit
9931c6e1
authored
Aug 04, 2023
by
arvin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://94.191.100.41/tfmom/tf-mom-web
into dev
parents
296f79ea
d420fa0b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
61 additions
and
62 deletions
+61
-62
index.vue
...rivateComponents/components/ChemicalTestProcess/index.vue
+4
-60
index.vue
.../task-center/myPlanTask/jobResponseInExperiment/index.vue
+54
-0
taskList.vue
...er/src/views/workflow/task-center/myPlanTask/taskList.vue
+2
-1
index.vue
.../workflow/task-center/myPlanTask/warehouseApply/index.vue
+1
-1
No files found.
applications/dee-mes/src/privateComponents/components/ChemicalTestProcess/index.vue
View file @
9931c6e1
...
...
@@ -7,19 +7,18 @@
<
template
>
<div
class=
"Chemical-test-process"
>
<dee-as-com
v-if=
"
JobResponseInExperment
Data"
v-if=
"
basic
Data"
refs=
"outerCasing"
model-name=
"InStorageRequestItem"
:lay-config=
"
{
typeName: 'InStorageRequestItem',
layKey: '
test
'
layKey: '
1c4983a2-6f51-49e4-95ee-2f5506b8e217
'
}"
:basic-data="
JobResponseInExperment
Data"
:basic-data="
basic
Data"
/>
</div>
</
template
>
<
script
>
import
{
post
}
from
'@/utils/http'
export
default
{
componentName
:
'理化检验流程'
,
...
...
@@ -34,69 +33,14 @@ export default {
data
()
{
return
{
// data: { 'reportNo': bindForm.reportNo, 'experimentAmount':bindForm.experimentAmount}, 'dxType': 'JobResponseInStorage', 'operator': 'ADD' }
JobResponseInExpermentData
:
null
}
},
computed
:
{},
created
()
{
// 初始化数据
console
.
log
(
'理化检验流程'
,
this
.
basicData
)
this
.
getFrom
(
this
.
basicData
.
id
)
},
methods
:
{
getFrom
(
id
)
{
const
param
=
{
'pageFrom'
:
1
,
'pageSize'
:
10
,
'searchItems'
:
{
'children'
:
[
{
'items'
:
[
{
'fieldName'
:
'jobOrderId'
,
'operator'
:
'EQ'
,
'value'
:
id
},
{
'fieldName'
:
'subTypeName'
,
'operator'
:
'EQ'
,
'value'
:
'JobResponseInExperment'
}
],
'operator'
:
'AND'
}
],
'items'
:
[],
'operator'
:
'AND'
},
'openProps'
:
[
{
'name'
:
'objFileLinks'
,
'openProps'
:
[
{
'name'
:
'target'
}
]
},
{
'name'
:
'jobOrder'
,
'openProps'
:
[
{
'name'
:
'purchaseUnit'
}
]
}
],
'sortItem'
:
[
{
'fieldName'
:
'modifyTime'
,
'sortOrder'
:
'desc'
}
]
}
post
(
'JobResponseInStorage/search'
,
param
).
then
(
res
=>
{
// this.data = res.items.content[0]
this
.
JobResponseInExpermentData
=
res
.
items
.
content
[
0
]
}).
catch
((
err
)
=>
{
console
.
log
(
err
)
})
}
}
}
</
script
>
...
...
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/jobResponseInExperiment/index.vue
0 → 100644
View file @
9931c6e1
<!--
* @Author: gjn
* @Date: 2023-08-04 10:29:39
* @Description:批量签审_理化实验入库响应
-->
<
template
>
<div
class=
"jobResponseInExperiment"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'JobResponseInStorage', layKey: 'batchSign_jobResponseInExperiment'}"
@selectionChange="selectionChange"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'JobResponseInExperiment'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[]
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
</
script
>
<
style
lang=
'scss'
>
.jobResponseInExperiment
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/taskList.vue
View file @
9931c6e1
...
...
@@ -10,7 +10,8 @@
export
default
{
components
:
{
WarehouseApply
:
()
=>
import
(
'./warehouseApply'
),
OutStorageExpireApply
:
()
=>
import
(
'./outStorageExpireApply'
)
OutStorageExpireApply
:
()
=>
import
(
'./outStorageExpireApply'
),
JobResponseInExperiment
:
()
=>
import
(
'./jobResponseInExperiment'
)
},
props
:
{
selectData
:
{
...
...
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/warehouseApply/index.vue
View file @
9931c6e1
<!--
* @Author: gjn
* @Date: 2023-08-01 10:28:07
* @Description:验收入库申请
* @Description:
批量签审_
验收入库申请
-->
<
template
>
<div
class=
"warehouseApply"
>
...
...
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