Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-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
mes
mes-ui
Commits
561653f4
Commit
561653f4
authored
Dec 12, 2024
by
tanjunxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 工作单元管理优化
parent
9c4276db
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
507 additions
and
192 deletions
+507
-192
request.js
src/api/mes/pro/request.js
+2
-2
index.vue
src/views/mes/md/workunit/index.vue
+505
-190
No files found.
src/api/mes/pro/request.js
View file @
561653f4
...
...
@@ -66,6 +66,6 @@ export function delMaterialRequest(materialRequestId) {
export
function
confirmMaterialRequest
(
applyNo
)
{
return
request
({
url
:
'/pro/materialRequest/confirm/'
+
applyNo
,
method
:
'get'
method
:
'get'
,
})
}
src/views/mes/md/workunit/index.vue
View file @
561653f4
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
@
submit
.
native
.
prevent
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"工作单元编码"
label-width=
"100px"
prop=
"workunitCode"
>
<el-input
v-model=
"queryParams.workunitCode"
placeholder=
"请输入工作单元编码"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
<el-form
:model=
"queryParams"
@
submit
.
native
.
prevent
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"工作单元编码"
label-width=
"100px"
prop=
"workunitCode"
>
<el-input
v-model=
"queryParams.workunitCode"
placeholder=
"请输入工作单元编码"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"工作单元名称"
label-width=
"100px"
prop=
"workunitName"
>
<el-input
v-model=
"queryParams.workunitName"
placeholder=
"请输入工作单元名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
<el-form-item
label=
"工作单元名称"
label-width=
"100px"
prop=
"workunitName"
>
<el-input
v-model=
"queryParams.workunitName"
placeholder=
"请输入工作单元名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"工作中心名称"
label-width=
"100px"
prop=
"workstationName"
>
<el-input
v-model=
"queryParams.workstationName"
placeholder=
"请输入工作中心"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
<el-form-item
label=
"工作中心名称"
label-width=
"100px"
prop=
"workstationName"
>
<el-input
v-model=
"queryParams.workstationName"
placeholder=
"请输入工作中心"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-select
v-model=
"queryParams.enableFlag"
placeholder=
"请选择是或否"
clearable
>
<el-option
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
/>
<el-select
v-model=
"queryParams.enableFlag"
placeholder=
"请选择是或否"
clearable
>
<el-option
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button
>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button
>
</el-form-item>
</el-form>
<el-row
:gutter=
"10"
class=
"mb8"
>
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['md:workunit:add']"
>
新增
</el-button>
</el-col>
<!--
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['md:workunit:edit']"
>
修改
</el-button>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
v-hasPermi=
"['md:workunit:add']"
>
新增
</el-button
>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
v-hasPermi=
"['md:workunit:edit']"
>
修改
</el-button
>
</el-col>
<!--
<el-col
:span=
"1.5"
>
<el-button
type=
"danger"
plain
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
v-hasPermi=
"['md:workunit:remove']"
>
删除
</el-button>
</el-col>
-->
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
v-hasPermi=
"['md:workunit:export']"
>
导出
</el-button>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
@
click=
"handleExport"
v-hasPermi=
"['md:workunit:export']"
>
导出
</el-button
>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"workunitList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
:data=
"workunitList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<!--
<el-table-column
label=
"工作单元ID"
align=
"center"
prop=
"workunitId"
/>
-->
<el-table-column
label=
"工作单元编码"
align=
"center"
width=
"150"
prop=
"workunitCode"
>
<el-table-column
label=
"工作单元编码"
align=
"center"
width=
"150"
prop=
"workunitCode"
>
<template
slot-scope=
"scope"
>
<el-button
type=
"text"
@
click=
"handleView(scope.row)"
>
{{
scope
.
row
.
workunitCode
}}
</el-button>
<el-button
type=
"text"
@
click=
"handleView(scope.row)"
>
{{
scope
.
row
.
workunitCode
}}
</el-button>
</
template
>
</el-table-column>
<el-table-column
label=
"工作中心"
align=
"center"
prop=
"workstationName"
/>
<el-table-column
label=
"工作单元名称"
align=
"center"
prop=
"workunitName"
/>
<el-table-column
label=
"工作单元名称"
align=
"center"
prop=
"workunitName"
/>
<el-table-column
label=
"是否启用"
align=
"center"
prop=
"enableFlag"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.enableFlag"
/>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.enableFlag"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"是否故障"
align=
"center"
prop=
"faultFlag"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.faultFlag"
/>
<dict-tag
:options=
"dict.type.sys_yes_no"
:value=
"scope.row.faultFlag"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"固化时间"
align=
"center"
prop=
"solidifyTime"
/>
<el-table-column
label=
"加工处理最小厚度"
align=
"center"
prop=
"treatingThicknessMin"
/>
<el-table-column
label=
"加工处理最大厚度"
align=
"center"
prop=
"treatingThicknessMax"
/>
<el-table-column
label=
"加工处理最小宽度"
align=
"center"
prop=
"treatingWidthMin"
/>
<el-table-column
label=
"加工处理最大宽度"
align=
"center"
prop=
"treatingWidthMax"
/>
<el-table-column
label=
"凹印_胶版油槽数"
align=
"center"
prop=
"dieSunkOffsetOilTankNum"
/>
<el-table-column
label=
"加工处理最小厚度"
align=
"center"
prop=
"treatingThicknessMin"
/>
<el-table-column
label=
"加工处理最大厚度"
align=
"center"
prop=
"treatingThicknessMax"
/>
<el-table-column
label=
"加工处理最小宽度"
align=
"center"
prop=
"treatingWidthMin"
/>
<el-table-column
label=
"加工处理最大宽度"
align=
"center"
prop=
"treatingWidthMax"
/>
<el-table-column
label=
"凹印_胶版油槽数"
align=
"center"
prop=
"dieSunkOffsetOilTankNum"
/>
<el-table-column
label=
"印刷方式"
align=
"center"
prop=
"printingMethod"
/>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
/>
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
...
...
@@ -82,114 +197,288 @@
</el-table-column> -->
</el-table>
<pagination
v-show=
"total > 0"
:total=
"total"
:page
.
sync=
"queryParams.pageNum"
:limit
.
sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<pagination
v-show=
"total > 0"
:total=
"total"
:page
.
sync=
"queryParams.pageNum"
:limit
.
sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<!-- 添加或修改工作单元对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"900px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
disabled
label-width=
"80px"
>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"工作中心"
label-width=
"120px"
prop=
"workstationName"
>
<el-input
v-model=
"form.workstationName"
placeholder=
"请输入工作中心"
>
<el-button
slot=
"append"
icon=
"el-icon-search"
@
click=
"handleWorkstationSelect"
></el-button>
<el-form-item
label=
"工作中心"
label-width=
"120px"
prop=
"workstationName"
>
<el-input
v-model=
"form.workstationName"
placeholder=
"请输入工作中心"
>
<el-button
slot=
"append"
icon=
"el-icon-search"
@
click=
"handleWorkstationSelect"
></el-button>
</el-input>
<WorkstationSelect
ref=
"workstationSelect"
@
onSelected=
"onWorkstationSelected"
>
</WorkstationSelect>
<WorkstationSelect
ref=
"workstationSelect"
@
onSelected=
"onWorkstationSelected"
>
</WorkstationSelect>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"工作单元编码"
label-width=
"120px"
prop=
"workunitCode"
>
<el-input
v-model=
"form.workunitCode"
placeholder=
"请输入工作单元编码"
readonly=
"readonly"
>
<el-form-item
label=
"工作单元编码"
label-width=
"120px"
prop=
"workunitCode"
>
<el-input
v-model=
"form.workunitCode"
placeholder=
"请输入工作单元编码"
readonly=
"readonly"
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"工作单元名称"
label-width=
"120px"
prop=
"workunitName"
>
<el-input
v-model=
"form.workunitName"
placeholder=
"请输入工作单元名称"
/>
<el-form-item
label=
"工作单元名称"
label-width=
"120px"
prop=
"workunitName"
>
<el-input
v-model=
"form.workunitName"
placeholder=
"请输入工作单元名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"印刷方式"
label-width=
"120px"
prop=
"printingMethod"
>
<el-input
v-model=
"form.printingMethod"
placeholder=
"请输入印刷方式"
/>
<el-form-item
label=
"印刷方式"
label-width=
"120px"
prop=
"printingMethod"
>
<el-input
v-model=
"form.printingMethod"
placeholder=
"请输入印刷方式"
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"凹印_胶版油槽数"
label-width=
"120px"
prop=
"dieSunkOffsetOilTankNum"
>
<el-input
v-model=
"form.dieSunkOffsetOilTankNum"
placeholder=
"请输入凹印_胶版油槽数"
>
<i
slot=
"suffix"
style=
"font-style:normal;margin-right: 10px; line-height: 30px; color: #1e1e1e"
>
个
</i>
<el-form-item
label=
"凹印_胶版油槽数"
label-width=
"120px"
prop=
"dieSunkOffsetOilTankNum"
>
<el-input
v-model=
"form.dieSunkOffsetOilTankNum"
placeholder=
"请输入凹印_胶版油槽数"
>
<i
slot=
"suffix"
style=
"
font-style: normal;
margin-right: 10px;
line-height: 30px;
color: #1e1e1e;
"
>
个
</i
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"固化时间"
label-width=
"120px"
prop=
"solidifyTime"
>
<el-input
v-model=
"form.solidifyTime"
placeholder=
"请输入固化时间"
>
<i
slot=
"suffix"
style=
"font-style:normal;margin-right: 10px; line-height: 30px; color: #1e1e1e"
>
MIN
</i>
<el-form-item
label=
"固化时间"
label-width=
"120px"
prop=
"solidifyTime"
>
<el-input
v-model=
"form.solidifyTime"
placeholder=
"请输入固化时间"
>
<i
slot=
"suffix"
style=
"
font-style: normal;
margin-right: 10px;
line-height: 30px;
color: #1e1e1e;
"
>
MIN
</i
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"最小厚度"
label-width=
"120px"
prop=
"treatingThicknessMin"
>
<el-input
v-model=
"form.treatingThicknessMin"
placeholder=
"请输入最小厚度"
>
<i
slot=
"suffix"
style=
"font-style:normal;margin-right: 10px; line-height: 30px; color: #1e1e1e"
>
cm
</i>
<el-form-item
label=
"最小厚度"
label-width=
"120px"
prop=
"treatingThicknessMin"
>
<el-input
v-model=
"form.treatingThicknessMin"
placeholder=
"请输入最小厚度"
>
<i
slot=
"suffix"
style=
"
font-style: normal;
margin-right: 10px;
line-height: 30px;
color: #1e1e1e;
"
>
cm
</i
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"最大厚度"
label-width=
"120px"
prop=
"treatingThicknessMax"
>
<el-input
v-model=
"form.treatingThicknessMax"
placeholder=
"请输入最大厚度"
>
<i
slot=
"suffix"
style=
"font-style:normal;margin-right: 10px; line-height: 30px; color: #1e1e1e"
>
cm
</i>
<el-form-item
label=
"最大厚度"
label-width=
"120px"
prop=
"treatingThicknessMax"
>
<el-input
v-model=
"form.treatingThicknessMax"
placeholder=
"请输入最大厚度"
>
<i
slot=
"suffix"
style=
"
font-style: normal;
margin-right: 10px;
line-height: 30px;
color: #1e1e1e;
"
>
cm
</i
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"最小宽度"
label-width=
"120px"
prop=
"treatingWidthMin"
>
<el-input
v-model=
"form.treatingWidthMin"
placeholder=
"请输入最小宽度"
>
<i
slot=
"suffix"
style=
"font-style:normal;margin-right: 10px; line-height: 30px; color: #1e1e1e"
>
cm
</i>
<el-form-item
label=
"最小宽度"
label-width=
"120px"
prop=
"treatingWidthMin"
>
<el-input
v-model=
"form.treatingWidthMin"
placeholder=
"请输入最小宽度"
>
<i
slot=
"suffix"
style=
"
font-style: normal;
margin-right: 10px;
line-height: 30px;
color: #1e1e1e;
"
>
cm
</i
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"最大宽度"
label-width=
"120px"
prop=
"treatingWidthMax"
>
<el-input
v-model=
"form.treatingWidthMax"
placeholder=
"请输入最大宽度"
>
<i
slot=
"suffix"
style=
"font-style:normal;margin-right: 10px; line-height: 30px; color: #1e1e1e"
>
cm
</i>
<el-form-item
label=
"最大宽度"
label-width=
"120px"
prop=
"treatingWidthMax"
>
<el-input
v-model=
"form.treatingWidthMax"
placeholder=
"请输入最大宽度"
>
<i
slot=
"suffix"
style=
"
font-style: normal;
margin-right: 10px;
line-height: 30px;
color: #1e1e1e;
"
>
cm
</i
>
</el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
<el-form-item
label=
"是否启用"
label-width=
"120px"
>
<el-radio-group
v-model=
"form.enableFlag"
disabled
v-if=
"optType == 'view'"
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio>
<el-radio-group
v-model=
"form.enableFlag"
disabled
v-if=
"optType == 'view'"
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio
>
</el-radio-group>
<el-radio-group
v-model=
"form.enableFlag"
v-else
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio
>
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"是否故障"
label-width=
"120px"
>
<el-radio-group
v-model=
"form.faultFlag"
disabled
v-if=
"optType == 'view'"
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio>
<el-radio-group
v-model=
"form.faultFlag"
disabled
v-if=
"optType == 'view'"
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio
>
</el-radio-group>
<el-radio-group
v-model=
"form.faultFlag"
v-else
>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio>
<el-radio
v-for=
"dict in dict.type.sys_yes_no"
:key=
"dict.value"
:label=
"dict.value"
>
{{ dict.label }}
</el-radio
>
</el-radio-group>
</el-form-item>
</el-form>
</el-col>
</el-row>
...
...
@@ -198,60 +487,70 @@
v-model=
"form.sacmForEdgeOpening"
true-label=
"Y"
false-label=
"N"
>
开边
</el-checkbox>
>
开边
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForPasteComposite"
true-label=
"Y"
false-label=
"N"
>
粘贴符合
</el-checkbox>
>
粘贴符合
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForThermalComposite"
true-label=
"Y"
false-label=
"N"
>
热复合
</el-checkbox>
>
热复合
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForLabeling"
true-label=
"Y"
false-label=
"N"
>
粘标
</el-checkbox>
>
粘标
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForBuckleUp"
true-label=
"Y"
false-label=
"N"
>
装扣
</el-checkbox>
>
装扣
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForCreasing"
true-label=
"Y"
false-label=
"N"
>
压痕
</el-checkbox>
>
压痕
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForOrgan"
true-label=
"Y"
false-label=
"N"
>
风琴
</el-checkbox>
>
风琴
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForThermalCutting"
true-label=
"Y"
false-label=
"N"
>
热切
</el-checkbox>
>
热切
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForThermalSelfFusion"
true-label=
"Y"
false-label=
"N"
>
热自合
</el-checkbox>
>
热自合
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForMolarTooth"
true-label=
"Y"
false-label=
"N"
>
压齿
</el-checkbox>
>
压齿
</el-checkbox
>
<el-checkbox
v-model=
"form.sacmForSlitting"
true-label=
"Y"
false-label=
"N"
>
分切
</el-checkbox>
>
分切
</el-checkbox
>
</el-form-item>
<el-row>
<el-col
:span=
"20"
>
<el-form-item
label=
"备注"
label-width=
"120px"
prop=
"remark"
>
...
...
@@ -261,7 +560,9 @@
</el-row>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"cancel"
v-if=
"optType == 'view'"
>
返回
</el-button>
<el-button
type=
"primary"
@
click=
"cancel"
v-if=
"optType == 'view'"
>
返回
</el-button
>
<el-button
type=
"primary"
@
click=
"submitForm"
v-else
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
...
...
@@ -270,14 +571,20 @@
</template>
<
script
>
import
{
listWorkunit
,
getWorkunit
,
delWorkunit
,
addWorkunit
,
updateWorkunit
}
from
"@/api/mes/md/workunit"
;
import
{
listWorkunit
,
getWorkunit
,
delWorkunit
,
addWorkunit
,
updateWorkunit
,
}
from
"@/api/mes/md/workunit"
;
import
WorkstationSelect
from
"@/components/workstationSelect/simpletableSingle.vue"
;
import
{
genCode
}
from
"@/api/system/autocode/rule"
import
{
genCode
}
from
"@/api/system/autocode/rule"
;
export
default
{
name
:
"Workunit"
,
components
:
{
WorkstationSelect
},
dicts
:
[
'sys_yes_no'
],
dicts
:
[
"sys_yes_no"
],
data
()
{
return
{
optType
:
undefined
,
...
...
@@ -313,44 +620,44 @@ export default {
},
// 表单参数
form
:
{
workstationId
:
''
,
workstationName
:
''
,
workunitCode
:
''
,
workstation
:
''
,
workunitName
:
''
,
enableFlag
:
'Y'
,
faultFlag
:
'N'
,
solidifyTime
:
''
,
treatingThicknessMin
:
''
,
treatingThicknessMax
:
''
,
treatingWidthMin
:
''
,
treatingWidthMax
:
''
,
dieSunkOffsetOilTankNum
:
''
,
printingMethod
:
''
,
sacmForEdgeOpening
:
''
,
sacmForPasteComposite
:
''
,
sacmForThermalComposite
:
''
,
sacmForLabeling
:
''
,
sacmForBuckleUp
:
''
,
sacmForCreasing
:
''
,
sacmForOrgan
:
''
,
sacmForThermalCutting
:
''
,
sacmForThermalSelfFusion
:
''
,
sacmForMolarTooth
:
''
,
sacmForSlitting
:
''
,
workstationId
:
""
,
workstationName
:
""
,
workunitCode
:
""
,
workstation
:
""
,
workunitName
:
""
,
enableFlag
:
"Y"
,
faultFlag
:
"N"
,
solidifyTime
:
""
,
treatingThicknessMin
:
""
,
treatingThicknessMax
:
""
,
treatingWidthMin
:
""
,
treatingWidthMax
:
""
,
dieSunkOffsetOilTankNum
:
""
,
printingMethod
:
""
,
sacmForEdgeOpening
:
""
,
sacmForPasteComposite
:
""
,
sacmForThermalComposite
:
""
,
sacmForLabeling
:
""
,
sacmForBuckleUp
:
""
,
sacmForCreasing
:
""
,
sacmForOrgan
:
""
,
sacmForThermalCutting
:
""
,
sacmForThermalSelfFusion
:
""
,
sacmForMolarTooth
:
""
,
sacmForSlitting
:
""
,
},
// 表单校验
rules
:
{
workstationName
:
[
{
required
:
true
,
message
:
"工作中心不能为空"
,
trigger
:
"blur"
}
{
required
:
true
,
message
:
"工作中心不能为空"
,
trigger
:
"blur"
}
,
],
workunitName
:
[
{
required
:
true
,
message
:
"工作单元名称不能为空"
,
trigger
:
"blur"
}
{
required
:
true
,
message
:
"工作单元名称不能为空"
,
trigger
:
"blur"
}
,
],
workunitCode
:
[
{
required
:
true
,
message
:
"工作单元编码不能为空"
,
trigger
:
"blur"
}
{
required
:
true
,
message
:
"工作单元编码不能为空"
,
trigger
:
"blur"
}
,
],
}
}
,
};
},
created
()
{
...
...
@@ -360,7 +667,7 @@ export default {
/** 查询工作单元列表 */
getList
()
{
this
.
loading
=
true
;
listWorkunit
(
this
.
queryParams
).
then
(
response
=>
{
listWorkunit
(
this
.
queryParams
).
then
(
(
response
)
=>
{
this
.
workunitList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
...
...
@@ -374,32 +681,32 @@ export default {
// 表单重置
reset
()
{
this
.
form
=
{
workstationId
:
''
,
workstationName
:
''
,
workunitCode
:
''
,
workstation
:
''
,
workunitName
:
''
,
enableFlag
:
'Y'
,
faultFlag
:
'N'
,
solidifyTime
:
''
,
treatingThicknessMin
:
''
,
treatingThicknessMax
:
''
,
treatingWidthMin
:
''
,
treatingWidthMax
:
''
,
dieSunkOffsetOilTankNum
:
''
,
printingMethod
:
''
,
sacmForEdgeOpening
:
''
,
sacmForPasteComposite
:
''
,
sacmForThermalComposite
:
''
,
sacmForLabeling
:
''
,
sacmForBuckleUp
:
''
,
sacmForCreasing
:
''
,
sacmForOrgan
:
''
,
sacmForThermalCutting
:
''
,
sacmForThermalSelfFusion
:
''
,
sacmForMolarTooth
:
''
,
sacmForSlitting
:
''
,
}
workstationId
:
""
,
workstationName
:
""
,
workunitCode
:
""
,
workstation
:
""
,
workunitName
:
""
,
enableFlag
:
"Y"
,
faultFlag
:
"N"
,
solidifyTime
:
""
,
treatingThicknessMin
:
""
,
treatingThicknessMax
:
""
,
treatingWidthMin
:
""
,
treatingWidthMax
:
""
,
dieSunkOffsetOilTankNum
:
""
,
printingMethod
:
""
,
sacmForEdgeOpening
:
""
,
sacmForPasteComposite
:
""
,
sacmForThermalComposite
:
""
,
sacmForLabeling
:
""
,
sacmForBuckleUp
:
""
,
sacmForCreasing
:
""
,
sacmForOrgan
:
""
,
sacmForThermalCutting
:
""
,
sacmForThermalSelfFusion
:
""
,
sacmForMolarTooth
:
""
,
sacmForSlitting
:
""
,
}
;
this
.
autoGenFlag
=
false
;
this
.
resetForm
(
"form"
);
},
...
...
@@ -415,9 +722,9 @@ export default {
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
workunitId
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
this
.
ids
=
selection
.
map
(
(
item
)
=>
item
.
workunitId
);
this
.
single
=
selection
.
length
!==
1
;
this
.
multiple
=
!
selection
.
length
;
},
/** 新增按钮操作 */
handleAdd
()
{
...
...
@@ -429,8 +736,8 @@ export default {
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
workunitId
=
row
.
workunitId
||
this
.
ids
getWorkunit
(
workunitId
).
then
(
response
=>
{
const
workunitId
=
row
.
workunitId
||
this
.
ids
;
getWorkunit
(
workunitId
).
then
(
(
response
)
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改工作单元"
;
...
...
@@ -439,8 +746,8 @@ export default {
// 查询明细按钮操作
handleView
(
row
)
{
this
.
reset
();
const
workunitId
=
row
.
workunitId
||
this
.
ids
getWorkunit
(
workunitId
).
then
(
response
=>
{
const
workunitId
=
row
.
workunitId
||
this
.
ids
;
getWorkunit
(
workunitId
).
then
(
(
response
)
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"查看工作单元"
;
...
...
@@ -449,16 +756,16 @@ export default {
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
this
.
$refs
[
"form"
].
validate
(
(
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
form
.
workunitId
!=
null
)
{
updateWorkunit
(
this
.
form
).
then
(
response
=>
{
updateWorkunit
(
this
.
form
).
then
(
(
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addWorkunit
(
this
.
form
).
then
(
response
=>
{
addWorkunit
(
this
.
form
).
then
(
(
response
)
=>
{
this
.
$modal
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
...
...
@@ -470,18 +777,26 @@ export default {
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
workunitIds
=
row
.
workunitId
||
this
.
ids
;
this
.
$modal
.
confirm
(
'是否确认删除工作单元编号为"'
+
workunitIds
+
'"的数据项?'
).
then
(
function
()
{
this
.
$modal
.
confirm
(
'是否确认删除工作单元编号为"'
+
workunitIds
+
'"的数据项?'
)
.
then
(
function
()
{
return
delWorkunit
(
workunitIds
);
}).
then
(()
=>
{
})
.
then
(()
=>
{
this
.
getList
();
this
.
$modal
.
msgSuccess
(
"删除成功"
);
}).
catch
(()
=>
{
});
})
.
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
this
.
download
(
'md/workunit/export'
,
{
...
this
.
queryParams
},
`workunit_
${
new
Date
().
getTime
()}
.xlsx`
)
this
.
download
(
"md/workunit/export"
,
{
...
this
.
queryParams
,
},
`workunit_
${
new
Date
().
getTime
()}
.xlsx`
);
},
handleWorkstationSelect
()
{
this
.
$refs
.
workstationSelect
.
showFlag
=
true
;
...
...
@@ -497,13 +812,13 @@ export default {
handleAutoGenChange
(
autoGenFlag
)
{
debugger
;
if
(
autoGenFlag
)
{
genCode
(
'WORK_UNIT'
).
then
(
response
=>
{
genCode
(
"WORK_UNIT"
).
then
((
response
)
=>
{
this
.
form
.
workunitCode
=
response
;
});
}
else
{
this
.
form
.
workunitCode
=
null
;
}
}
}
}
,
}
,
};
</
script
>
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