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
052957f9
Commit
052957f9
authored
Oct 19, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'product' of
http://git.mes123.com/zhouyx/mes-ui
into product
parents
9dc65f96
dfd83c51
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
763 additions
and
687 deletions
+763
-687
actions.vue
components/page/actions.vue
+93
-0
zh-CN.js
i18n/locale/zh-CN.js
+19
-22
index.vue
layouts/basic-layout/header-bug/index.vue
+66
-63
henq.js
libs/henq.js
+2
-1
add.vue
pages/mesPlan/add.vue
+7
-1
edit.vue
pages/mesPlan/edit.vue
+295
-317
index.vue
pages/project/plan/index.vue
+50
-33
add.vue
pages/technology/details/add.vue
+4
-4
add.vue
pages/technology/details/routingqccard/add.vue
+5
-5
add.vue
pages/technology/details/routingsupporting/add.vue
+220
-241
iview.js
plugins/iview.js
+2
-0
No files found.
components/page/actions.vue
0 → 100644
View file @
052957f9
<
template
>
<ul
class=
"actions"
>
<li
class=
"item"
v-for=
"(li, i) in items"
@
click=
"detail(li)"
>
<span
v-if=
"mode == 'text'"
class=
"text"
v-text=
"li.label"
></span>
<Tooltip
v-if=
"mode == 'icon'"
:content=
"li.label"
><Icon
:type=
"li.icon"
/></Tooltip>
<div
v-else
class=
"ib"
>
<Icon
type=
"li.icon"
/>
<span
class=
"text"
v-text=
"li.label"
></span>
</div>
</li>
</ul>
</
template
>
<
script
>
export
default
{
name
:
"actions"
,
data
()
{
return
{};
},
props
:
{
row
:
{
type
:
Object
,
},
items
:
{
type
:
Array
,
default
:
()
=>
{
return
[
{
label
:
"复制"
,
icon
:
"md-copy"
,
vclick
:
""
},
{
label
:
"新增"
,
icon
:
"md-add"
,
vclick
:
""
},
{
label
:
"删除"
,
icon
:
"md-trash"
,
vclick
:
""
},
{
label
:
"移动"
,
icon
:
"md-move"
,
vclick
:
""
},
{
label
:
"派发"
,
icon
:
"ios-alarm"
,
vclick
:
""
},
];
},
},
mode
:
{
// 显示类型
type
:
String
,
validator
:
(
value
)
=>
{
// 这个值必须匹配下列字符串中的一个
return
[
"icon"
,
"text"
,
"icon-text"
].
indexOf
(
value
)
!==
-
1
;
},
default
:
"icon"
,
},
disabled
:
{
type
:
Boolean
,
default
:
true
,
},
max
:
{
type
:
Number
,
default
:
3
,
},
},
methods
:
{
detail
(
li
)
{
if
(
li
.
confirm
)
{
var
msg
=
li
.
confirm
;
if
(
li
.
confirm
===
true
)
{
msg
=
`确定要
${
li
.
label
}
吗?`
;
}
this
.
$Modal
.
confirm
({
title
:
"操作确认"
,
content
:
msg
,
onOk
:
()
=>
{
this
.
$emit
(
"on-click"
,
this
.
row
,
li
);
},
});
}
else
{
this
.
$emit
(
"on-click"
,
this
.
row
,
li
);
}
},
},
};
</
script
>
<
style
lang=
"less"
>
.actions {
ul {
li {
float: left;
list-style: none;
width: 20px;
height: 20px;
text-align: center;
margin-left: 5px;
color: red;
}
}
}
</
style
>
\ No newline at end of file
i18n/locale/zh-CN.js
View file @
052957f9
...
@@ -1818,9 +1818,8 @@ export default {
...
@@ -1818,9 +1818,8 @@ export default {
type
:
'类型'
,
type
:
'类型'
,
attachment
:
'附件'
,
attachment
:
'附件'
,
executor
:
'执行人'
,
executor
:
'执行人'
,
}
},
,
project_main
:
{
project_main
:
{
creationTime
:
'创建时间'
,
creationTime
:
'创建时间'
,
creatorUserId
:
'创建人'
,
creatorUserId
:
'创建人'
,
lastModificationTime
:
'更新时间'
,
lastModificationTime
:
'更新时间'
,
...
@@ -1838,7 +1837,5 @@ project_main: {
...
@@ -1838,7 +1837,5 @@ project_main: {
startDate
:
'开始日期'
,
startDate
:
'开始日期'
,
endDate
:
'结束日期'
,
endDate
:
'结束日期'
,
businessUnits
:
'业务单位'
,
businessUnits
:
'业务单位'
,
}
}
}
}
layouts/basic-layout/header-bug/index.vue
View file @
052957f9
<
template
>
<
template
>
<span
class=
"i-layout-header-trigger i-layout-header-trigger-min"
>
<span
class=
"i-layout-header-trigger i-layout-header-trigger-min"
>
<Dropdown
transfer
trigger=
"hover"
@
on-click=
"handleClickUserDropdown"
>
<Dropdown
transfer
trigger=
"hover"
@
on-click=
"handleClickUserDropdown"
>
<span
@
click=
"openModelBugAdd"
>
<span
@
click=
"openModelBugAdd"
>
<Badge
:count=
"bugCount === 0 ? null : bugCount"
:overflow-count=
"99"
:offset=
"[10, 0]"
>
<Badge
:count=
"bugCount === 0 ? null : bugCount"
:overflow-count=
"99"
:offset=
"[10, 0]"
>
...
@@ -11,15 +11,16 @@
...
@@ -11,15 +11,16 @@
<DropdownItem
name=
"bug"
>
bug列表
</DropdownItem>
<DropdownItem
name=
"bug"
>
bug列表
</DropdownItem>
</DropdownMenu>
</DropdownMenu>
</Dropdown>
</Dropdown>
<Modal
title=
"新增bug"
v-model=
"bugAdd"
fullscreen
:z-index=
"
10
"
>
<Modal
title=
"新增bug"
v-model=
"bugAdd"
fullscreen
:z-index=
"
999
"
>
<addBugModal
ref=
"addBug"
></addBugModal>
<addBugModal
ref=
"addBug"
></addBugModal>
<div
slot=
"footer"
>
<div
slot=
"footer"
>
<Button
@
click=
"addCancel"
>
取消
</Button>
<Button
@
click=
"addCancel"
>
取消
</Button>
<Button
type=
"primary"
@
click=
"addSave"
>
确定
</Button>
<Button
type=
"primary"
@
click=
"addSave"
>
确定
</Button>
</div>
</div>
</Modal>
</Modal>
</span>
</span>
</
template
>
</
template
>
<
script
>
<
script
>
import
addBugModal
from
"@/pages/bug/component/add"
;
import
addBugModal
from
"@/pages/bug/component/add"
;
export
default
{
export
default
{
...
@@ -30,14 +31,16 @@ export default {
...
@@ -30,14 +31,16 @@ export default {
data
()
{
data
()
{
return
{
return
{
bugAdd
:
false
,
bugAdd
:
false
,
bugCount
:
3
bugCount
:
3
};
};
},
},
computed
:
{},
computed
:
{},
methods
:
{
methods
:
{
async
handleClickUserDropdown
(
name
)
{
async
handleClickUserDropdown
(
name
)
{
if
(
name
===
"bug"
)
{
if
(
name
===
"bug"
)
{
this
.
$router
.
push
({
name
:
"bug"
});
this
.
$router
.
push
({
name
:
"bug"
});
}
}
},
},
openModelBugAdd
()
{
openModelBugAdd
()
{
...
...
libs/henq.js
View file @
052957f9
...
@@ -344,7 +344,7 @@ henq.dirCode = (code, v) => {
...
@@ -344,7 +344,7 @@ henq.dirCode = (code, v) => {
return
items
return
items
}
}
//colums验证start
henq
.
makeRules
=
(
list
,
apiUrl
)
=>
{
henq
.
makeRules
=
(
list
,
apiUrl
)
=>
{
//测试数据start
//测试数据start
...
@@ -551,4 +551,5 @@ henq.makeRules = (list, apiUrl) => {
...
@@ -551,4 +551,5 @@ henq.makeRules = (list, apiUrl) => {
})
})
return
rules
return
rules
}
}
//colums验证end
export
default
henq
;
export
default
henq
;
pages/mesPlan/add.vue
View file @
052957f9
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
</FormItem>
</FormItem>
</Col>
</Col>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
label=
"紧急程度"
style=
"width:100%"
>
<FormItem
label=
"紧急程度"
style=
"width:100%"
prop=
"urgencyLevel"
>
<dictionary
style=
"width:240px"
code=
"plan.order.urgencyLevel"
v-model=
"orderSearchForm.urgencyLevel"
></dictionary>
<dictionary
style=
"width:240px"
code=
"plan.order.urgencyLevel"
v-model=
"orderSearchForm.urgencyLevel"
></dictionary>
</FormItem>
</FormItem>
</Col>
</Col>
...
@@ -136,6 +136,12 @@ export default {
...
@@ -136,6 +136,12 @@ export default {
type
:
"number"
,
type
:
"number"
,
trigger
:
"change"
,
trigger
:
"change"
,
},
],
},
],
urgencyLevel
:
[{
required
:
true
,
message
:
"请选择紧急程度"
,
trigger
:
"change"
,
type
:
"number"
,
},
],
},
},
wfstatu
:
1
,
wfstatu
:
1
,
...
...
pages/mesPlan/edit.vue
View file @
052957f9
<
template
>
<
template
>
<Form
:model=
"orderSearchForm"
:label-width=
"95"
:rules=
"ruleValidate"
ref=
"formValidate"
>
<Form
:model=
"orderSearchForm"
:label-width=
"95"
:rules=
"ruleValidate"
ref=
"formValidate"
>
<Row>
<Row>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
label=
"订单编号"
style=
"width:100%"
>
{{
this
.
orderSearchForm
.
mesCode
}}
</FormItem>
<FormItem
label=
"订单编号"
style=
"width:100%"
>
{{
this
.
orderSearchForm
.
mesCode
}}
</FormItem>
</Col>
</Col>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
:label=
"l('productName')"
style=
"width:100%"
prop=
"productId"
>
<FormItem
:label=
"l('productName')"
style=
"width:100%"
prop=
"productId"
>
<Select
<Select
v-model=
"orderSearchForm.productId"
:placeholder=
"placeholdeinfo"
style=
"width:240px;"
>
v-model=
"orderSearchForm.productId"
<Option
v-for=
"(item,index) in list"
:key=
"index"
:value=
"item.value"
style=
"display:none"
:label=
"item.label"
></Option>
:placeholder=
"placeholdeinfo"
style=
"width:240px;"
>
<Option
v-for=
"(item,index) in list"
:key=
"index"
:value=
"item.value"
style=
"display:none"
:label=
"item.label"
></Option>
<Tree
key=
"mytree"
:data=
"data1"
ref=
"mytree"
:render=
"renderContent"
></Tree>
<Tree
key=
"mytree"
:data=
"data1"
ref=
"mytree"
:render=
"renderContent"
></Tree>
</Select>
</Select>
</FormItem>
</FormItem>
...
@@ -33,11 +23,7 @@
...
@@ -33,11 +23,7 @@
<Row>
<Row>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
:label=
"l('taskType')"
style=
"width:100%"
prop=
"taskType"
>
<FormItem
:label=
"l('taskType')"
style=
"width:100%"
prop=
"taskType"
>
<dictionary
<dictionary
code=
"plan.order.taskType"
v-model=
"orderSearchForm.taskType"
style=
"width:240px"
></dictionary>
code=
"plan.order.taskType"
v-model=
"orderSearchForm.taskType"
style=
"width:240px"
></dictionary>
</FormItem>
</FormItem>
</Col>
</Col>
<Col
span=
"8"
>
<Col
span=
"8"
>
...
@@ -47,26 +33,14 @@
...
@@ -47,26 +33,14 @@
</Col>
</Col>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
:label=
"l('demandStartDate')"
style=
"width:100%"
>
<FormItem
:label=
"l('demandStartDate')"
style=
"width:100%"
>
<DatePicker
<DatePicker
type=
"date"
placeholder=
"请选择日期"
style=
"width:240px"
@
on-change=
"getStartDate"
v-model=
"orderSearchForm.demandStartDate"
></DatePicker>
type=
"date"
placeholder=
"请选择日期"
style=
"width:240px"
@
on-change=
"getStartDate"
v-model=
"orderSearchForm.demandStartDate"
></DatePicker>
</FormItem>
</FormItem>
</Col>
</Col>
</Row>
</Row>
<Row>
<Row>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
:label=
"l('demandFinishDate')"
style=
"width:100%"
>
<FormItem
:label=
"l('demandFinishDate')"
style=
"width:100%"
>
<DatePicker
<DatePicker
type=
"date"
placeholder=
"请选择日期"
style=
"width:240px"
@
on-change=
"getFinishedDate"
v-model=
"orderSearchForm.demandFinishDate"
></DatePicker>
type=
"date"
placeholder=
"请选择日期"
style=
"width:240px"
@
on-change=
"getFinishedDate"
v-model=
"orderSearchForm.demandFinishDate"
></DatePicker>
</FormItem>
</FormItem>
</Col>
</Col>
...
@@ -83,12 +57,8 @@
...
@@ -83,12 +57,8 @@
</Row>
</Row>
<Row>
<Row>
<Col
span=
"8"
>
<Col
span=
"8"
>
<FormItem
:label=
"l('urgencyLevel')"
style=
"width:100%"
>
<FormItem
:label=
"l('urgencyLevel')"
style=
"width:100%"
prop=
"urgencyLevel"
>
<dictionary
<dictionary
style=
"width:240px"
code=
"plan.order.urgencyLevel"
v-model=
"orderSearchForm.urgencyLevel"
></dictionary>
style=
"width:240px"
code=
"plan.order.urgencyLevel"
v-model=
"orderSearchForm.urgencyLevel"
></dictionary>
</FormItem>
</FormItem>
</Col>
</Col>
<Col
span=
"24"
>
<Col
span=
"24"
>
...
@@ -110,8 +80,9 @@
...
@@ -110,8 +80,9 @@
</FormItem>
</FormItem>
</Col>
</Col>
</Row>
</Row>
</Form>
</Form>
</
template
>
</
template
>
<
script
>
<
script
>
import
Api
from
"./api"
;
import
Api
from
"./api"
;
export
default
{
export
default
{
...
@@ -120,30 +91,30 @@ export default {
...
@@ -120,30 +91,30 @@ export default {
return
{
return
{
orderSearchForm
:
{},
orderSearchForm
:
{},
ruleValidate
:
{
ruleValidate
:
{
productId
:
[
productId
:
[{
{
required
:
true
,
required
:
true
,
message
:
"请选择产品名称"
,
message
:
"请选择产品名称"
,
type
:
"number"
,
type
:
"number"
,
trigger
:
"change"
,
trigger
:
"change"
,
},
},
],
],
taskType
:
[{
taskType
:
[
{
required
:
true
,
required
:
true
,
message
:
"请选择任务类型"
,
message
:
"请选择任务类型"
,
trigger
:
"change"
,
trigger
:
"change"
,
type
:
"number"
,
type
:
"number"
,
},
},
],
],
quantity
:
[{
quantity
:
[
{
required
:
true
,
required
:
true
,
message
:
"请输入数量"
,
message
:
"请输入数量"
,
type
:
"number"
,
type
:
"number"
,
trigger
:
"change"
,
trigger
:
"change"
,
},
},
],
],
urgencyLevel
:
[{
required
:
true
,
message
:
"请选择紧急程度"
,
trigger
:
"change"
,
type
:
"number"
,
},
],
},
},
placeholdeinfo
:
""
,
placeholdeinfo
:
""
,
list
:
[],
list
:
[],
...
@@ -177,7 +148,9 @@ export default {
...
@@ -177,7 +148,9 @@ export default {
},
},
methods
:
{
methods
:
{
load
(
v
)
{
load
(
v
)
{
Api
.
get
({
id
:
v
}).
then
((
r
)
=>
{
Api
.
get
({
id
:
v
}).
then
((
r
)
=>
{
this
.
entity
=
r
.
result
;
this
.
entity
=
r
.
result
;
this
.
$emit
(
"on-load"
);
this
.
$emit
(
"on-load"
);
});
});
...
@@ -215,7 +188,10 @@ export default {
...
@@ -215,7 +188,10 @@ export default {
this
.
selectdata
=
[];
this
.
selectdata
=
[];
this
.
selectdata
=
data
;
this
.
selectdata
=
data
;
this
.
list
=
[];
this
.
list
=
[];
this
.
list
.
push
({
label
:
data
[
0
].
title
,
value
:
data
[
0
].
id
});
this
.
list
.
push
({
label
:
data
[
0
].
title
,
value
:
data
[
0
].
id
});
if
(
data
[
0
].
isProduct
==
"1"
)
{
if
(
data
[
0
].
isProduct
==
"1"
)
{
this
.
orderSearchForm
.
productName
=
data
[
0
].
title
;
this
.
orderSearchForm
.
productName
=
data
[
0
].
title
;
this
.
orderSearchForm
.
productId
=
data
[
0
].
productId
;
this
.
orderSearchForm
.
productId
=
data
[
0
].
productId
;
...
@@ -258,7 +234,11 @@ export default {
...
@@ -258,7 +234,11 @@ export default {
}
}
});
});
},
},
renderContent
(
h
,
{
root
,
node
,
data
})
{
renderContent
(
h
,
{
root
,
node
,
data
})
{
let
type
=
"md-folder"
;
let
type
=
"md-folder"
;
let
title
=
data
.
title
;
let
title
=
data
.
title
;
if
(
data
.
isProduct
!=
0
)
{
if
(
data
.
isProduct
!=
0
)
{
...
@@ -274,8 +254,7 @@ export default {
...
@@ -274,8 +254,7 @@ export default {
}
}
}
}
return
h
(
return
h
(
"span"
,
"span"
,
{
{
on
:
{
on
:
{
click
:
()
=>
{
click
:
()
=>
{
let
arrTree
=
[];
let
arrTree
=
[];
...
@@ -294,8 +273,7 @@ export default {
...
@@ -294,8 +273,7 @@ export default {
},
},
}),
}),
h
(
h
(
"span"
,
"span"
,
{
{
style
:
{
style
:
{
color
:
data
.
isProduct
==
0
?
"#000"
:
"rgba(38, 128, 235, 1)"
,
color
:
data
.
isProduct
==
0
?
"#000"
:
"rgba(38, 128, 235, 1)"
,
},
},
...
...
pages/project/plan/index.vue
View file @
052957f9
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
<Icon
type=
"ios-arrow-down"
/>
<Icon
type=
"ios-arrow-down"
/>
</p>
</p>
项目信息
项目信息
<Actions/>
</Card>
</Card>
<Card>
<Card>
<TreeGrid
:columns=
"columns"
ref=
"grid"
:items=
"list"
<TreeGrid
:columns=
"columns"
ref=
"grid"
:items=
"list"
...
@@ -78,35 +79,47 @@ export default {
...
@@ -78,35 +79,47 @@ export default {
key
:
"action"
,
key
:
"action"
,
width
:
150
,
width
:
150
,
align
:
"center"
,
align
:
"center"
,
render
:
(
h
,
params
)
=>
{
// render:(h,params)=>{
return
h
(
"div"
,
{
class
:
"action"
},
[
// return h("Actions"
h
(
// ,{
"op"
,
// attrs:{
{
// row:params,
attrs
:
{
oprate
:
"detail"
},
// },
on
:
{
click
:
()
=>
this
.
view
(
params
.
row
.
id
)
},
// on:{
},
// 'on-click':()=>this.rowclick
"查看"
// }
),
// }
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
// )
h
(
// }
"op"
,
// render: (h, params) => {
{
// return h("div", { class: "action" }, [
attrs
:
{
oprate
:
"edit"
},
// h(
on
:
{
click
:
()
=>
this
.
edit
(
params
.
row
.
id
)
},
// "op",
},
// {
"编辑"
// attrs: { oprate: "detail" },
),
// on: { click: () => this.view(params.row.id) },
h
(
// },
"op"
,
// "查看"
{
// ),
attrs
:
{
oprate
:
"delete"
},
// //h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
on
:
{
click
:
()
=>
this
.
remove
(
params
.
row
.
id
)
},
// h(
},
// "op",
"删除"
// {
),
// attrs: { oprate: "edit" },
]);
// on: { click: () => this.edit(params.row.id) },
},
// },
// "编辑"
// ),
// h(
// "op",
// {
// attrs: { oprate: "delete" },
// on: { click: () => this.remove(params.row.id) },
// },
// "删除"
// ),
// ]);
// },
},
},
{
{
key
:
"type"
,
key
:
"type"
,
...
@@ -155,25 +168,29 @@ export default {
...
@@ -155,25 +168,29 @@ export default {
},
},
mounted
()
{
mounted
()
{
console
.
log
(
this
);
console
.
log
(
this
);
this
.
search
();
},
},
async
fetch
({
store
,
params
})
{
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
},
methods
:
{
methods
:
{
ok
()
{
ok
()
{
// this.$refs.grid.load
();
this
.
search
();
this
.
modal
=
false
;
this
.
modal
=
false
;
this
.
curId
=
0
;
this
.
curId
=
0
;
},
},
search
()
{
search
()
{
this
.
$refs
.
grid
.
reload
(
this
.
easySearch
);
//
this.$refs.grid.reload(this.easySearch);
var
params
=
{
var
params
=
{
conditions
:[]
conditions
:[]
}
}
Api
.
list
(
params
).
then
(
r
=>
{
Api
.
list
(
params
).
then
(
r
=>
{
this
.
list
=
r
.
result
;
})
})
},
},
rowclick
(
row
,
li
){
console
.
warn
(
"rowclick"
,
row
,
li
);
},
add
()
{
add
()
{
this
.
curId
=
0
;
this
.
curId
=
0
;
this
.
title
=
"新增"
;
this
.
title
=
"新增"
;
...
@@ -201,7 +218,7 @@ export default {
...
@@ -201,7 +218,7 @@ export default {
remove
(
id
)
{
remove
(
id
)
{
Api
.
delete
(
id
).
then
((
r
)
=>
{
Api
.
delete
(
id
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
if
(
r
.
success
)
{
this
.
$refs
.
grid
.
load
();
this
.
search
();
this
.
$Message
.
success
(
"删除成功"
);
this
.
$Message
.
success
(
"删除成功"
);
}
}
});
});
...
...
pages/technology/details/add.vue
View file @
052957f9
...
@@ -187,14 +187,14 @@ export default {
...
@@ -187,14 +187,14 @@ export default {
runtime
:
0
,
runtime
:
0
,
efficiencyValue
:
1
,
efficiencyValue
:
1
,
singleOut
:
1
,
singleOut
:
1
,
isOutside
:
null
,
isOutside
:
0
,
isImportant
:
null
,
isImportant
:
0
,
outsideTime
:
0
,
outsideTime
:
0
,
isImportantResources
:
null
,
isImportantResources
:
0
,
setupTime
:
0
,
setupTime
:
0
,
realWorkingHours
:
0
,
realWorkingHours
:
0
,
realRuntime
:
0
,
realRuntime
:
0
,
isParticipateIntime
:
null
,
isParticipateIntime
:
0
,
equipType
:
""
,
equipType
:
""
,
},
},
rules
:
{
rules
:
{
...
...
pages/technology/details/routingqccard/add.vue
View file @
052957f9
...
@@ -197,11 +197,11 @@ export default {
...
@@ -197,11 +197,11 @@ export default {
productionRequirement
:
""
,
productionRequirement
:
""
,
standard
:
""
,
standard
:
""
,
qualityTemplateName
:
""
,
qualityTemplateName
:
""
,
isImportant
:
null
,
isImportant
:
0
,
firstCheck
:
null
,
firstCheck
:
0
,
inspection
:
null
,
inspection
:
0
,
inspectionTime
:
null
,
inspectionTime
:
0
,
sampling
:
null
,
sampling
:
0
,
samplingBatch
:
""
,
samplingBatch
:
""
,
},
},
tempFile
:
""
,
tempFile
:
""
,
...
...
pages/technology/details/routingsupporting/add.vue
View file @
052957f9
<
template
>
<
template
>
<Form
ref=
"form"
:model=
"entity"
:rules=
"rules"
:label-width=
"120"
>
<Form
ref=
"form"
:model=
"entity"
:rules=
"rules"
:label-width=
"120"
>
<Row>
<Row>
<!--
<!--
<Col
:span=
"12"
>
<Col
:span=
"12"
>
...
@@ -37,12 +37,7 @@
...
@@ -37,12 +37,7 @@
<Col
:span=
"12"
>
<Col
:span=
"12"
>
<FormItem
:label=
"l('routingDetailName')"
prop=
"routingDetailId"
>
<FormItem
:label=
"l('routingDetailName')"
prop=
"routingDetailId"
>
<Select
v-model=
"entity.routingDetailId"
>
<Select
v-model=
"entity.routingDetailId"
>
<Option
<Option
v-for=
"(item, index) in routingDetailList"
:value=
"item.value"
:key=
"index"
>
{{
item
.
label
}}
</Option>
v-for=
"(item, index) in routingDetailList"
:value=
"item.value"
:key=
"index"
>
{{
item
.
label
}}
</Option
>
</Select>
</Select>
</FormItem>
</FormItem>
</Col>
</Col>
...
@@ -59,24 +54,9 @@
...
@@ -59,24 +54,9 @@
<Materiel
:bomId=
"productBomId"
v-model=
"entity.materialId"
@
on-change=
"change"
></Materiel>
<Materiel
:bomId=
"productBomId"
v-model=
"entity.materialId"
@
on-change=
"change"
></Materiel>
</FormItem>
-->
</FormItem>
-->
<FormItem
:label=
"l('nameMaterial')"
prop=
"materialId"
>
<FormItem
:label=
"l('nameMaterial')"
prop=
"materialId"
>
<Select
<Select
v-model=
"entity.materialId"
placeholder=
"请选择"
style=
"width: 300px"
>
v-model=
"entity.materialId"
<Option
v-for=
"(item, index) in listData"
:key=
"index"
:value=
"item.value"
:label=
"item.label"
style=
"display: none"
></Option>
placeholder=
"请选择"
<Tree
key=
"mytree"
:data=
"dataTree"
ref=
"mytree"
:render=
"renderContent"
></Tree>
style=
"width: 300px"
>
<Option
v-for=
"(item, index) in listData"
:key=
"index"
:value=
"item.value"
:label=
"item.label"
style=
"display: none"
></Option>
<Tree
key=
"mytree"
:data=
"dataTree"
ref=
"mytree"
:render=
"renderContent"
></Tree>
</Select>
</Select>
<!--
<Materiel
<!--
<Materiel
v-model=
"entity.materialId"
v-model=
"entity.materialId"
...
@@ -93,10 +73,7 @@
...
@@ -93,10 +73,7 @@
</Col>
-->
</Col>
-->
<Col
:span=
"12"
>
<Col
:span=
"12"
>
<FormItem
:label=
"l('quantity')"
prop=
"quantity"
>
<FormItem
:label=
"l('quantity')"
prop=
"quantity"
>
<InputNumber
<InputNumber
v-model=
"entity.quantity"
style=
"width: 100%"
></InputNumber>
v-model=
"entity.quantity"
style=
"width: 100%"
></InputNumber>
</FormItem>
</FormItem>
</Col>
</Col>
<Divider
orientation=
"left"
>
物料属性
</Divider>
<Divider
orientation=
"left"
>
物料属性
</Divider>
...
@@ -153,9 +130,11 @@
...
@@ -153,9 +130,11 @@
<Button
type=
"primary"
@
click=
"handleSubmit"
v-noClick
>
保存
</Button>
<Button
type=
"primary"
@
click=
"handleSubmit"
v-noClick
>
保存
</Button>
<Button
@
click=
"handleClose"
class=
"ml20"
>
取消
</Button>
<Button
@
click=
"handleClose"
class=
"ml20"
>
取消
</Button>
</FormItem>
</FormItem>
</Form>
</Form>
</
template
>
</
template
>
<
script
>
<
script
>
import
Api
from
"./api"
;
import
Api
from
"./api"
;
import
ApiDetail
from
"../api"
;
import
ApiDetail
from
"../api"
;
export
default
{
export
default
{
...
@@ -180,36 +159,30 @@ export default {
...
@@ -180,36 +159,30 @@ export default {
texture
:
""
,
texture
:
""
,
procurementStandards
:
""
,
procurementStandards
:
""
,
qualityGrade
:
""
,
qualityGrade
:
""
,
state
:
null
,
state
:
0
,
extend
:
""
,
extend
:
""
,
remark
:
""
,
remark
:
""
,
drawNum
:
""
,
drawNum
:
""
,
json
:
{},
json
:
{},
},
},
rules
:
{
rules
:
{
routingDetailId
:
[
routingDetailId
:
[{
{
required
:
true
,
required
:
true
,
message
:
"请选择工序"
,
message
:
"请选择工序"
,
type
:
"number"
,
type
:
"number"
,
trigger
:
"change"
,
trigger
:
"change"
,
},
},
],
],
materialId
:
[{
materialId
:
[
{
required
:
true
,
required
:
true
,
message
:
"请选择工序"
,
message
:
"请选择工序"
,
trigger
:
"change"
,
trigger
:
"change"
,
},
},
],
],
quantity
:
[{
quantity
:
[
{
required
:
true
,
required
:
true
,
type
:
"number"
,
type
:
"number"
,
message
:
"请选择工序"
,
message
:
"请选择工序"
,
trigger
:
"blur"
,
trigger
:
"blur"
,
},
},
],
],
},
},
routingDetailList
:
[],
routingDetailList
:
[],
};
};
...
@@ -228,11 +201,14 @@ export default {
...
@@ -228,11 +201,14 @@ export default {
this
.
getData
();
this
.
getData
();
},
},
methods
:
{
methods
:
{
renderContent
(
h
,
{
root
,
node
,
data
})
{
renderContent
(
h
,
{
root
,
node
,
data
})
{
//渲染树的样式
//渲染树的样式
return
h
(
return
h
(
"span"
,
"span"
,
{
{
style
:
{
style
:
{
cursor
:
"pointer"
,
cursor
:
"pointer"
,
},
},
...
@@ -262,14 +238,18 @@ export default {
...
@@ -262,14 +238,18 @@ export default {
this
.
entity
.
materialNumber
=
data
.
mmcode
;
this
.
entity
.
materialNumber
=
data
.
mmcode
;
this
.
entity
.
json
.
nameMaterial
=
data
.
name
;
this
.
entity
.
json
.
nameMaterial
=
data
.
name
;
this
.
entity
.
json
.
materialNumber
=
data
.
mmcode
;
this
.
entity
.
json
.
materialNumber
=
data
.
mmcode
;
Api
.
getMaterial
({
id
:
data
.
materialId
}).
then
((
r
)
=>
{
Api
.
getMaterial
({
id
:
data
.
materialId
}).
then
((
r
)
=>
{
if
(
r
.
result
)
{
if
(
r
.
result
)
{
this
.
forItem
=
r
.
result
;
this
.
forItem
=
r
.
result
;
}
}
});
});
},
},
getData
()
{
getData
()
{
Api
.
alltree
({
id
:
this
.
productBomId
}).
then
((
r
)
=>
{
Api
.
alltree
({
id
:
this
.
productBomId
}).
then
((
r
)
=>
{
if
(
r
.
success
)
{
if
(
r
.
success
)
{
this
.
dataTree
=
r
.
result
;
this
.
dataTree
=
r
.
result
;
// this.$Message.success("获取物料成功");
// this.$Message.success("获取物料成功");
...
@@ -344,8 +324,7 @@ export default {
...
@@ -344,8 +324,7 @@ export default {
}
}
},
},
productBomId
(
v
)
{
productBomId
(
v
)
{
if
(
v
>
0
)
{
if
(
v
>
0
)
{}
}
},
},
},
},
};
};
...
...
plugins/iview.js
View file @
052957f9
...
@@ -69,6 +69,7 @@ import CustomProperties from '@/components/page/customProperties.vue'
...
@@ -69,6 +69,7 @@ import CustomProperties from '@/components/page/customProperties.vue'
import
InputCode
from
'@/components/page/inputCode.vue'
import
InputCode
from
'@/components/page/inputCode.vue'
import
Pictrue
from
'@/components/page/pictrue.vue'
import
Pictrue
from
'@/components/page/pictrue.vue'
import
WordTree
from
'@/components/page/wordTree.vue'
import
WordTree
from
'@/components/page/wordTree.vue'
import
Actions
from
'@/components/page/actions.vue'
...
@@ -144,6 +145,7 @@ Vue.component("CustomProperties",CustomProperties)
...
@@ -144,6 +145,7 @@ Vue.component("CustomProperties",CustomProperties)
Vue
.
component
(
"InputCode"
,
InputCode
)
Vue
.
component
(
"InputCode"
,
InputCode
)
Vue
.
component
(
"Pictrue"
,
Pictrue
)
Vue
.
component
(
"Pictrue"
,
Pictrue
)
Vue
.
component
(
"WordTree"
,
WordTree
)
Vue
.
component
(
"WordTree"
,
WordTree
)
Vue
.
component
(
"Actions"
,
Actions
)
...
...
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