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
a9b54b3f
Commit
a9b54b3f
authored
Oct 24, 2024
by
chenzj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
规格书新增字段
parent
550a9ad9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
1 deletion
+54
-1
ProogingProcess.vue
...mes/pro/productionSolution/components/ProogingProcess.vue
+1
-0
ProogingSpecificationSheet.vue
...ductionSolution/components/ProogingSpecificationSheet.vue
+53
-1
No files found.
src/views/mes/pro/productionSolution/components/ProogingProcess.vue
View file @
a9b54b3f
...
...
@@ -28,6 +28,7 @@
<el-table-column
label=
"固化时间"
prop=
"solidifyTime"
align=
"center"
/>
<el-table-column
label=
"计量单位"
prop=
"unitOfMeasure"
align=
"center"
/>
<el-table-column
label=
"雇员数量"
prop=
"employeesNum"
align=
"center"
/>
<el-table-column
label=
"工艺要求"
prop=
"remark"
align=
"center"
/>
<el-table-column
label=
"关键工序"
prop=
"keyFlag"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<dict-tag
...
...
src/views/mes/pro/productionSolution/components/ProogingSpecificationSheet.vue
View file @
a9b54b3f
...
...
@@ -542,6 +542,28 @@
<el-input
v-model=
"form.moduleNum"
placeholder
/>
</el-form-item>
</el-col>
<el-col
:lg=
"6"
:md=
"8"
:sm=
"12"
:xs=
"12"
>
<el-form-item
label=
"上下间距"
prop=
"upDownSpacing"
>
<el-input
v-model=
"form.upDownSpacing"
placeholder
/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:lg=
"6"
:md=
"8"
:sm=
"12"
:xs=
"12"
>
<el-form-item
label=
"排版方式"
prop=
"dta"
>
<el-select
v-model=
"form.dta"
placeholder=
"请选择是否DTA排版"
disabled
>
<el-option
v-for=
"item in dtaOptions"
:key=
"item.value"
:label=
"item.name"
:value=
"item.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:lg=
"6"
:md=
"8"
:sm=
"12"
:xs=
"12"
>
<el-form-item
label=
"排版要求"
prop=
"dtaRemark"
>
<el-input
v-model=
"form.dtaRemark"
placeholder
/>
</el-form-item>
</el-col>
</el-row>
<!--
<el-row>
...
...
@@ -624,6 +646,9 @@
// import ProcessQcindex from "./ProcessQcindex.vue";
// import ProcessTool from "./ProcessTool.vue";
// import WorkstationSelect from "@/components/workstationSelect/simpletableSingle.vue";
import
{
getItmeDtaTypeEnum
}
from
"@/api/mes/md/mdItem"
;
export
default
{
// components: {
// ItemBomSelect,
...
...
@@ -652,6 +677,8 @@ export default {
showFlag
:
false
,
/**表格数据 */
tableData
:
[],
dtaOptions
:
[],
/**表单规则 */
rules
:
{},
/**表单初始化数据 */
...
...
@@ -704,15 +731,34 @@ export default {
dieSunkOffsetOilTankNum
:
""
,
printingMethod
:
""
,
moduleNum
:
""
,
upDownSpacing
:
""
,
remark
:
""
,
dtaRemark
:
""
,
dta
:
""
,
},
currentRow
:
{},
currentRowIndex
:
undefined
,
};
},
created
()
{
this
.
getDtas
();
},
methods
:
{
getDtas
()
{
this
.
dtaOptions
=
[]
getItmeDtaTypeEnum
().
then
((
response
)
=>
{
Object
.
keys
(
response
.
data
).
forEach
(
v
=>
{
this
.
dtaOptions
.
push
({
name
:
response
.
data
[
v
],
value
:
v
})
})
});
},
/**更新行 */
updateRow
(
row
,
idx
)
{
Object
.
assign
(
this
.
form
,
row
);
this
.
currentRowIndex
=
idx
;
this
.
showFlag
=
true
;
...
...
@@ -731,6 +777,7 @@ export default {
},
getComData
()
{
return
this
.
form
;
},
/**重置表单 */
resetForm
()
{
...
...
@@ -784,7 +831,12 @@ export default {
dieSunkOffsetOilTankNum
:
""
,
printingMethod
:
""
,
moduleNum
:
""
,
upDownSpacing
:
""
,
remark
:
""
,
dtaRemark
:
""
,
dta
:
""
,
};
},
/**重置组件状态 */
resetState
()
{
...
...
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