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
99a7c1de
Commit
99a7c1de
authored
Aug 07, 2024
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加是否用版
parent
c2042786
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
+21
-3
index.vue
src/views/mes/pro/process/index.vue
+21
-3
No files found.
src/views/mes/pro/process/index.vue
View file @
99a7c1de
...
...
@@ -108,6 +108,11 @@
{{
scope
.
row
.
isPackage
===
'1'
?
'是'
:
'否'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"是否用版"
align=
"center"
prop=
"isExsitTool"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
isExsitTool
===
'1'
?
'是'
:
'否'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"备注"
align=
"center"
prop=
"remark"
:show-overflow-tooltip=
"true"
/>
<el-table-column
label=
"操作"
v-if=
"operation"
align=
"center"
class-name=
"small-padding fixed-width"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -159,7 +164,7 @@
<el-input
v-model=
"form.processName"
placeholder=
"请输入工序名称"
/>
</el-form-item>
</el-col>
<el-col
:span=
"
12
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"是否启用"
prop=
"enableFlag"
>
<el-radio-group
v-model=
"form.enableFlag"
disabled
v-if=
"optType=='view'"
>
<el-radio
...
...
@@ -177,7 +182,7 @@
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"
12
"
>
<el-col
:span=
"
8
"
>
<el-form-item
label=
"是否包装工序"
prop=
"isPackage"
>
<!-- <el-radio-group v-model="form.isPackage">
<el-radio label="1">是</el-radio>
...
...
@@ -199,6 +204,17 @@
</el-radio-group>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"是否用版"
prop=
"isExsitTool"
>
<el-radio-group
v-model=
"form.isExsitTool"
:disabled=
"optType=='view'"
>
<el-radio
v-for=
"dict in dict.type.sys_yes_non"
:key=
"dict.value"
:label=
"dict.value"
>
{{dict.label}}
</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"24"
>
...
...
@@ -266,7 +282,8 @@ export default {
// 弹出层标题
title
:
""
,
form
:
{
isPackage
:
'0'
isPackage
:
'0'
,
isExsitTool
:
'0'
},
// 是否显示弹出层
open
:
false
,
...
...
@@ -329,6 +346,7 @@ export default {
updateTime
:
null
};
this
.
$set
(
this
.
form
,
'isPackage'
,
'0'
)
this
.
$set
(
this
.
form
,
'isExsitTool'
,
'0'
)
this
.
autoGenFlag
=
false
;
// this.resetForm("form");
},
...
...
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