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
33b7656d
Commit
33b7656d
authored
Apr 02, 2024
by
jingnan
👀
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into rubberPaint-dev
parents
8e1d66ca
9eed4403
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
154 deletions
+24
-154
index.vue
...ow/task-center/myPlanTask/InStorageTkdBackApply/index.vue
+0
-47
index.vue
.../task-center/myPlanTask/InStorageTkdBackConfirm/index.vue
+0
-47
index.vue
...nter/myPlanTask/InStorageTkdBackCraftsmenExamin/index.vue
+11
-4
index.vue
...enter/myPlanTask/InStorageTkdBackDesignerExamin/index.vue
+11
-4
index.vue
...w/task-center/myPlanTask/InStorageTkdBackInTest/index.vue
+0
-47
taskList.vue
...er/src/views/workflow/task-center/myPlanTask/taskList.vue
+2
-5
No files found.
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/InStorageTkdBackApply/index.vue
deleted
100644 → 0
View file @
8e1d66ca
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<
template
>
<div
class=
"inStorageTkdBackApply"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackApply'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageTkdBackApply'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageMatchBackApply
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/InStorageTkdBackConfirm/index.vue
deleted
100644 → 0
View file @
8e1d66ca
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<
template
>
<div
class=
"InStorageTkdBackConfirm"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackConfirm'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageTkdBackConfirm'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageMatchBackApply
{
width
:
100%
;
height
:
100%
;
box-sizing
:
border-box
;
padding
:
0
4px
;
}
</
style
>
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/InStorageTkdBackCraftsmenExamin/index.vue
View file @
33b7656d
...
@@ -4,12 +4,13 @@
...
@@ -4,12 +4,13 @@
* @Description:配套退库入库申请
* @Description:配套退库入库申请
-->
-->
<
template
>
<
template
>
<div
class=
"
I
nStorageTkdBackCraftsmenExamin"
>
<div
class=
"
i
nStorageTkdBackCraftsmenExamin"
>
<dee-as-com
<dee-as-com
ref=
"applyTable"
ref=
"applyTable"
class=
"list-table"
class=
"list-table"
:basic-data=
"
{ selectData
: selectData
}"
:basic-data=
"
{ selectData
,selectionRows
}"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'e6e40243-8be1-4d38-a978-ed1ce3a6ceda'}"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'e6e40243-8be1-4d38-a978-ed1ce3a6ceda'}"
@selectionChange="selectionChange"
/>
/>
</div>
</div>
</
template
>
</
template
>
...
@@ -25,14 +26,20 @@ export default {
...
@@ -25,14 +26,20 @@ export default {
}
}
},
},
data
()
{
data
()
{
return
{}
return
{
selectionRows
:
[]
}
},
},
computed
:
{},
computed
:
{},
watch
:
{},
watch
:
{},
created
()
{},
created
()
{},
mounted
()
{},
mounted
()
{},
// 组件方法
// 组件方法
methods
:
{}
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
}
</
script
>
</
script
>
...
...
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/InStorageTkdBackDesignerExamin/index.vue
View file @
33b7656d
...
@@ -4,12 +4,13 @@
...
@@ -4,12 +4,13 @@
* @Description:配套退库入库申请
* @Description:配套退库入库申请
-->
-->
<
template
>
<
template
>
<div
class=
"
I
nStorageTkdBackDesignerExamin"
>
<div
class=
"
i
nStorageTkdBackDesignerExamin"
>
<dee-as-com
<dee-as-com
ref=
"applyTable"
ref=
"applyTable"
class=
"list-table"
class=
"list-table"
:basic-data=
"
{ selectData
: selectData
}"
:basic-data=
"
{ selectData
,selectionRows
}"
:lay-config="{ typeName: 'InStorageBackItem', layKey: '8ef52f63-266c-4d66-9ee7-a6be91d9d610'}"
:lay-config="{ typeName: 'InStorageBackItem', layKey: '8ef52f63-266c-4d66-9ee7-a6be91d9d610'}"
@selectionChange="selectionChange"
/>
/>
</div>
</div>
</
template
>
</
template
>
...
@@ -25,14 +26,20 @@ export default {
...
@@ -25,14 +26,20 @@ export default {
}
}
},
},
data
()
{
data
()
{
return
{}
return
{
selectionRows
:
[]
}
},
},
computed
:
{},
computed
:
{},
watch
:
{},
watch
:
{},
created
()
{},
created
()
{},
mounted
()
{},
mounted
()
{},
// 组件方法
// 组件方法
methods
:
{}
methods
:
{
selectionChange
(
val
)
{
this
.
selectionRows
=
val
}
}
}
}
</
script
>
</
script
>
...
...
applications/dee-task-center/src/views/workflow/task-center/myPlanTask/InStorageTkdBackInTest/index.vue
deleted
100644 → 0
View file @
8e1d66ca
<!--
* @Author: gjn
* @Date: 2023-11-02 09:29:39
* @Description:配套退库入库申请
-->
<
template
>
<div
class=
"InStorageTkdBackInTest"
>
<dee-as-com
ref=
"applyTable"
class=
"list-table"
:basic-data=
"
{ selectData: selectData }"
:lay-config="{ typeName: 'InStorageBackItem', layKey: 'batchSign_InStorageMatchBackInTest'}"
/>
</div>
</
template
>
<
script
>
export
default
{
name
:
'InStorageTkdBackInTest'
,
components
:
{},
props
:
{
selectData
:
{
type
:
Object
,
default
:
()
=>
{}
}
},
data
()
{
return
{}
},
computed
:
{},
watch
:
{},
created
()
{},
mounted
()
{},
// 组件方法
methods
:
{}
}
</
script
>
<
style
lang=
'scss'
>
.inStorageMatchBackApply
{
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 @
33b7656d
...
@@ -46,11 +46,8 @@ export default {
...
@@ -46,11 +46,8 @@ export default {
ReturnToFactoryBatch
:
()
=>
import
(
'./returnToFactoryBatch'
),
// 返厂处理
ReturnToFactoryBatch
:
()
=>
import
(
'./returnToFactoryBatch'
),
// 返厂处理
InStorageMoveAuditing
:
()
=>
import
(
'./inStorageMoveExamine'
),
// 移库入库库房审核
InStorageMoveAuditing
:
()
=>
import
(
'./inStorageMoveExamine'
),
// 移库入库库房审核
InStorageMoveExamine
:
()
=>
import
(
'./inStorageMoveExamine'
),
// 移库入库库房确认
InStorageMoveExamine
:
()
=>
import
(
'./inStorageMoveExamine'
),
// 移库入库库房确认
InStorageTkdBackApply
:
()
=>
import
(
'./InStorageTkdBackApply'
),
// 退库单退库申请
InStorageTkdBackCraftsmenExamin
:
()
=>
import
(
'./inStorageTkdBackCraftsmenExamin'
),
// 退库单退库工艺审核
InStorageTkdBackCraftsmenExamin
:
()
=>
import
(
'./InStorageTkdBackCraftsmenExamin'
),
// 退库单退库工艺审核
InStorageTkdBackDesignerExamin
:
()
=>
import
(
'./inStorageTkdBackDesignerExamin'
)
// 退库单退库设计审核
InStorageTkdBackDesignerExamin
:
()
=>
import
(
'./InStorageTkdBackDesignerExamin'
),
// 退库单退库设计审核
InStorageTkdBackInTest
:
()
=>
import
(
'./InStorageTkdBackInTest'
),
// 退库单退库检验
InStorageTkdBackConfirm
:
()
=>
import
(
'./InStorageTkdBackConfirm'
)
// 退库单退库确认
},
},
props
:
{
props
:
{
selectData
:
{
selectData
:
{
...
...
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