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
f1340ffd
Commit
f1340ffd
authored
Aug 08, 2023
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
批量签审功能开发
parent
4ddfa4cc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
63 additions
and
10 deletions
+63
-10
index.vue
...ow/task-center/myPlanTask/outStorageRecallApply/index.vue
+47
-0
taskList.vue
...er/src/views/workflow/task-center/myPlanTask/taskList.vue
+5
-4
index.vue
...orkflow/task-center/myPlanTask/warehouseExamine/index.vue
+11
-6
No files found.
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/outStorageRecallApply/index.vue
0 → 100644
View file @
f1340ffd
<!--
* @Author: gjn
* @Date: 2023-08-03 16:29:39
* @Description:批量签审_三期出库申请
-->
<
template
>
<div
class=
"outStorageRecallApply"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'OutStorageExpire', layKey: 'batchSign_outStorageRecallApply'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'OutStorageRecallApply'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.outStorageRecallApply
{
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 @
f1340ffd
...
...
@@ -9,10 +9,11 @@
<
script
>
export
default
{
components
:
{
WarehouseApply
:
()
=>
import
(
'./warehouseApply'
),
OutStorageExpireApply
:
()
=>
import
(
'./outStorageExpireApply'
),
JobResponseInExperiment
:
()
=>
import
(
'./jobResponseInExperiment'
),
WarehouseExamine
:
()
=>
import
(
'./warehouseExamine'
)
WarehouseApply
:
()
=>
import
(
'./warehouseApply'
),
// 验收入库申请
WarehouseExamine
:
()
=>
import
(
'./warehouseExamine'
),
// 验收入库审核
JobResponseInExperiment
:
()
=>
import
(
'./jobResponseInExperiment'
),
// 理化试验验入库响应
OutStorageExpireApply
:
()
=>
import
(
'./outStorageExpireApply'
),
// 三期出库申请
OutStorageRecallApply
:
()
=>
import
(
'./outStorageRecallApply'
)
// 返厂出库申请
},
props
:
{
selectData
:
{
...
...
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/warehouseExamine/index.vue
View file @
f1340ffd
...
...
@@ -12,12 +12,12 @@
@searchEvent="searchEvent"
/>
<!-- tab页签 -->
<el-tabs
v-model=
"active"
type=
"border-card"
class=
"detailTabs"
>
<el-tabs
v-model=
"active"
type=
"border-card"
class=
"detailTabs"
@
tab-click=
"tabClick"
>
<el-tab-pane
:label=
"'器材验收单(' + totals.MaterialTotal + ')'"
name=
"Material"
>
<dee-as-com
ref=
"MaterialTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows:selectionRows['selectMaterial'] }
"
:basic-data=
"
basicData
"
:lay-config=
"
{ typeName: 'InStorageRequestItem', layKey: 'examine_material_table'}"
@freshData="freshData('Material')"
@selectionChange="selectionChange($event,'Material')"
...
...
@@ -28,7 +28,7 @@
ref=
"AirEquipmentTable"
class=
"list-table"
:lay-config=
"
{ typeName: 'InStorageRequestItem', layKey: 'examine_airEquipment_table'}"
:basic-data="
{ selectData,selectionRows:selectionRows['selectAirEquipment'] }
"
:basic-data="
basicData
"
@freshData="freshData('AirEquipment')"
@selectionChange="selectionChange($event,'AirEquipment')"
/>
...
...
@@ -38,7 +38,7 @@
ref=
"OutSourceTable"
class=
"list-table"
:lay-config=
"
{ typeName: 'InStorageRequestItem', layKey: 'examine_outSource_table'}"
:basic-data="
{ selectData,selectionRows:selectionRows['selectOutSource'] }
"
:basic-data="
basicData
"
@freshData="freshData('OutSource')"
@selectionChange="selectionChange($event,'OutSource')"
/>
...
...
@@ -58,6 +58,7 @@ export default {
}
},
data
()
{
const
_that
=
this
return
{
active
:
'Material'
,
defaultData
:
{},
...
...
@@ -73,7 +74,8 @@ export default {
'AirEquipment'
,
'OutSource'
],
selectionRows
:
{}
selectionRows
:
{},
basicData
:
{
selectData
:
_that
.
selectData
,
selectionRows
:
[]
}
}
},
computed
:
{
...
...
@@ -121,7 +123,10 @@ export default {
})
},
selectionChange
(
val
,
tabName
)
{
this
.
selectionRows
[
`select
${
tabName
}
`
]
=
val
this
.
$set
(
this
.
basicData
,
'selectionRows'
,
val
)
},
tabClick
()
{
this
.
$set
(
this
.
basicData
,
'selectionRows'
,
[])
}
}
}
...
...
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