Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Releases
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-ui
Commits
e8758b38
Commit
e8758b38
authored
Oct 30, 2020
by
renjintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mesplan plan
parent
36095936
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
299 additions
and
305 deletions
+299
-305
index.vue
pages/aps/plan/index.vue
+31
-31
add.vue
pages/mesPlan/add.vue
+9
-5
edit.vue
pages/mesPlan/edit.vue
+5
-4
index.vue
pages/mesPlan/index.vue
+1
-0
split.vue
pages/mesPlan/split.vue
+253
-265
No files found.
pages/aps/plan/index.vue
View file @
e8758b38
...
...
@@ -150,9 +150,9 @@ export default {
modalAccessory
:
false
,
columns
:
[{
key
:
"selection"
,
title
:
"#"
,
title
:
'多选'
,
type
:
"selection"
,
width
:
7
0
,
width
:
5
0
,
align
:
"center"
,
},
{
...
...
@@ -259,13 +259,13 @@ export default {
high
:
true
,
hide
:
true
,
},
{
key
:
"spareQty"
,
title
:
this
.
l
(
"spareQty"
),
align
:
"left"
,
high
:
true
,
hide
:
true
,
},
//
{
//
key: "spareQty",
//
title: this.l("spareQty"),
//
align: "left",
//
high: true,
//
hide: true,
//
},
{
key
:
"isPreschedule"
,
title
:
this
.
l
(
"isPreschedule"
),
...
...
@@ -274,28 +274,28 @@ export default {
high
:
true
,
code
:
"aps.plan.ispreschedule"
,
},
{
key
:
"demandStart"
,
title
:
this
.
l
(
"demandStart"
),
align
:
"left"
,
high
:
true
,
hide
:
true
,
},
{
key
:
"demandFinish"
,
title
:
this
.
l
(
"demandFinish"
),
align
:
"left"
,
high
:
true
,
hide
:
true
,
},
{
key
:
"partNamePro"
,
title
:
this
.
l
(
"partNamePro"
),
align
:
"left"
,
easy
:
true
,
high
:
true
,
hide
:
true
,
},
//
{
//
key: "demandStart",
//
title: this.l("demandStart"),
//
align: "left",
//
high: true,
//
hide: true,
//
},
//
{
//
key: "demandFinish",
//
title: this.l("demandFinish"),
//
align: "left",
//
high: true,
//
hide: true,
//
},
//
{
//
key: "partNamePro",
//
title: this.l("partNamePro"),
//
align: "left",
//
easy: true,
//
high: true,
//
hide: true,
//
},
{
title
:
"操作"
,
key
:
"action"
,
...
...
pages/mesPlan/add.vue
View file @
e8758b38
...
...
@@ -106,7 +106,7 @@ export default {
productId
:
null
,
//产品id
productName
:
""
,
//产品名称
drawnNumber
:
null
,
//图号
taskType
:
null
,
//任务类型
taskType
:
1
,
//任务类型
quantity
:
1
,
//数量
taskRequire
:
""
,
//任务接点要求
demandStartDate
:
this
.
getFormatDate
(
nowDate
),
//开始时间
...
...
@@ -114,7 +114,7 @@ export default {
remark
:
""
,
//备注
projectNumber
:
""
,
//项目号
batchNumber
:
""
,
//批次号
urgencyLevel
:
null
,
//紧急程度
urgencyLevel
:
1
,
//紧急程度
bomId
:
null
,
},
ruleValidate
:
{
...
...
@@ -147,7 +147,9 @@ export default {
wfstatu
:
1
,
};
},
created
()
{},
mounted
()
{
let
params
=
{
id
:
"123327da-42b3-41f6-b785-cf933f137a95"
,
};
...
...
@@ -161,8 +163,8 @@ export default {
}
}
});
this
.
loadTree
();
},
methods
:
{
handleSubmit
()
{
...
...
@@ -173,6 +175,7 @@ export default {
.
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
$Message
.
success
(
"保存成功"
);
this
.
resetFields
();
this
.
$emit
(
"on-ok"
);
}
else
{
this
.
$Message
.
error
(
"保存失败"
);
...
...
@@ -215,10 +218,11 @@ export default {
},
resetFields
()
{
this
.
orderSearchForm
=
{
productId
:
null
,
//产品id
productName
:
""
,
//产品名称
drawnNumber
:
null
,
//图号
taskType
:
null
,
//任务类型
taskType
:
1
,
//任务类型
quantity
:
1
,
//数量
taskRequire
:
""
,
//任务接点要求
demandStartDate
:
this
.
getFormatDate
(
nowDate
),
//开始时间
...
...
@@ -226,7 +230,7 @@ export default {
remark
:
""
,
//备注
projectNumber
:
""
,
//项目号
batchNumber
:
""
,
//批次号
urgencyLevel
:
null
,
//紧急程度
urgencyLevel
:
1
,
//紧急程度
};
},
loadTree
()
{
...
...
pages/mesPlan/edit.vue
View file @
e8758b38
...
...
@@ -163,15 +163,16 @@ export default {
.
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
$Message
.
success
(
"保存成功"
);
//this.resetFields()
this
.
$emit
(
"on-ok"
);
}
else
{
this
.
$Message
.
error
(
"保存失败"
);
}
})
.
catch
((
err
)
=>
{
this
.
$Message
.
error
(
"保存失败"
);
console
.
warn
(
err
);
});
//
.catch((err) => {
//
this.$Message.error("保存失败");
//
console.warn(err);
//
});
}
});
},
...
...
pages/mesPlan/index.vue
View file @
e8758b38
...
...
@@ -141,6 +141,7 @@ export default {
id
:
"id"
,
columns
:
[{
key
:
"selection"
,
title
:
'多选'
,
type
:
"selection"
,
width
:
50
,
align
:
"center"
...
...
pages/mesPlan/split.vue
View file @
e8758b38
This diff is collapsed.
Click to expand it.
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