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
ca7a2d55
Commit
ca7a2d55
authored
Jan 10, 2024
by
jingnan
👀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
领用出库申请/审核批量签审界面开发
parent
df158af7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
107 additions
and
2 deletions
+107
-2
index.vue
...kflow/task-center/myPlanTask/outStorageUseApply/index.vue
+51
-0
index.vue
...low/task-center/myPlanTask/outStorageUseExamine/index.vue
+54
-0
taskList.vue
...er/src/views/workflow/task-center/myPlanTask/taskList.vue
+2
-2
No files found.
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/outStorageUseApply/index.vue
0 → 100644
View file @
ca7a2d55
<!--
* @Author: gjn
* @Date: 2024-01-10 11:02:39
* @Description:批量签审_领用出库申请
-->
<
template
>
<div
class=
"outStorageUseApply"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'OutStorageUse', layKey: 'batchSign_outStorageUseApply'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'OutStorageUseApply'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{
this
.
$bus
.
$on
(
'cancelAndRefresh'
,
(
data
)
=>
{
this
.
$refs
.
applyTable
&&
this
.
$refs
.
applyTable
.
$refs
.
asCom
.
getData
()
})
},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.outStorageUseApply
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/outStorageUseExamine/index.vue
0 → 100644
View file @
ca7a2d55
<!--
* @Author: gjn
* @Date: 2024-01-10 13:43:39
* @Description:批量签审_领用出库审核
-->
<
template
>
<div
class=
"outStorageUseExamine"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData,selectionRows }"
:lay-config="{ typeName: 'OutStorageUse', layKey: 'batchSign_outStorageUseExamine'}"
@selectionChange="selectionChange"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'OutStorageUseExamine'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{
selectionRows
:
[]
}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
</
script
>
<
style
lang=
'scss'
>
.outStorageUseExamine
{
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 @
ca7a2d55
...
...
@@ -22,8 +22,8 @@ export default {
OutStorageOutExamine
:
()
=>
import
(
'./outStorageOutExamine'
),
// 供外出库审核
OutStorageOutApproval
:
()
=>
import
(
'./outStorageOutApproval'
),
// 供外出库批准
OutStorageOutConfirm
:
()
=>
import
(
'./outStorageOutConfirm'
),
// 供外出库确认
// OutStorageUseApply: () => import('./outStorageOutConfirm
'), // 领用出库申请
// OutStorageUseExamine: () => import('./outStorageOutConfirm
'), // 领用出库审核
OutStorageUseApply
:
()
=>
import
(
'./outStorageUseApply
'
),
// 领用出库申请
OutStorageUseExamine
:
()
=>
import
(
'./outStorageUseExamine
'
),
// 领用出库审核
OutStorageUseConfirm
:
()
=>
import
(
'./outStorageOutConfirm'
),
// 领用出库确认
InStorageMatchBackApply
:
()
=>
import
(
'./inStorageMatchBackApply'
),
// 配套退库申请
InStorageMatchBackExamin
:
()
=>
import
(
'./inStorageMatchBackExamine'
),
// 配套退库审核
...
...
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