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
6b5ffc2c
Commit
6b5ffc2c
authored
Jul 12, 2023
by
wangdanlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
三期出库
parent
07eccc7c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
151 additions
and
4 deletions
+151
-4
index.vue
...ts/components/AddOutStorageMaterialDetailDialog/index.vue
+76
-0
index.vue
...ts/components/AddPutStorageMaterialDetailDialog/index.vue
+7
-2
index.vue
...-mes/src/privateComponents/components/Warehouse/index.vue
+61
-0
index.vue
...s/src/privateComponents/components/materialType/index.vue
+7
-2
No files found.
applications/dee-mes/src/privateComponents/components/AddOutStorageMaterialDetailDialog/index.vue
0 → 100644
View file @
6b5ffc2c
/**
* @Description:
* @author cxg
* @date 2022/03/29
*/
<
template
>
<div
class=
"-page"
>
<dee-as-com
ref=
"materielSearch"
:lay-config=
"
{ typeName: 'Inventory', layKey: 'search_sanqichukuwuliaomingxi'}"
:basic-data="defaultData"
@searchEvent="searchEvent"
/>
<dee-as-com
ref=
"materielTable"
:lay-config=
"
{ typeName: 'Inventory', layKey: 'table_sanqichukuwuliaomingxi'}"
@selectionChange="selectionChange"
/>
<div
class=
"foot-btn-box"
>
<el-button
type=
"primary"
@
click=
"submitEvent"
>
确认
</el-button>
<el-button
@
click=
"cancelEvent"
>
取消
</el-button>
</div>
</div>
</
template
>
<
script
>
export
default
{
componentName
:
'添加三期出库物料明细弹框'
,
name
:
'AddOutStorageMaterialDetailDialog'
,
components
:
{},
data
()
{
return
{
selection
:
[],
defaultData
:
{}
}
},
computed
:
{},
mounted
()
{
},
methods
:
{
searchEvent
(
val
)
{
// const materialType = this.findByNameVnode(this, 'DeeAsForm').form.materialType
val
.
items
.
push
({
fieldName
:
'subTypeName'
,
operator
:
'EQ'
,
value
:
'Inventory'
}
/*, { fieldName: 'inventory.materialType', operator: 'EQ', value: materialType }*/
)
const
el
=
this
.
$refs
[
'materielTable'
]
el
.
$refs
.
asCom
.
getData
(
val
.
items
,
val
.
items
)
},
findByNameVnode
(
obj
,
targetName
)
{
if
(
obj
&&
obj
.
$vnode
&&
obj
.
$vnode
.
tag
&&
obj
.
$vnode
.
tag
.
includes
(
targetName
))
{
return
obj
}
else
{
return
this
.
findByNameVnode
(
obj
.
$parent
,
targetName
)
}
},
selectionChange
(
val
)
{
this
.
selection
=
val
},
submitEvent
()
{
console
.
log
(
this
.
selection
)
if
(
this
.
selection
.
length
)
{
this
.
$emit
(
'submitEvent'
,
{
formData
:
this
.
selection
})
}
},
cancelEvent
()
{
this
.
$emit
(
'cancel'
)
}
}
}
</
script
>
<
style
lang=
'scss'
>
.foot-btn-box
{
display
:
flex
;
justify-content
:
center
;
align-content
:
center
;
}
</
style
>
applications/dee-mes/src/privateComponents/components/
materielSearch
/index.vue
→
applications/dee-mes/src/privateComponents/components/
AddPutStorageMaterialDetailDialog
/index.vue
View file @
6b5ffc2c
...
...
@@ -25,8 +25,8 @@
<
script
>
export
default
{
componentName
:
'
物料明细列表
'
,
name
:
'
Materiel
'
,
componentName
:
'
添加三期入库物料明细弹框
'
,
name
:
'
AddPutStorageMaterialDetailDialog
'
,
components
:
{},
data
()
{
return
{
...
...
@@ -67,4 +67,9 @@ export default {
}
</
script
>
<
style
lang=
'scss'
>
.foot-btn-box
{
display
:
flex
;
justify-content
:
center
;
align-content
:
center
;
}
</
style
>
applications/dee-mes/src/privateComponents/components/Warehouse/index.vue
0 → 100644
View file @
6b5ffc2c
<
template
>
<div>
<el-select
v-model=
"form.warehouse"
>
<el-option
v-for=
"(item,i) in warehouseOptions"
:key=
"i"
:label=
"item.typeName"
:value=
"item.id"
/>
</el-select>
</div>
</
template
>
<
script
>
export
default
{
componentName
:
'库房'
,
name
:
'Warehouse'
,
components
:
{},
props
:
{
form
:
{}
},
data
()
{
return
{
warehouseOptions
:
[],
areaList
:
[]
}
},
computed
:
{},
watch
:
{
async
'form.warehouse'
()
{
if
(
this
.
areaList
.
length
)
{
//
}
else
{
await
this
.
searchApi
()
}
}
},
// 生命周期 - 创建完成(可以访问当前this 实例)
created
()
{
},
// 生命周期 - 挂载之前
beforeMount
()
{
},
// 生命周期 - 挂载完成(可以访问 DOM 元素)
mounted
()
{
},
methods
:
{
async
searchApi
()
{
const
params
=
{
'openProps'
:
[{
'name'
:
'extDxProductWorkCenters'
}]
}
await
this
.
$utils
.
searchApi
(
'ExtDxProductArea'
,
params
).
then
(
res
=>
{
this
.
areaList
=
res
.
items
.
content
})
}
}
}
</
script
>
<
style
lang=
'scss'
scoped
>
</
style
>
applications/dee-mes/src/privateComponents/components/materialType/index.vue
View file @
6b5ffc2c
...
...
@@ -5,7 +5,7 @@
v-for=
"(item,i) in materialTypeOptions"
:key=
"i"
:label=
"item.typeName"
:value=
"item.
typeCode
"
:value=
"item.
id
"
/>
</el-select>
</div>
...
...
@@ -24,13 +24,17 @@ export default {
},
data
()
{
return
{
materialTypeOptions
:
[]
materialTypeOptions
:
[],
isFirst
:
true
}
},
computed
:
{},
watch
:
{
'form.billType'
(
val
)
{
if
(
val
)
{
if
(
!
this
.
isFirst
)
{
this
.
$set
(
this
.
form
,
'materialType'
,
''
)
}
this
.
getMaterialType
(
val
)
}
}
...
...
@@ -46,6 +50,7 @@ export default {
},
methods
:
{
getMaterialType
(
val
)
{
this
.
isFirst
=
false
getParentData
({
billTypeCode
:
val
}).
then
(
res
=>
{
this
.
materialTypeOptions
=
res
.
items
.
content
||
[]
})
...
...
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