Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-ui
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
pda
pda-ui
Commits
1aa6851d
Commit
1aa6851d
authored
Apr 25, 2024
by
chenzj
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://git.local.topsunit.com/mes/mes-ui
into dev
parents
5939c1d3
d4c2786e
Show whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
137 additions
and
116 deletions
+137
-116
protask.js
src/api/mes/pro/protask.js
+1
-1
maintenance.js
src/api/mes/tm/maintenance.js
+5
-5
tmToolMachines.js
src/api/mes/tm/tmToolMachines.js
+5
-5
tmToolMachinesRecord.js
src/api/mes/tm/tmToolMachinesRecord.js
+5
-5
tmToolRequest.js
src/api/mes/tm/tmToolRequest.js
+5
-5
tmToolRequestItem.js
src/api/mes/tm/tmToolRequestItem.js
+5
-5
tmToolRequestUse.js
src/api/mes/tm/tmToolRequestUse.js
+6
-6
tmToolRequestUseItem.js
src/api/mes/tm/tmToolRequestUseItem.js
+5
-5
toolmachinesrecord.js
src/api/mes/tm/toolmachinesrecord.js
+5
-5
warehouse.js
src/api/mes/tm/warehouse.js
+3
-3
single.vue
src/components/toolRequest/single.vue
+2
-2
itemIndex.vue
src/views/mes/cal/holiday/itemIndex.vue
+2
-2
info.vue
src/views/mes/pro/arrange/info.vue
+6
-2
info.vue
src/views/mes/pro/combination/info.vue
+7
-2
infos.vue
src/views/mes/pro/combination/infos.vue
+2
-2
index.vue
src/views/mes/pro/scheduleList/index.vue
+2
-2
indexApply.vue
src/views/mes/pro/workorder/indexApply.vue
+18
-6
index.vue
src/views/mes/tm/maintenance/index.vue
+4
-4
index.vue
src/views/mes/tm/toolmachines/index.vue
+11
-11
index.vue
src/views/mes/tm/toolmachinesrecord/index.vue
+4
-4
index.vue
src/views/mes/tm/toolrequest/index.vue
+7
-7
itemIndex.vue
src/views/mes/tm/toolrequest/itemIndex.vue
+11
-11
index.vue
src/views/mes/tm/toolrequestlist/index.vue
+2
-2
index.vue
src/views/mes/tm/toolrequestuse/index.vue
+7
-7
index.vue
src/views/mes/tm/warehouse/index.vue
+4
-4
itemIndex.vue
src/views/mes/tm/warehouse/itemIndex.vue
+2
-2
selectmachinesrecord.vue
src/views/mes/tm/warehouse/selectmachinesrecord.vue
+1
-1
No files found.
src/api/mes/pro/protask.js
View file @
1aa6851d
...
...
@@ -26,7 +26,7 @@ export function listTaskListDetail(query) {
params
:
query
,
});
}
// 查询根据任务id获取刀模
板
// 查询根据任务id获取刀模
版
export
function
getTaskIdMaxProcessTool
(
query
)
{
const
params
=
Object
.
assign
({},
query
)
const
id
=
query
.
taskId
;
...
...
src/api/mes/tm/maintenance.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询要维护刀模
板
列表
// 查询要维护刀模
版
列表
export
function
listMaintenance
(
query
)
{
return
request
({
url
:
'/md/maintenance/list'
,
...
...
@@ -9,7 +9,7 @@ export function listMaintenance(query) {
})
}
// 查询要维护刀模
板
详细
// 查询要维护刀模
版
详细
export
function
getMaintenance
(
toolMaintenanceId
)
{
return
request
({
url
:
'/md/maintenance/'
+
toolMaintenanceId
,
...
...
@@ -17,7 +17,7 @@ export function getMaintenance(toolMaintenanceId) {
})
}
// 新增要维护刀模
板
// 新增要维护刀模
版
export
function
addMaintenance
(
data
)
{
return
request
({
url
:
'/md/maintenance'
,
...
...
@@ -26,7 +26,7 @@ export function addMaintenance(data) {
})
}
// 修改要维护刀模
板
// 修改要维护刀模
版
export
function
updateMaintenance
(
data
)
{
return
request
({
url
:
'/md/maintenance'
,
...
...
@@ -35,7 +35,7 @@ export function updateMaintenance(data) {
})
}
// 开始维护刀模
板
// 开始维护刀模
版
export
function
delMaintenance
(
toolMaintenanceId
)
{
return
request
({
url
:
'/md/maintenance/'
+
toolMaintenanceId
,
...
...
src/api/mes/tm/tmToolMachines.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
上下机列表
// 查询刀模
版
上下机列表
export
function
listTmToolMachines
(
query
)
{
return
request
({
url
:
'/tm/tmToolMachines/list'
,
...
...
@@ -9,7 +9,7 @@ export function listTmToolMachines(query) {
})
}
// 查询刀模
板
上下机详细
// 查询刀模
版
上下机详细
export
function
getTmToolMachines
(
toolMachinesId
)
{
return
request
({
url
:
'/tm/tmToolMachines/'
+
toolMachinesId
,
...
...
@@ -17,7 +17,7 @@ export function getTmToolMachines(toolMachinesId) {
})
}
// 新增刀模
板
上下机
// 新增刀模
版
上下机
export
function
addTmToolMachines
(
data
)
{
return
request
({
url
:
'/tm/tmToolMachines'
,
...
...
@@ -26,7 +26,7 @@ export function addTmToolMachines(data) {
})
}
// 修改刀模
板
上下机
// 修改刀模
版
上下机
export
function
updateTmToolMachines
(
data
)
{
return
request
({
url
:
'/tm/tmToolMachines'
,
...
...
@@ -35,7 +35,7 @@ export function updateTmToolMachines(data) {
})
}
// 删除刀模
板
上下机
// 删除刀模
版
上下机
export
function
delTmToolMachines
(
toolMachinesId
)
{
return
request
({
url
:
'/tm/tmToolMachines/'
+
toolMachinesId
,
...
...
src/api/mes/tm/tmToolMachinesRecord.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
上下机记录列表
// 查询刀模
版
上下机记录列表
export
function
listTmToolMachinesRecord
(
query
)
{
return
request
({
url
:
'/tm/tmToolMachinesRecord/list'
,
...
...
@@ -9,7 +9,7 @@ export function listTmToolMachinesRecord(query) {
})
}
// 查询刀模
板
上下机记录详细
// 查询刀模
版
上下机记录详细
export
function
getTmToolMachinesRecord
(
toolMachinesRecordId
)
{
return
request
({
url
:
'/tm/tmToolMachinesRecord/'
+
toolMachinesRecordId
,
...
...
@@ -17,7 +17,7 @@ export function getTmToolMachinesRecord(toolMachinesRecordId) {
})
}
// 新增刀模
板
上下机记录
// 新增刀模
版
上下机记录
export
function
addTmToolMachinesRecord
(
data
)
{
return
request
({
url
:
'/tm/tmToolMachinesRecord'
,
...
...
@@ -26,7 +26,7 @@ export function addTmToolMachinesRecord(data) {
})
}
// 修改刀模
板
上下机记录
// 修改刀模
版
上下机记录
export
function
updateTmToolMachinesRecord
(
data
)
{
return
request
({
url
:
'/tm/tmToolMachinesRecord'
,
...
...
@@ -35,7 +35,7 @@ export function updateTmToolMachinesRecord(data) {
})
}
// 删除刀模
板
上下机记录
// 删除刀模
版
上下机记录
export
function
delTmToolMachinesRecord
(
toolMachinesRecordId
)
{
return
request
({
url
:
'/tm/tmToolMachinesRecord/'
+
toolMachinesRecordId
,
...
...
src/api/mes/tm/tmToolRequest.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
申请单列表
// 查询刀模
版
申请单列表
export
function
listTmToolRequest
(
query
)
{
return
request
({
url
:
'/tm/tmToolRequest/list'
,
...
...
@@ -9,7 +9,7 @@ export function listTmToolRequest(query) {
})
}
// 查询刀模
板
申请单详细
// 查询刀模
版
申请单详细
export
function
getTmToolRequest
(
toolRequestId
)
{
return
request
({
url
:
'/tm/tmToolRequest/'
+
toolRequestId
,
...
...
@@ -17,7 +17,7 @@ export function getTmToolRequest(toolRequestId) {
})
}
// 新增刀模
板
申请单
// 新增刀模
版
申请单
export
function
addTmToolRequest
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequest'
,
...
...
@@ -26,7 +26,7 @@ export function addTmToolRequest(data) {
})
}
// 修改刀模
板
申请单
// 修改刀模
版
申请单
export
function
updateTmToolRequest
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequest'
,
...
...
@@ -35,7 +35,7 @@ export function updateTmToolRequest(data) {
})
}
// 删除刀模
板
申请单
// 删除刀模
版
申请单
export
function
delTmToolRequest
(
toolRequestId
)
{
return
request
({
url
:
'/tm/tmToolRequest/'
+
toolRequestId
,
...
...
src/api/mes/tm/tmToolRequestItem.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
物料申请单列表
// 查询刀模
版
物料申请单列表
export
function
listTmToolRequestItem
(
query
)
{
return
request
({
url
:
'/tm/tmToolRequestItem/list'
,
...
...
@@ -9,7 +9,7 @@ export function listTmToolRequestItem(query) {
})
}
// 查询刀模
板
物料申请单详细
// 查询刀模
版
物料申请单详细
export
function
getTmToolRequestItem
(
toolRequestItemId
)
{
return
request
({
url
:
'/tm/tmToolRequestItem/'
+
toolRequestItemId
,
...
...
@@ -17,7 +17,7 @@ export function getTmToolRequestItem(toolRequestItemId) {
})
}
// 新增刀模
板
物料申请单
// 新增刀模
版
物料申请单
export
function
addTmToolRequestItem
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequestItem'
,
...
...
@@ -26,7 +26,7 @@ export function addTmToolRequestItem(data) {
})
}
// 修改刀模
板
物料申请单
// 修改刀模
版
物料申请单
export
function
updateTmToolRequestItem
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequestItem'
,
...
...
@@ -35,7 +35,7 @@ export function updateTmToolRequestItem(data) {
})
}
// 删除刀模
板
物料申请单
// 删除刀模
版
物料申请单
export
function
delTmToolRequestItem
(
toolRequestItemId
)
{
return
request
({
url
:
'/tm/tmToolRequestItem/'
+
toolRequestItemId
,
...
...
src/api/mes/tm/tmToolRequestUse.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
领用单列表
// 查询刀模
版
领用单列表
export
function
listTmToolRequestUse
(
query
)
{
return
request
({
url
:
'/tm/tmToolRequestUse/list'
,
...
...
@@ -9,7 +9,7 @@ export function listTmToolRequestUse(query) {
})
}
// 查询刀模
板
领用单详细
// 查询刀模
版
领用单详细
export
function
getTmToolRequestUse
(
toolRequestUseId
)
{
return
request
({
url
:
'/tm/tmToolRequestUse/'
+
toolRequestUseId
,
...
...
@@ -17,7 +17,7 @@ export function getTmToolRequestUse(toolRequestUseId) {
})
}
// 通过申请单id查询申请单刀模
板
数据
// 通过申请单id查询申请单刀模
版
数据
export
function
getTmToolRequestList
(
toolRequestId
)
{
return
request
({
url
:
'tm/tmToolRequestUse/getToolsBytoolRequestId/'
+
toolRequestId
,
...
...
@@ -36,7 +36,7 @@ export function getTmToolSnList(query) {
// 新增刀模
板
领用单
// 新增刀模
版
领用单
export
function
addTmToolRequestUse
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequestUse'
,
...
...
@@ -45,7 +45,7 @@ export function addTmToolRequestUse(data) {
})
}
// 修改刀模
板
领用单
// 修改刀模
版
领用单
export
function
updateTmToolRequestUse
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequestUse'
,
...
...
@@ -54,7 +54,7 @@ export function updateTmToolRequestUse(data) {
})
}
// 删除刀模
板
领用单
// 删除刀模
版
领用单
export
function
delTmToolRequestUse
(
toolRequestUseId
)
{
return
request
({
url
:
'/tm/tmToolRequestUse/'
+
toolRequestUseId
,
...
...
src/api/mes/tm/tmToolRequestUseItem.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
物料领用单列表
// 查询刀模
版
物料领用单列表
export
function
listTmToolRequestUseItem
(
query
)
{
return
request
({
url
:
'/tm/tmToolRequestUseItem/list'
,
...
...
@@ -9,7 +9,7 @@ export function listTmToolRequestUseItem(query) {
})
}
// 查询刀模
板
物料领用单详细
// 查询刀模
版
物料领用单详细
export
function
getTmToolRequestUseItem
(
toolRequestUseItemId
)
{
return
request
({
url
:
'/tm/tmToolRequestUseItem/'
+
toolRequestUseItemId
,
...
...
@@ -17,7 +17,7 @@ export function getTmToolRequestUseItem(toolRequestUseItemId) {
})
}
// 新增刀模
板
物料领用单
// 新增刀模
版
物料领用单
export
function
addTmToolRequestUseItem
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequestUseItem'
,
...
...
@@ -26,7 +26,7 @@ export function addTmToolRequestUseItem(data) {
})
}
// 修改刀模
板
物料领用单
// 修改刀模
版
物料领用单
export
function
updateTmToolRequestUseItem
(
data
)
{
return
request
({
url
:
'/tm/tmToolRequestUseItem'
,
...
...
@@ -35,7 +35,7 @@ export function updateTmToolRequestUseItem(data) {
})
}
// 删除刀模
板
物料领用单
// 删除刀模
版
物料领用单
export
function
delTmToolRequestUseItem
(
toolRequestUseItemId
)
{
return
request
({
url
:
'/tm/tmToolRequestUseItem/'
+
toolRequestUseItemId
,
...
...
src/api/mes/tm/toolmachinesrecord.js
View file @
1aa6851d
import
request
from
"@/utils/request"
;
// 查询刀模
板
上下机记录列表
// 查询刀模
版
上下机记录列表
export
function
listRecord
(
query
)
{
return
request
({
url
:
"/tm/tmToolMachines/list"
,
...
...
@@ -9,7 +9,7 @@ export function listRecord(query) {
});
}
// 查询刀模
板
上下机记录详细
// 查询刀模
版
上下机记录详细
export
function
getRecord
(
toolMachinesRecordId
)
{
return
request
({
url
:
"/tm/tmToolMachinesRecord/"
+
toolMachinesRecordId
,
...
...
@@ -17,7 +17,7 @@ export function getRecord(toolMachinesRecordId) {
});
}
// 新增刀模
板
上下机记录
// 新增刀模
版
上下机记录
export
function
addRecord
(
data
)
{
return
request
({
url
:
"/tm/tmToolMachinesRecord"
,
...
...
@@ -35,7 +35,7 @@ export function updateRecordWarehouse(data) {
});
}
// 修改刀模
板
上下机记录
// 修改刀模
版
上下机记录
export
function
updateRecord
(
data
)
{
return
request
({
url
:
"/tm/tmToolMachinesRecord"
,
...
...
@@ -44,7 +44,7 @@ export function updateRecord(data) {
});
}
// 删除刀模
板
上下机记录
// 删除刀模
版
上下机记录
export
function
delRecord
(
toolMachinesRecordId
)
{
return
request
({
url
:
"/tm/tmToolMachinesRecord/"
+
toolMachinesRecordId
,
...
...
src/api/mes/tm/warehouse.js
View file @
1aa6851d
import
request
from
'@/utils/request'
// 查询刀模
板
入库列表
// 查询刀模
版
入库列表
export
function
lisWoreHouse
(
query
)
{
return
request
({
url
:
"/md/warehouse/list"
,
...
...
@@ -9,7 +9,7 @@ export function lisWoreHouse(query) {
});
}
// 查询刀模
板
入库详情列表
// 查询刀模
版
入库详情列表
export
function
lisWoreHouseDetail
(
query
)
{
return
request
({
url
:
`/md/warehouse/item/list`
,
...
...
@@ -18,7 +18,7 @@ export function lisWoreHouseDetail(query) {
});
}
// 新增刀模
板
入库
// 新增刀模
版
入库
export
function
addWoreHouse
(
data
)
{
return
request
({
url
:
"/md/warehouse"
,
...
...
src/components/toolRequest/single.vue
View file @
1aa6851d
<
template
>
<el-dialog
title=
"刀模
板
申请单选择"
title=
"刀模
版
申请单选择"
v-if=
"showFlag"
:visible
.
sync=
"showFlag"
:modal=
"false"
...
...
@@ -8,7 +8,7 @@
center
>
<el-row
:gutter=
"20"
>
<!--刀模
板
申请数据-->
<!--刀模
版
申请数据-->
<el-col
:span=
"20"
:xs=
"20"
>
<el-form
:model=
"queryParams"
...
...
src/views/mes/cal/holiday/itemIndex.vue
View file @
1aa6851d
...
...
@@ -82,7 +82,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
物料申请单表格数据
// 刀模
版
物料申请单表格数据
tmToolRequestItemList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -119,7 +119,7 @@ export default {
created
()
{
},
methods
:
{
/** 查询刀模
板
物料申请单列表 */
/** 查询刀模
版
物料申请单列表 */
getList
()
{
this
.
loading
=
true
;
listItem
(
this
.
queryParams
).
then
(
response
=>
{
...
...
src/views/mes/pro/arrange/info.vue
View file @
1aa6851d
...
...
@@ -39,7 +39,7 @@
<!--
</el-form-item>
-->
<!--
</el-form>
-->
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-row
v-if=
"showBtn"
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
...
...
@@ -112,7 +112,7 @@
</
template
>
</el-table-column>
-->
<el-table-column
label=
"生产工单编号"
align=
"center"
prop=
"workorderCode"
/>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<el-table-column
v-if=
"showBtn"
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
...
...
@@ -194,6 +194,10 @@ export default {
addBtn
:
{
type
:
Boolean
,
default
:
true
},
showBtn
:
{
type
:
Boolean
,
default
:
true
}
},
data
()
{
...
...
src/views/mes/pro/combination/info.vue
View file @
1aa6851d
...
...
@@ -31,7 +31,7 @@
<!--
</el-form-item>
-->
<!--
</el-form>
-->
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-row
v-if=
"showBtn"
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
...
...
@@ -106,7 +106,7 @@
</el-table-column>
<el-table-column
label=
"生产工单号"
align=
"center"
prop=
"workorderCode"
/>
<!-- <el-table-column label="销售订单号" align="center" prop="salesOrderId"/>-->
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<el-table-column
label=
"操作"
v-if=
"showBtn"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
<el-button
size=
"mini"
...
...
@@ -183,6 +183,10 @@ export default {
combinationCode
:
{
type
:
String
,
default
:
null
},
showBtn
:
{
type
:
Boolean
,
default
:
true
}
},
data
()
{
...
...
@@ -230,6 +234,7 @@ export default {
watch
:
{
combinationCode
:
{
handler
(
newVal
,
oldVal
)
{
console
.
log
(
newVal
,
'newVal'
)
this
.
$nextTick
(()
=>
{
if
(
this
.
combinationCode
!=
''
&&
this
.
combinationCode
!=
null
)
{
this
.
queryParams
.
combinationCode
=
this
.
combinationCode
;
...
...
src/views/mes/pro/combination/infos.vue
View file @
1aa6851d
<
template
>
<div>
<el-tabs
type=
"border-card"
>
<el-tab-pane
v-for=
"
item in combinationCodes
"
>
<el-tab-pane
v-for=
"
(item,index) in combinationCodes"
:key=
"index
"
>
<div
slot=
"label"
@
click=
"changeCombination(item)"
>
{{
item
}}
</div>
<CombinationInfo
ref=
"combRef"
:combinationCode=
"combinationCode"
></CombinationInfo>
<CombinationInfo
ref=
"combRef"
:
showBtn=
"$attrs.showBtn === undefined?true: $attrs.showBtn"
:
combinationCode=
"combinationCode"
></CombinationInfo>
</el-tab-pane>
</el-tabs>
</div>
...
...
src/views/mes/pro/scheduleList/index.vue
View file @
1aa6851d
...
...
@@ -229,7 +229,7 @@
@
pagination
=
"getList"
/>
<!--
添加或修改要维护刀模
板
对话框
-->
<!--
添加或修改要维护刀模
版
对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
...
...
@@ -444,7 +444,7 @@ export default {
this
.
getList
();
}
,
methods
:
{
/** 查询要维护刀模
板
列表 */
/** 查询要维护刀模
版
列表 */
getList
()
{
this
.
loading
=
true
;
const
params
=
{...
this
.
queryParams
}
...
...
src/views/mes/pro/workorder/indexApply.vue
View file @
1aa6851d
...
...
@@ -335,7 +335,7 @@
<el-button
size=
"mini"
type=
"text"
@
click=
"showCombDetail(scope.row.combinationCode)"
@
click=
"showCombDetail(scope.row
, scope.row
.combinationCode)"
>
{{
scope
.
row
.
combinationCode
}}
</el-button
>
...
...
@@ -352,7 +352,7 @@
<el-button
size=
"mini"
type=
"text"
@
click=
"showArrangDetail(scope.row.arrangeCode)"
@
click=
"showArrangDetail(scope.row
, scope.row
.arrangeCode)"
>
{{
scope
.
row
.
arrangeCode
}}
</el-button
>
...
...
@@ -803,12 +803,12 @@
<
el
-
dialog
title
=
"组合单明细"
v
-
if
=
"combOpen"
:
visible
.
sync
=
"combOpen"
width
=
"1000px"
append
-
to
-
body
@
close
=
"getList"
>
<
CombinationInfos
:
combinationCodes
=
"combinationCodes"
><
/CombinationInfos
>
<
CombinationInfos
:
combinationCodes
=
"combinationCodes"
:
showBtn
=
"showCombinationBtn"
><
/CombinationInfos
>
<
/el-dialog
>
<
el
-
dialog
title
=
"编排单明细"
v
-
if
=
"arrangeOpen"
:
visible
.
sync
=
"arrangeOpen"
width
=
"1000px"
append
-
to
-
body
@
close
=
"getList"
>
<
ArrangeInfo
:
arrange
-
code
=
"arrangeCode"
><
/ArrangeInfo
>
<
ArrangeInfo
:
arrange
-
code
=
"arrangeCode"
:
showBtn
=
"showArrangBtn"
><
/ArrangeInfo
>
<
/el-dialog
>
<
el
-
dialog
title
=
"编排单明细"
v
-
if
=
"arrangeOpen2"
:
visible
.
sync
=
"arrangeOpen2"
width
=
"1000px"
append
-
to
-
body
...
...
@@ -873,6 +873,8 @@ export default {
}
,
data
()
{
return
{
showArrangBtn
:
false
,
showCombinationBtn
:
false
,
currentData
:
{
}
,
//自动生成编码
autoGenFlag
:
false
,
...
...
@@ -984,12 +986,22 @@ export default {
this
.
currentData
=
row
this
.
$refs
.
WorkorderRecordSelectRef
.
showFlag
=
true
}
,
showCombDetail
(
combinationCode
)
{
showCombDetail
(
row
,
combinationCode
)
{
this
.
combOpen
=
true
;
if
(
row
.
status
===
'COMBINED'
)
{
this
.
showCombinationBtn
=
true
}
else
{
this
.
showCombinationBtn
=
false
}
this
.
combinationCodes
=
[
combinationCode
];
}
,
showArrangDetail
(
arrangeCode
)
{
showArrangDetail
(
row
,
arrangeCode
)
{
this
.
arrangeOpen
=
true
;
if
(
row
.
status
===
'ORCHESTRATED'
)
{
this
.
showArrangBtn
=
true
}
else
{
this
.
showArrangBtn
=
false
}
this
.
arrangeCode
=
arrangeCode
;
}
,
async
handleArrange
()
{
...
...
src/views/mes/tm/maintenance/index.vue
View file @
1aa6851d
...
...
@@ -174,7 +174,7 @@
@
pagination=
"getList"
/>
<!-- 添加或修改要维护刀模
板
对话框 -->
<!-- 添加或修改要维护刀模
版
对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
...
...
@@ -331,7 +331,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 要维护刀模
板
表格数据
// 要维护刀模
版
表格数据
maintenanceList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -375,7 +375,7 @@ export default {
},
methods
:
{
/** 查询要维护刀模
板
列表 */
/** 查询要维护刀模
版
列表 */
getList
()
{
this
.
loading
=
true
;
listMaintenance
(
this
.
queryParams
).
then
(
response
=>
{
...
...
@@ -510,7 +510,7 @@ export default {
return
}
const
toolMaintenanceId
=
row
.
toolMaintenanceId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认要维护刀模
板
编号为"'
+
toolMaintenanceId
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认要维护刀模
版
编号为"'
+
toolMaintenanceId
+
'"的数据项?'
).
then
(
function
()
{
return
delMaintenance
(
toolMaintenanceId
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/toolmachines/index.vue
View file @
1aa6851d
...
...
@@ -41,10 +41,10 @@
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"刀模
板
领用单id"
prop=
"toolRequestUseId"
>
<el-form-item
label=
"刀模
版
领用单id"
prop=
"toolRequestUseId"
>
<el-input
v-model=
"queryParams.toolRequestUseId"
placeholder=
"请输入刀模
板
领用单id"
placeholder=
"请输入刀模
版
领用单id"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
...
...
@@ -109,7 +109,7 @@
<el-table-column
label=
"工单工序"
align=
"center"
prop=
"processName"
/>
<el-table-column
label=
"工作单元"
align=
"center"
prop=
"workunitName"
/>
<el-table-column
label=
"生产工单"
align=
"center"
prop=
"workorderName"
/>
<el-table-column
label=
"刀模
板
领用单号"
align=
"center"
prop=
"toolRequestUseCode"
/>
<el-table-column
label=
"刀模
版
领用单号"
align=
"center"
prop=
"toolRequestUseCode"
/>
<!--
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
>
<template
slot-scope=
"scope"
>
<el-button
...
...
@@ -138,7 +138,7 @@
@
pagination=
"getList"
/>
<!-- 添加或修改刀模
板
上下机对话框 -->
<!-- 添加或修改刀模
版
上下机对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"编码"
prop=
"toolMachinesCode"
>
...
...
@@ -156,8 +156,8 @@
<el-form-item
label=
"生产工单id"
prop=
"workorderId"
>
<el-input
v-model=
"form.workorderId"
placeholder=
"请输入生产工单id"
/>
</el-form-item>
<el-form-item
label=
"刀模
板
领用单id"
prop=
"toolRequestUseId"
>
<el-input
v-model=
"form.toolRequestUseId"
placeholder=
"请输入刀模
板
领用单id"
/>
<el-form-item
label=
"刀模
版
领用单id"
prop=
"toolRequestUseId"
>
<el-input
v-model=
"form.toolRequestUseId"
placeholder=
"请输入刀模
版
领用单id"
/>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
...
...
@@ -187,7 +187,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
上下机表格数据
// 刀模
版
上下机表格数据
tmToolMachinesList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -209,7 +209,7 @@ export default {
this
.
getList
();
},
methods
:
{
/** 查询刀模
板
上下机列表 */
/** 查询刀模
版
上下机列表 */
getList
()
{
this
.
loading
=
true
;
listTmToolMachines
(
this
.
queryParams
).
then
(
response
=>
{
...
...
@@ -249,7 +249,7 @@ export default {
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加刀模
板
上下机"
;
this
.
title
=
"添加刀模
版
上下机"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
...
...
@@ -258,7 +258,7 @@ export default {
getTmToolMachines
(
toolMachinesId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改刀模
板
上下机"
;
this
.
title
=
"修改刀模
版
上下机"
;
});
},
/** 提交按钮 */
...
...
@@ -284,7 +284,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
toolMachinesIds
=
row
.
toolMachinesId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
上下机编号为"'
+
toolMachinesIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除刀模
版
上下机编号为"'
+
toolMachinesIds
+
'"的数据项?'
).
then
(
function
()
{
return
delTmToolMachines
(
toolMachinesIds
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/toolmachinesrecord/index.vue
View file @
1aa6851d
...
...
@@ -211,7 +211,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
上下机记录表格数据
// 刀模
版
上下机记录表格数据
recordList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -257,7 +257,7 @@ export default {
handleInWareHouse
(
e
)
{
console
.
log
(
e
,
'House'
)
},
/** 查询刀模
板
上下机记录列表 */
/** 查询刀模
版
上下机记录列表 */
getList
()
{
this
.
loading
=
true
;
const
params
=
Object
.
assign
({},
this
.
queryParams
)
...
...
@@ -308,7 +308,7 @@ export default {
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加刀模
板
上下机记录"
;
this
.
title
=
"添加刀模
版
上下机记录"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
...
...
@@ -346,7 +346,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
toolMachinesRecordIds
=
row
.
toolMachinesRecordId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
上下机记录编号为"'
+
toolMachinesRecordIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除刀模
版
上下机记录编号为"'
+
toolMachinesRecordIds
+
'"的数据项?'
).
then
(
function
()
{
return
delRecord
(
toolMachinesRecordIds
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/toolrequest/index.vue
View file @
1aa6851d
...
...
@@ -186,7 +186,7 @@
@
pagination
=
"getList"
/>
<!--
添加或修改刀模
板
申请单对话框
-->
<!--
添加或修改刀模
版
申请单对话框
-->
<
el
-
dialog
v
-
if
=
"open"
:
destroy
-
on
-
close
=
"true"
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"960px"
append
-
to
-
body
:
close
-
on
-
click
-
modal
=
"false"
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"100px"
>
<
el
-
row
>
...
...
@@ -262,7 +262,7 @@
<
el
-
input
v
-
model
=
"form.arrangeCode"
placeholder
=
"请输入编排单号"
/>
<
/el-form-item> --
>
<
/el-form
>
<
el
-
divider
content
-
position
=
"center"
>
刀模
板
申请详细
<
/el-divider
>
<
el
-
divider
content
-
position
=
"center"
>
刀模
版
申请详细
<
/el-divider
>
<
el
-
card
shadow
=
"always"
class
=
"box-card"
>
<
itemline
ref
=
"line"
:
quantity
=
"form.quantity"
:
toolRequestId
=
"form.toolRequestId"
:
taskId
=
"form.taskWorkunitId"
:
optType
=
"optType"
@
sum
=
"handleSumNum"
><
/itemline
>
<
/el-card
>
...
...
@@ -333,7 +333,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
申请单表格数据
// 刀模
版
申请单表格数据
tmToolRequestList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -391,7 +391,7 @@ export default {
pdf_path
:
'http://192.168.23.19:8081/static/123.pdf'
,
}
);
}
,
/** 查询刀模
板
申请单列表 */
/** 查询刀模
版
申请单列表 */
getList
()
{
this
.
loading
=
true
;
listTmToolRequest
(
this
.
queryParams
).
then
(
response
=>
{
...
...
@@ -470,7 +470,7 @@ export default {
handleAdd
()
{
this
.
reset
()
this
.
gCode
()
this
.
title
=
'添加刀模
板
申请单'
this
.
title
=
'添加刀模
版
申请单'
this
.
open
=
true
;
this
.
optType
=
"add"
}
,
...
...
@@ -505,7 +505,7 @@ export default {
getTmToolRequest
(
toolRequestId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改刀模
板
申请单"
;
this
.
title
=
"修改刀模
版
申请单"
;
}
);
}
,
/** 提交按钮 */
...
...
@@ -539,7 +539,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
toolRequestIds
=
row
.
toolRequestId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
申请单编号为"'
+
toolRequestIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除刀模
版
申请单编号为"'
+
toolRequestIds
+
'"的数据项?'
).
then
(
function
()
{
return
delTmToolRequest
(
toolRequestIds
);
}
).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/toolrequest/itemIndex.vue
View file @
1aa6851d
...
...
@@ -12,8 +12,8 @@
<el-table
v-loading=
"loading"
:data=
"tmToolRequestItemList"
@
selection-change=
"handleSelectionChange"
>
<!--
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
-->
<!--
<el-table-column
label=
"主键id"
align=
"center"
prop=
"toolRequestItemId"
/>
<el-table-column
label=
"刀模
板
申请单id"
align=
"center"
prop=
"toolRequestId"
/>
-->
<el-table-column
label=
"刀模
板
物料名称"
align=
"center"
prop=
"itemName"
/>
<el-table-column
label=
"刀模
版
申请单id"
align=
"center"
prop=
"toolRequestId"
/>
-->
<el-table-column
label=
"刀模
版
物料名称"
align=
"center"
prop=
"itemName"
/>
<el-table-column
width=
"80px"
v-if=
"$attrs.optType === 'add'"
label=
"数量"
align=
"center"
prop=
"allQuantity"
>
<template
slot-scope=
"scope"
>
...
...
@@ -43,11 +43,11 @@
@
pagination=
"getList"
/>
<!-- 添加或修改刀模
板
物料申请单对话框 -->
<!-- 添加或修改刀模
版
物料申请单对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"刀模
板
申请单id"
prop=
"toolRequestId"
>
<el-input
v-model=
"form.toolRequestId"
placeholder=
"请输入刀模
板
申请单id"
/>
<el-form-item
label=
"刀模
版
申请单id"
prop=
"toolRequestId"
>
<el-input
v-model=
"form.toolRequestId"
placeholder=
"请输入刀模
版
申请单id"
/>
</el-form-item>
<el-form-item
label=
"物料id"
prop=
"itemId"
>
<el-input
v-model=
"form.itemId"
placeholder=
"请输入物料id"
/>
...
...
@@ -94,7 +94,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
物料申请单表格数据
// 刀模
版
物料申请单表格数据
tmToolRequestItemList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -140,7 +140,7 @@ export default {
this
.
tmToolRequestItemList
=
this
.
detailList
.
concat
(
this
.
addList
)
this
.
$emit
(
'sum'
)
},
/** 查询刀模
板
物料申请单列表 */
/** 查询刀模
版
物料申请单列表 */
getList
()
{
this
.
loading
=
true
;
this
.
queryParams
.
toolRequestId
=
this
.
toolRequestId
;
...
...
@@ -150,7 +150,7 @@ export default {
this
.
loading
=
false
;
});
},
/** 查询任务刀模
板
申请单列表 */
/** 查询任务刀模
版
申请单列表 */
getTaskList
()
{
this
.
loading
=
true
;
this
.
queryParams
.
taskId
=
this
.
$attrs
.
taskId
;
...
...
@@ -211,7 +211,7 @@ export default {
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加刀模
板
物料申请单"
;
this
.
title
=
"添加刀模
版
物料申请单"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
...
...
@@ -220,7 +220,7 @@ export default {
getTmToolRequestItem
(
toolRequestItemId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改刀模
板
物料申请单"
;
this
.
title
=
"修改刀模
版
物料申请单"
;
});
},
/** 提交按钮 */
...
...
@@ -246,7 +246,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
toolRequestItemIds
=
row
.
toolRequestItemId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
物料申请单编号为"'
+
toolRequestItemIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除刀模
版
物料申请单编号为"'
+
toolRequestItemIds
+
'"的数据项?'
).
then
(
function
()
{
return
delTmToolRequestItem
(
toolRequestItemIds
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/toolrequestlist/index.vue
View file @
1aa6851d
...
...
@@ -79,7 +79,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
上下机记录表格数据
// 刀模
版
上下机记录表格数据
recordList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -183,7 +183,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
toolMachinesRecordIds
=
row
.
toolMachinesRecordId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
上下机记录编号为"'
+
toolMachinesRecordIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除刀模
版
上下机记录编号为"'
+
toolMachinesRecordIds
+
'"的数据项?'
).
then
(
function
()
{
return
delRecord
(
toolMachinesRecordIds
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/toolrequestuse/index.vue
View file @
1aa6851d
...
...
@@ -177,7 +177,7 @@
@
pagination
=
"getList"
/>
<!--
添加或修改刀模
板
领用单对话框
-->
<!--
添加或修改刀模
版
领用单对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
...
...
@@ -303,7 +303,7 @@
<
/el-row
>
<
/el-form
>
<
el
-
divider
content
-
position
=
"left"
>
申请单刀模
板
具数据
<
/el-divider
>
<
el
-
divider
content
-
position
=
"left"
>
申请单刀模
版
具数据
<
/el-divider
>
<
el
-
table
:
data
=
"tmToolRequestList"
>
<
el
-
table
-
column
label
=
"物料"
prop
=
"itemName"
/>
<
el
-
table
-
column
label
=
"数量"
prop
=
"allQuantity"
/>
...
...
@@ -362,7 +362,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
领用单表格数据
// 刀模
版
领用单表格数据
tmToolRequestUseList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -399,7 +399,7 @@ export default {
this
.
getList
();
}
,
methods
:
{
/** 查询刀模
板
领用单列表 */
/** 查询刀模
版
领用单列表 */
getList
()
{
this
.
loading
=
true
;
listTmToolRequestUse
(
this
.
queryParams
).
then
((
response
)
=>
{
...
...
@@ -462,7 +462,7 @@ export default {
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加刀模
板
领用单"
;
this
.
title
=
"添加刀模
版
领用单"
;
this
.
handleAutoGenChange
(
true
);
}
,
/** 修改按钮操作 */
...
...
@@ -489,7 +489,7 @@ export default {
console
.
log
(
this
.
tmToolRequestList
,
'this.tmToolRequestList'
)
//
}
);
this
.
open
=
true
;
this
.
title
=
"修改刀模
板
领用单"
;
this
.
title
=
"修改刀模
版
领用单"
;
}
);
}
,
/** 提交按钮 */
...
...
@@ -528,7 +528,7 @@ export default {
const
toolRequestUseIds
=
row
.
toolRequestUseId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
领用单编号为"'
+
toolRequestUseIds
+
'"的数据项?'
'是否确认删除刀模
版
领用单编号为"'
+
toolRequestUseIds
+
'"的数据项?'
)
.
then
(
function
()
{
return
delTmToolRequestUse
(
toolRequestUseIds
);
...
...
src/views/mes/tm/warehouse/index.vue
View file @
1aa6851d
...
...
@@ -55,7 +55,7 @@
<el-table
v-loading=
"loading"
:data=
"recordList"
@
selection-change=
"handleSelectionChange"
>
<!--
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
-->
<el-table-column
label=
"刀模
板
入库单编码"
min-width=
"150"
align=
"center"
prop=
"toolWarehouseCode"
/>
<el-table-column
label=
"刀模
版
入库单编码"
min-width=
"150"
align=
"center"
prop=
"toolWarehouseCode"
/>
<el-table-column
label=
"创建人"
align=
"center"
prop=
"createBy"
/>
<el-table-column
label=
"更新人"
align=
"center"
prop=
"updateBy"
/>
<el-table-column
label=
"创建时间"
align=
"center"
prop=
"createTime"
/>
...
...
@@ -128,7 +128,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
上下机记录表格数据
// 刀模
版
上下机记录表格数据
recordList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -176,7 +176,7 @@ export default {
handleInWareHouse
(
e
)
{
console
.
log
(
e
,
'House'
)
},
/** 查询刀模
板
上下机记录列表 */
/** 查询刀模
版
上下机记录列表 */
getList
()
{
this
.
loading
=
true
;
const
params
=
Object
.
assign
({},
this
.
queryParams
)
...
...
@@ -299,7 +299,7 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
toolMachinesRecordIds
=
row
.
toolMachinesRecordId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除刀模
板
上下机记录编号为"'
+
toolMachinesRecordIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除刀模
版
上下机记录编号为"'
+
toolMachinesRecordIds
+
'"的数据项?'
).
then
(
function
()
{
return
delRecord
(
toolMachinesRecordIds
);
}).
then
(()
=>
{
this
.
getList
();
...
...
src/views/mes/tm/warehouse/itemIndex.vue
View file @
1aa6851d
...
...
@@ -85,7 +85,7 @@ export default {
showSearch
:
true
,
// 总条数
total
:
0
,
// 刀模
板
物料申请单表格数据
// 刀模
版
物料申请单表格数据
tmToolRequestItemList
:
[],
// 弹出层标题
title
:
""
,
...
...
@@ -133,7 +133,7 @@ export default {
this
.
tmToolRequestItemList
=
this
.
tmToolRequestItemList
.
concat
(
datas
)
this
.
$emit
(
'sum'
)
},
/** 查询刀模
板
物料申请单列表 */
/** 查询刀模
版
物料申请单列表 */
getList
()
{
console
.
log
(
this
.
id
,
'ids'
)
this
.
loading
=
true
;
...
...
src/views/mes/tm/warehouse/selectmachinesrecord.vue
View file @
1aa6851d
<
template
>
<el-dialog
title=
"请选择刀模
板
入库申请单"
title=
"请选择刀模
版
入库申请单"
v-if=
"showFlag"
:visible
.
sync=
"showFlag"
:modal=
"true"
...
...
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