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
ca559b17
Commit
ca559b17
authored
Sep 03, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'product' of
http://git.mes123.com/zhouyx/mes-ui
into product
parents
8aee2646
abc532dd
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
979 additions
and
616 deletions
+979
-616
dataGrid.vue
components/page/dataGrid.vue
+75
-0
process.vue
components/page/import/process.vue
+2
-3
process.vue
pages/import/process.vue
+207
-5
index.vue
pages/materiel/masterData/index.vue
+326
-333
masterData.vue
pages/materiel/masterData/masterData.vue
+83
-2
index.vue
pages/technology/details/routingsupporting/index.vue
+286
-273
No files found.
components/page/dataGrid.vue
View file @
ca559b17
...
...
@@ -100,6 +100,8 @@ export default {
userConfig
:
null
,
//用户页面配置信息。,
// userId: 1
userId
:
this
.
$store
.
state
.
userInfo
.
userId
,
treeData
:
[],
//物料数据
codeRuleData
:
[],
//物料编码
};
},
props
:
{
...
...
@@ -271,6 +273,9 @@ export default {
this
.
$dragging
.
$on
(
"dragend"
,
(
e
)
=>
{
this
.
saveUserconfig
();
});
//物料加载类型数据
this
.
getTreeData
();
this
.
getcodeRuleData
();
},
methods
:
{
//数据加载
...
...
@@ -513,6 +518,7 @@ export default {
const
tHeader
=
[];
// 设置Excel的表格第一行的标题
const
filterVal
=
[];
//list里对象的属性
var
tempCol
=
[];
var
tempCol1
=
[];
var
columnsCur
=
this
.
$u
.
clone
(
this
.
columnsNow
);
//导出列标题信息griddata this.$refs.grid.columnsCur
columnsCur
.
forEach
((
el
)
=>
{
if
((
el
.
hide
&&
!
el
.
import
)
||
(
!
el
.
hide
&&
el
.
key
!=
"action"
&&
el
.
type
!=
"selection"
&&
el
.
key
!=
"ico"
))
{
...
...
@@ -522,6 +528,12 @@ export default {
code
:
el
.
code
});
//临时存放code数据字典的字段及对应的数据字典code
}
if
(
el
.
materialKey
)
{
tempCol1
.
push
({
key
:
el
.
key
,
code
:
el
.
materialKey
});
//临时存放物料管理大类和子类列表
}
tHeader
.
push
(
el
.
title
);
filterVal
.
push
(
el
.
key
);
}
...
...
@@ -534,7 +546,19 @@ export default {
e
[
ele
.
key
]
);
});
//导出数据增加对应的物料管理信息
tempCol1
.
forEach
((
elcol1
)
=>
{
if
(
elcol1
.
code
==
1
)
{
e
[
elcol1
.
key
]
=
this
.
getType1
(
e
[
elcol1
.
key
])
}
else
if
(
elcol1
.
code
==
2
)
{
e
[
elcol1
.
key
]
=
this
.
getType2
(
e
[
elcol1
.
key
])
}
else
if
(
elcol1
.
code
==
3
)
{
e
[
elcol1
.
key
]
=
this
.
getType3
(
e
[
elcol1
.
key
])
}
});
});
let
nowDate
=
this
.
$u
.
getNowTime
();
//年月日时分秒yyyyMMddhhmmss
//获取导出数据结束
this
.
$u
.
outExcel
(
this
.
exportTitle
+
...
...
@@ -545,6 +569,57 @@ export default {
);
});
},
//物料大类和子类的解析start
getTreeData
()
{
let
data
=
{
conditions
:
[]
};
this
.
$api
.
post
(
`
${
material
}
/category/list`
,
data
).
then
((
r
)
=>
{
this
.
treeData
=
r
.
result
});
},
getType1
(
val
)
{
let
tempTreeList
=
this
.
$u
.
clone
(
this
.
treeData
)
let
rootName
=
""
tempTreeList
.
forEach
(
ele
=>
{
if
(
ele
.
upId
==
0
&&
ele
.
id
==
val
)
{
rootName
=
ele
.
name
}
})
return
rootName
},
getType2
(
val
)
{
let
tempTreeList
=
this
.
$u
.
clone
(
this
.
treeData
)
let
childrenName
=
""
tempTreeList
.
forEach
(
ele
=>
{
if
(
ele
.
upId
>
0
&&
ele
.
id
==
val
)
{
childrenName
=
ele
.
name
}
})
return
childrenName
},
//获取编码名称
getcodeRuleData
()
{
let
data
=
{
conditions
:
[]
};
this
.
$api
.
post
(
`
${
material
}
/coderule/paged`
,
data
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
codeRuleData
=
r
.
result
.
items
||
[]
}
});
},
getType3
(
val
)
{
let
codeRuleDataList
=
this
.
$u
.
clone
(
this
.
codeRuleData
)
let
codeRuleName
=
""
codeRuleDataList
.
forEach
(
ele
=>
{
if
(
ele
.
id
==
val
)
{
codeRuleName
=
ele
.
name
}
})
return
codeRuleName
},
//物料大类和子类的解析end
},
computed
:
{
columnsNow
()
{
...
...
components/page/import/process.vue
View file @
ca559b17
...
...
@@ -50,7 +50,7 @@
</FormItem>
</Form>
</FooterToolbar>
<Modal
v-model=
"infoModal"
:title=
"
titleInfo
"
fullscreen
>
<Modal
v-model=
"infoModal"
:title=
"
modalTitles
"
fullscreen
>
<DataGrid
:tool=
"false"
:page=
"false"
:columns=
"colsIm"
:data=
"dataIm"
:height=
"tdHeightExcel+30"
ref=
"dataImport"
></DataGrid>
<div
slot=
"footer"
>
<Button
@
click=
"infoModal=false"
>
关闭
</Button>
...
...
@@ -236,7 +236,6 @@ export default {
}
});
}
arrTitleUse
.
forEach
((
elem
)
=>
{
if
(
eles
[
elem
.
key
]
&&
eles
[
elem
.
key
]
!=
""
&&
eles
[
elem
.
key
]
!=
null
)
{
//如果数据字典项对应的DirName字段存在,通过name查询到对应的code,然后赋值
...
...
@@ -246,9 +245,9 @@ export default {
);
}
});
})
this
.
dataIm
=
useData
;
let
tempData
=
this
.
$u
.
clone
(
this
.
dataIm
);
this
.
$emit
(
"on-get-data"
,
tempData
)
},
...
...
pages/import/process.vue
View file @
ca559b17
...
...
@@ -233,28 +233,28 @@ export default {
key
:
"creatorUserId"
,
title
:
this
.
l
(
"creatorUserId"
),
align
:
"left"
,
import
:
fals
e
,
import
:
tru
e
,
hide
:
true
,
},
{
key
:
"creationTime"
,
title
:
this
.
l
(
"creationTime"
),
align
:
"left"
,
import
:
fals
e
,
import
:
tru
e
,
hide
:
true
,
},
{
key
:
"lastModifierUserId"
,
title
:
this
.
l
(
"lastModifierUserId"
),
align
:
"left"
,
import
:
fals
e
,
import
:
tru
e
,
hide
:
true
,
},
{
key
:
"lastModificationTime"
,
title
:
this
.
l
(
"lastModificationTime"
),
align
:
"left"
,
import
:
fals
e
,
import
:
tru
e
,
hide
:
true
,
},
{
...
...
@@ -262,7 +262,6 @@ export default {
key
:
"action"
,
width
:
180
,
align
:
"right"
,
import
:
false
,
render
:
(
h
,
params
)
=>
{
return
h
(
"div"
,
{
...
...
@@ -442,6 +441,83 @@ export default {
code
:
"mes_xingchi_resource.resource.state"
,
}
],
columns4
:
[{
key
:
"codeRuleType"
,
title
:
"类型"
,
align
:
"center"
,
code
:
"material.code.type"
},
{
key
:
"codeRuleId"
,
title
:
"编码名称"
,
materialKey
:
'3'
,
},
{
key
:
"rootCategoryId"
,
title
:
"大类"
,
align
:
"right"
,
materialKey
:
'1'
,
},
{
key
:
"categoryId"
,
title
:
"子类"
,
align
:
"right"
,
materialKey
:
'2'
,
},
{
key
:
"code"
,
title
:
"编码"
,
align
:
"left"
,
render
:
(
h
,
params
)
=>
{
return
h
(
"a"
,
{
props
:
{},
on
:
{
click
:
()
=>
this
.
details
(
params
.
row
)
}
},
!
params
.
row
.
code
||
params
.
row
.
code
==
0
?
"未分配"
:
params
.
row
.
code
);
}
},
{
key
:
"name"
,
title
:
"名称"
,
align
:
"left"
},
{
key
:
"status"
,
title
:
"状态"
,
align
:
"center"
,
code
:
"material.main.status"
,
},
{
key
:
"version"
,
title
:
"版本"
,
align
:
"left"
,
code
:
"material.main.version"
},
{
key
:
"drawing"
,
title
:
"图号"
,
align
:
"left"
},
{
key
:
"creationTime"
,
title
:
"创建时间"
,
hide
:
true
,
align
:
"left"
,
type
:
"date"
},
{
key
:
"creatorUserId"
,
title
:
"创建人"
,
hide
:
true
,
align
:
"left"
,
type
:
"user"
}
],
tdHeightExcel
:
""
,
excelData
:
[],
excelDataBack
:
[],
//临时存储原始数据
...
...
@@ -461,6 +537,9 @@ export default {
titleInfo
:
''
,
noDataText
:
'暂无数据'
,
imBtn
:
true
,
//物料管理
treeData
:
[],
//物料管理左侧类别树
codeRuleData
:
[],
//物料编码等信息
};
},
props
:
{
...
...
@@ -479,6 +558,9 @@ export default {
if
(
this
.
eid
>
0
)
{
this
.
load
(
this
.
eid
);
}
//物料加载类型数据
this
.
getTreeData
();
this
.
getcodeRuleData
();
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
...
...
@@ -568,6 +650,7 @@ export default {
temData
=
this
.
$u
.
clone
(
this
.
$refs
.
comExcel
.
excelData
)
}
let
arrTitleUse
=
[];
////使用数据字典的字段
let
arrTitleUse1
=
[];
////使用物料编码的字段
temColPage
.
forEach
((
elCode
)
=>
{
if
(
elCode
.
code
)
{
arrTitleUse
.
push
({
...
...
@@ -575,6 +658,12 @@ export default {
code
:
elCode
.
code
,
});
}
if
(
elCode
.
materialKey
)
{
//临时存放物料管理大类和子类列表
arrTitleUse1
.
push
({
key
:
elCode
.
key
,
code
:
elCode
.
materialKey
});
}
});
let
useData
=
[];
//重新组织list列表数据
temData
.
forEach
((
elData
,
index
)
=>
{
...
...
@@ -620,6 +709,7 @@ export default {
);
}
});
})
this
.
dataIm
=
useData
;
},
...
...
@@ -763,6 +853,9 @@ export default {
case
3
:
this
.
loadColum
(
this
.
columns3
);
break
;
case
4
:
this
.
loadColum
(
this
.
columns4
);
break
;
default
:
this
.
loadColum
(
this
.
columns0
);
}
...
...
@@ -789,6 +882,9 @@ export default {
case
3
:
this
.
importResource
();
break
;
case
4
:
this
.
importMateriel
();
break
;
default
:
//this.loadColum(this.columns1);
}
...
...
@@ -882,6 +978,112 @@ export default {
});
}
},
//插入物料管理start
importMateriel
()
{
let
tempData
=
this
.
$u
.
clone
(
this
.
dataIm
);
let
tempList
=
[];
tempData
.
forEach
((
ele
)
=>
{
let
obj
=
{
name
:
ele
.
name
?
ele
.
name
:
''
,
version
:
ele
.
version
?
Number
(
ele
.
version
)
:
''
,
drawing
:
ele
.
drawing
?
ele
.
drawing
:
''
,
description
:
ele
.
description
?
ele
.
description
:
""
,
code
:
0
,
status
:
ele
.
status
?
Number
(
ele
.
status
)
:
''
,
customProperties
:
{},
categoryId
:
this
.
getType2
(
ele
.
categoryId
)
?
this
.
getType2
(
ele
.
categoryId
)
:
1
,
//左侧树点击的id
rootCategoryId
:
this
.
getType1
(
ele
.
rootCategoryId
)
?
this
.
getType1
(
ele
.
rootCategoryId
)
:
1
,
//左侧树点击的数据的最顶层id
codeRuleId
:
this
.
getType3
(
ele
.
codeRuleId
)
?
this
.
getType3
(
ele
.
codeRuleId
)
:
1
,
//类别编码名称
codeRuleType
:
ele
.
codeRuleType
?
Number
(
ele
.
codeRuleType
)
:
1
//类别codeType
};
if
(
ele
.
codeRuleId
&&
this
.
getType3
(
ele
.
codeRuleId
)
!=
""
&&
ele
.
codeRuleType
&&
ele
.
codeRuleType
!=
""
&&
ele
.
codeRuleType
!=
null
&&
ele
.
rootCategoryId
&&
this
.
getType1
(
ele
.
rootCategoryId
)
!=
""
&&
ele
.
name
&&
ele
.
name
!=
""
)
{
tempList
.
push
(
obj
);
}
});
if
(
tempList
.
length
==
0
)
{
this
.
$Message
.
error
(
"所有导入的数据均不合法!"
);
}
else
{
let
parms
=
{
list
:
tempList
,
};
let
url
=
`
${
material
}
/materialimportservice/import`
this
.
$api
.
post
(
url
,
parms
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
$Message
.
success
(
"成功批量导入物料管理模块 "
+
tempList
.
length
+
" 条数据"
);
this
.
imBtn
=
false
;
this
.
cancelExcel
();
}
else
{
this
.
$Message
.
error
(
"批量导入失败"
)
}
}).
catch
(
err
=>
{
this
.
$Message
.
error
(
"数据异常!"
);
});
}
},
//物料大类和子类的解析start
getTreeData
()
{
let
data
=
{
conditions
:
[]
};
this
.
$api
.
post
(
`
${
material
}
/category/list`
,
data
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
treeData
=
r
.
result
||
[]
}
});
},
getType1
(
val
)
{
let
tempTreeList
=
this
.
$u
.
clone
(
this
.
treeData
)
let
rootId
=
""
if
(
val
&&
val
!=
""
&&
val
!=
null
)
{
tempTreeList
.
forEach
(
ele
=>
{
if
(
ele
.
upId
==
0
&&
ele
.
name
==
val
)
{
rootId
=
ele
.
id
}
})
}
return
rootId
},
getType2
(
val
)
{
let
tempTreeList
=
this
.
$u
.
clone
(
this
.
treeData
)
let
childrenId
=
""
if
(
val
&&
val
!=
""
&&
val
!=
null
)
{
tempTreeList
.
forEach
(
ele
=>
{
if
(
ele
.
upId
>
0
&&
ele
.
name
==
val
)
{
childrenId
=
ele
.
id
}
})
}
return
childrenId
},
//物料大类和子类的解析end
//获取编码名称等start
getcodeRuleData
()
{
let
data
=
{
conditions
:
[]
};
this
.
$api
.
post
(
`
${
material
}
/coderule/paged`
,
data
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
codeRuleData
=
r
.
result
.
items
||
[]
}
});
},
getType3
(
val
)
{
let
codeRuleDataList
=
this
.
$u
.
clone
(
this
.
codeRuleData
)
let
codeRuleId
=
""
if
(
val
&&
val
!=
""
&&
val
!=
null
)
{
codeRuleDataList
.
forEach
(
ele
=>
{
if
(
ele
.
name
==
val
)
{
codeRuleId
=
ele
.
id
}
})
}
return
codeRuleId
},
//获取编码名称等end
//插入物料管理end
//切换列表和excel按钮
changeExcel
(
val
)
{
if
(
val
==
1
)
{
...
...
pages/materiel/masterData/index.vue
View file @
ca559b17
<
template
>
<div
class=
"classification"
>
<div
class=
"classification"
>
<Layout>
<Sider
width=
"300"
v-if=
"showMenu"
>
<div
class=
"p-list"
>
<h3>
<Dropdown
@
on-click=
"clickItem"
>
<a
href=
"javascript:void(0)"
>
{{
downName
}}
<Icon
type=
"ios-arrow-down"
></Icon>
</a>
<DropdownMenu
slot=
"list"
>
<DropdownItem
v-for=
"item in cityList"
:key=
"item.id"
:name=
"item.id"
>
{{
item
.
name
}}
</DropdownItem>
</DropdownMenu>
</Dropdown>
<div
class=
"fr mr10 mt10"
>
<ButtonGroup
class=
"fr ddi"
size=
"small"
>
<Button
:icon=
"expand ? 'md-arrow-dropright' : 'md-arrow-dropdown'"
@
click=
"toggle"
title=
"展开/合并"
></Button>
<Button
icon=
"md-refresh"
title=
"刷新"
@
click=
"loadTree(model8,nodeInfo.codeRuleType)"
></Button>
<Button
icon=
"md-rewind"
title=
"收起"
@
click=
"hide"
></Button>
</ButtonGroup>
<Sider
width=
"300"
v-if=
"showMenu"
>
<div
class=
"p-list"
>
<h3>
<Dropdown
@
on-click=
"clickItem"
>
<a
href=
"javascript:void(0)"
>
{{
downName
}}
<Icon
type=
"ios-arrow-down"
></Icon>
</a>
<DropdownMenu
slot=
"list"
>
<DropdownItem
v-for=
"item in cityList"
:key=
"item.id"
:name=
"item.id"
>
{{
item
.
name
}}
</DropdownItem>
</DropdownMenu>
</Dropdown>
<div
class=
"fr mr10 mt10"
>
<ButtonGroup
class=
"fr ddi"
size=
"small"
>
<Button
:icon=
"expand ? 'md-arrow-dropright' : 'md-arrow-dropdown'"
@
click=
"toggle"
title=
"展开/合并"
></Button>
<Button
icon=
"md-refresh"
title=
"刷新"
@
click=
"loadTree(model8,nodeInfo.codeRuleType)"
></Button>
<Button
icon=
"md-rewind"
title=
"收起"
@
click=
"hide"
></Button>
</ButtonGroup>
</div>
</h3>
<div
class=
"search"
>
<Input
search
placeholder=
"关键字"
v-model=
"keys"
clearable
/>
</div>
<div
class=
"fg"
>
<div
class=
"tree"
>
<Tree
:data=
"data"
ref=
"tree"
@
on-select-change=
"change"
:render=
"renderContent"
></Tree>
</div>
</div>
</div>
</h3>
<div
class=
"search"
>
<Input
search
placeholder=
"关键字"
v-model=
"keys"
clearable
/>
</div>
<div
class=
"fg"
>
<div
class=
"tree"
>
<Tree
:data=
"data"
ref=
"tree"
@
on-select-change=
"change"
:render=
"renderContent"
></Tree>
</div>
</div>
</Sider>
<div
v-if=
"!showMenu"
class=
"show_menu"
>
<a
class=
"menu_play fr"
@
click=
"showMenuFn"
title=
"展开"
>
<Icon
type=
"ios-arrow-forward"
size=
"24"
/>
</a>
</div>
</Sider>
<div
v-if=
"!showMenu"
class=
"show_menu"
>
<a
class=
"menu_play fr"
@
click=
"showMenuFn"
title=
"展开"
>
<Icon
type=
"ios-arrow-forward"
size=
"24"
/>
</a>
</div>
<Content
:class=
"!showMenu?'con_bord':''"
>
<MasterData
ref=
"dataTable"
:nodeInfo=
"nodeInfo"
@
on-ok=
"ok"
/>
</Content>
<Content
:class=
"!showMenu?'con_bord':''"
>
<MasterData
ref=
"dataTable"
:nodeInfo=
"nodeInfo"
@
on-ok=
"ok"
/>
</Content>
</Layout>
</div>
</div>
</
template
>
<
script
>
...
...
@@ -60,320 +48,325 @@ import MasterData from "./masterData.vue";
import
Api
from
"./api"
;
export
default
{
components
:
{
MasterData
,
},
name
:
"masterData"
,
data
()
{
return
{
model8
:
""
,
type
:
""
,
keys
:
""
,
cityList
:
[],
expand
:
false
,
list
:
[],
nodeInfo
:
{
categoryId
:
0
,
rootCategoryId
:
0
,
rootCategoryName
:
""
,
ids
:
[],
addChange
:
true
,
codeRuleId
:
0
,
codeRuleType
:
""
,
},
downName
:
"请选择类型"
,
modal
:
false
,
title
:
"新增"
,
curId
:
0
,
detail
:
null
,
showMenu
:
true
,
dataList
:
[],
rootCategoryId
:
null
,
categoryId
:
null
,
};
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
created
()
{
// this.loadTree();
this
.
listSlecet
();
},
methods
:
{
clickItem
(
val
)
{
console
.
log
(
val
);
this
.
nodeInfo
.
codeRuleId
=
val
;
this
.
model8
=
val
;
this
.
cityList
.
forEach
((
e
)
=>
{
if
(
val
==
e
.
id
)
{
this
.
downName
=
e
.
name
;
this
.
nodeInfo
.
codeRuleType
=
e
.
type
;
}
});
this
.
loadTree
(
this
.
nodeInfo
.
codeRuleId
,
this
.
nodeInfo
.
codeRuleType
);
},
listSlecet
()
{
let
data
=
{
conditions
:
[],
sortBy
:
"id"
,
isDesc
:
false
,
};
Api
.
pagedSlecet
(
data
).
then
((
r
)
=>
{
this
.
cityList
=
r
.
result
.
items
;
this
.
downName
=
this
.
cityList
[
0
].
name
;
this
.
model8
=
this
.
cityList
[
0
].
id
;
this
.
nodeInfo
.
codeRuleId
=
this
.
cityList
[
0
].
id
;
this
.
nodeInfo
.
codeRuleType
=
this
.
cityList
[
0
].
type
;
this
.
loadTree
(
this
.
nodeInfo
.
codeRuleId
,
this
.
nodeInfo
.
codeRuleType
);
});
components
:
{
MasterData
,
},
name
:
"masterData"
,
data
()
{
return
{
model8
:
""
,
type
:
""
,
keys
:
""
,
cityList
:
[],
expand
:
false
,
list
:
[],
nodeInfo
:
{
categoryId
:
0
,
rootCategoryId
:
0
,
rootCategoryName
:
""
,
ids
:
[],
addChange
:
true
,
codeRuleId
:
0
,
codeRuleType
:
""
,
},
downName
:
"请选择类型"
,
modal
:
false
,
title
:
"新增"
,
curId
:
0
,
detail
:
null
,
showMenu
:
true
,
dataList
:
[],
showMenuFn
()
{
//this.$Message.info("展开左侧树")
this
.
showMenu
=
true
;
rootCategoryId
:
null
,
categoryId
:
null
,
}
;
},
ok
(
row
)
{
this
.
loadTree
(
this
.
nodeInfo
.
codeRuleId
,
this
.
nodeInfo
.
codeRuleType
);
// this.modal = false;
// this.curId = 0;
// if (row) {
// this.dataList.map((e, index) => {
// if (e.id == row.id) {
// this.$set(this.$refs.dataTable.dataColumns, index, row);
// }
// });
// }
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
c
ancel
()
{
this
.
curId
=
0
;
this
.
modal
=
false
;
c
reated
()
{
// this.loadTree()
;
this
.
listSlecet
()
;
},
renderContent
(
h
,
{
root
,
node
,
data
})
{
return
h
(
"span"
,
{
on
:
{
click
:
()
=>
{
this
.
handleSelect
(
root
,
data
);
//手动选择树节点
},
},
methods
:
{
clickItem
(
val
)
{
console
.
log
(
val
);
this
.
nodeInfo
.
codeRuleId
=
val
;
this
.
model8
=
val
;
this
.
cityList
.
forEach
((
e
)
=>
{
if
(
val
==
e
.
id
)
{
this
.
downName
=
e
.
name
;
this
.
nodeInfo
.
codeRuleType
=
e
.
type
;
}
});
this
.
loadTree
(
this
.
nodeInfo
.
codeRuleId
,
this
.
nodeInfo
.
codeRuleType
);
},
listSlecet
()
{
let
data
=
{
conditions
:
[],
sortBy
:
"id"
,
isDesc
:
false
,
};
Api
.
pagedSlecet
(
data
).
then
((
r
)
=>
{
this
.
cityList
=
r
.
result
.
items
;
this
.
downName
=
this
.
cityList
[
0
].
name
;
this
.
model8
=
this
.
cityList
[
0
].
id
;
this
.
nodeInfo
.
codeRuleId
=
this
.
cityList
[
0
].
id
;
this
.
nodeInfo
.
codeRuleType
=
this
.
cityList
[
0
].
type
;
this
.
loadTree
(
this
.
nodeInfo
.
codeRuleId
,
this
.
nodeInfo
.
codeRuleType
);
});
},
data
.
title
+
"("
+
(
data
.
totalMaterialCount
==
undefined
?
"0"
:
data
.
totalMaterialCount
)
+
")"
);
},
handleSelect
(
root
,
data
)
{
let
pid
=
-
1
;
//定义最顶级id
var
pname
=
""
;
var
upId
=
data
.
upId
;
let
roots
=
root
;
function
addId
(
roots
,
upId
)
{
roots
.
map
((
u
)
=>
{
if
(
u
.
node
.
id
==
upId
)
{
if
(
u
.
node
.
upId
==
0
)
{
pid
=
u
.
node
.
id
;
pname
=
u
.
node
.
name
;
}
else
{
upId
=
u
.
node
.
upId
;
addId
(
roots
,
upId
);
showMenuFn
()
{
//this.$Message.info("展开左侧树")
this
.
showMenu
=
true
;
},
ok
(
row
)
{
this
.
loadTree
(
this
.
nodeInfo
.
codeRuleId
,
this
.
nodeInfo
.
codeRuleType
);
// this.modal = false;
// this.curId = 0;
// if (row) {
// this.dataList.map((e, index) => {
// if (e.id == row.id) {
// this.$set(this.$refs.dataTable.dataColumns, index, row);
// }
// });
// }
},
cancel
()
{
this
.
curId
=
0
;
this
.
modal
=
false
;
},
renderContent
(
h
,
{
root
,
node
,
data
})
{
return
h
(
"span"
,
{
on
:
{
click
:
()
=>
{
this
.
handleSelect
(
root
,
data
);
//手动选择树节点
},
},
},
data
.
title
+
"("
+
(
data
.
totalMaterialCount
==
undefined
?
"0"
:
data
.
totalMaterialCount
)
+
")"
);
},
handleSelect
(
root
,
data
)
{
let
pid
=
-
1
;
//定义最顶级id
var
pname
=
""
;
var
upId
=
data
.
upId
;
let
roots
=
root
;
function
addId
(
roots
,
upId
)
{
roots
.
map
((
u
)
=>
{
if
(
u
.
node
.
id
==
upId
)
{
if
(
u
.
node
.
upId
==
0
)
{
pid
=
u
.
node
.
id
;
pname
=
u
.
node
.
name
;
}
else
{
upId
=
u
.
node
.
upId
;
addId
(
roots
,
upId
);
}
}
});
}
}
});
}
addId
(
roots
,
upId
);
this
.
nodeInfo
.
categoryId
=
data
.
id
;
this
.
nodeInfo
.
rootCategoryName
=
data
.
name
;
if
(
pid
==
-
1
)
{
this
.
nodeInfo
.
rootCategoryId
=
data
.
id
;
this
.
nodeInfo
.
rootCategoryName
=
data
.
name
;
}
else
{
this
.
nodeInfo
.
rootCategoryId
=
pid
;
this
.
nodeInfo
.
rootCategoryName
=
pname
;
}
},
loadTree
(
id
,
codeRuleType
)
{
let
data
=
{
conditions
:
[
{
fieldName
:
"codeRuleId"
,
fieldValue
:
id
,
conditionalType
:
"Equal"
,
},
{
fieldName
:
"codeRuleType"
,
fieldValue
:
codeRuleType
,
conditionalType
:
"Equal"
,
},
],
sortBy
:
"code"
,
isDesc
:
false
,
};
Api
.
list
(
data
).
then
((
r
)
=>
{
var
data
=
this
.
$u
.
toTree
(
r
.
result
,
0
,
(
u
)
=>
{
u
.
title
=
u
.
code
+
u
.
name
;
u
.
value
=
u
.
id
;
u
.
expand
=
true
;
},
"upId"
);
this
.
list
=
this
.
$u
.
clone
(
data
);
});
},
toggle
()
{
if
(
this
.
model8
)
{
this
.
expand
=
!
this
.
expand
;
}
else
{
this
.
$Message
.
error
(
"请先选择类型"
);
}
},
change
(
v
,
b
)
{
if
(
b
.
level
<
b
.
ruleLevel
&&
b
.
children
.
length
>
0
)
{
this
.
nodeInfo
.
addChange
=
false
;
}
else
{
this
.
nodeInfo
.
addChange
=
true
;
}
let
ids
=
[];
ids
.
push
(
b
.
value
);
if
(
b
.
children
)
{
addId
(
b
.
children
);
addId
(
roots
,
upId
);
this
.
nodeInfo
.
categoryId
=
data
.
id
;
this
.
nodeInfo
.
rootCategoryName
=
data
.
name
;
if
(
pid
==
-
1
)
{
this
.
nodeInfo
.
rootCategoryId
=
data
.
id
;
this
.
nodeInfo
.
rootCategoryName
=
data
.
name
;
}
else
{
this
.
nodeInfo
.
rootCategoryId
=
pid
;
this
.
nodeInfo
.
rootCategoryName
=
pname
;
}
},
loadTree
(
id
,
codeRuleType
)
{
let
data
=
{
conditions
:
[{
fieldName
:
"codeRuleId"
,
fieldValue
:
id
,
conditionalType
:
"Equal"
,
},
{
fieldName
:
"codeRuleType"
,
fieldValue
:
codeRuleType
,
conditionalType
:
"Equal"
,
},
],
sortBy
:
"code"
,
isDesc
:
false
,
};
Api
.
list
(
data
).
then
((
r
)
=>
{
var
data
=
this
.
$u
.
toTree
(
r
.
result
,
0
,
(
u
)
=>
{
u
.
title
=
u
.
code
+
u
.
name
;
u
.
value
=
u
.
id
;
u
.
expand
=
true
;
},
"upId"
);
this
.
list
=
this
.
$u
.
clone
(
data
);
});
},
toggle
()
{
if
(
this
.
model8
)
{
this
.
expand
=
!
this
.
expand
;
}
else
{
this
.
$Message
.
error
(
"请先选择类型"
);
}
},
change
(
v
,
b
)
{
if
(
b
.
level
<
b
.
ruleLevel
&&
b
.
children
.
length
>
0
)
{
this
.
nodeInfo
.
addChange
=
false
;
}
else
{
this
.
nodeInfo
.
addChange
=
true
;
}
let
ids
=
[];
ids
.
push
(
b
.
value
);
if
(
b
.
children
)
{
addId
(
b
.
children
);
function
addId
(
data
)
{
data
.
map
((
u
)
=>
{
ids
.
push
(
u
.
value
);
if
(
u
.
children
)
{
addId
(
u
.
children
);
function
addId
(
data
)
{
data
.
map
((
u
)
=>
{
ids
.
push
(
u
.
value
);
if
(
u
.
children
)
{
addId
(
u
.
children
);
}
});
}
}
});
}
}
this
.
nodeInfo
.
ids
=
ids
;
},
hide
()
{
this
.
showMenu
=
false
;
this
.
nodeInfo
.
ids
=
ids
;
},
hide
()
{
this
.
showMenu
=
false
;
},
},
},
computed
:
{
data
()
{
let
items
=
this
.
$u
.
clone
(
this
.
list
);
let
expand
=
this
.
expand
;
let
result
=
[];
search
(
this
.
keys
,
items
);
computed
:
{
data
()
{
let
items
=
this
.
$u
.
clone
(
this
.
list
);
let
expand
=
this
.
expand
;
let
result
=
[];
search
(
this
.
keys
,
items
);
function
search
(
keys
,
data
)
{
data
.
map
((
u
)
=>
{
if
(
keys
.
length
<
u
.
title
)
{
u
.
expand
=
expand
;
result
.
push
(
u
);
}
else
{
u
.
expand
=
expand
;
if
(
u
.
title
.
indexOf
(
keys
)
>
-
1
)
{
result
.
push
(
u
);
}
else
if
(
u
.
children
)
{
search
(
keys
,
u
.
children
);
function
search
(
keys
,
data
)
{
data
.
map
((
u
)
=>
{
if
(
keys
.
length
<
u
.
title
)
{
u
.
expand
=
expand
;
result
.
push
(
u
);
}
else
{
u
.
expand
=
expand
;
if
(
u
.
title
.
indexOf
(
keys
)
>
-
1
)
{
result
.
push
(
u
);
}
else
if
(
u
.
children
)
{
search
(
keys
,
u
.
children
);
}
}
});
}
}
});
}
return
result
;
return
result
;
},
},
},
};
</
script
>
<
style
lang=
"less"
>
.classification {
font-family: Microsoft YaHei;
font-family: Microsoft YaHei;
.ivu-layout-sider {
background: rgba(255, 255, 255, 1);
margin-right: 10px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
height: 88vh;
.ivu-layout-sider {
background: rgba(255, 255, 255, 1);
margin-right: 10px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
height: 88vh;
h4 {
height: 30px;
line-height: 30px;
background: #eee;
padding-left: 10px;
}
h4 {
height: 30px;
line-height: 30px;
background: #eee;
padding-left: 10px;
}
.p-list {
h3 {
height: 50px;
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 50px;
color: rgba(81, 90, 110, 1);
background: rgba(245, 246, 250, 1);
opacity: 1;
padding-left: 10px;
}
.p-list {
h3 {
height: 50px;
font-size: 14px;
font-family: Microsoft YaHei;
font-weight: bold;
line-height: 50px;
color: rgba(81, 90, 110, 1);
background: rgba(245, 246, 250, 1);
opacity: 1;
padding-left: 10px;
}
.search {
height: 50px;
padding: 5px 10px;
}
.search {
height: 50px;
padding: 5px 10px;
}
.fg {
flex: none;
height: 100%;
overflow: auto;
padding-left: 10px;
}
.fg {
flex: none;
height: 100%;
overflow: auto;
padding-left: 10px;
}
.tree {
height: calc(100vh - 215px);
overflow: auto;
}
.tree {
height: calc(100vh - 215px);
overflow: auto;
}
}
}
}
.show_menu {
width: 30px;
height: 30px;
position: fixed;
top: 100px;
left: 0;
z-index: 9;
.show_menu {
width: 30px;
height: 30px;
position: fixed;
top: 100px;
left: 0;
z-index: 9;
.menu_play {
width: 30px;
height: 30px;
line-height: 34px;
font-size: 14px;
text-align: center;
color: #515a6e;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background: #ffffff;
box-shadow: #ccc 2px 2px 4px 1px;
}
.menu_play {
width: 30px;
height: 30px;
line-height: 34px;
font-size: 14px;
text-align: center;
color: #515a6e;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
background: #ffffff;
box-shadow: #ccc 2px 2px 4px 1px;
}
.menu_play:hover {
background-color: #2d8cf0;
color: white;
.menu_play:hover {
background-color: #2d8cf0;
color: white;
}
}
}
.ivu-layout-content {
// margin-left: 5px;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
overflow: auto;
padding: 10px;
height: 88vh;
overflow-y: hidden;
}
.ivu-layout-content {
// margin-left: 5px;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
overflow: auto;
padding: 10px;
height: 88vh;
overflow-y: hidden;
}
}
</
style
>
pages/materiel/masterData/masterData.vue
View file @
ca559b17
...
...
@@ -47,6 +47,8 @@ export default {
selectRows
:
[],
rowsTable
:
[],
fullscreen
:
false
,
treeData
:
[],
codeRuleData
:
[],
detail
:
null
,
temTitle
:
"物料管理"
,
sets
:
v
=>
{
...
...
@@ -74,15 +76,40 @@ export default {
align
:
"center"
,
code
:
"material.code.type"
},
{
key
:
"codeRuleId"
,
title
:
"编码名称"
,
materialKey
:
'3'
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
this
.
getType3
(
params
.
row
.
codeRuleId
)
);
}
},
{
key
:
"rootCategoryId"
,
title
:
"大类
编号
"
,
title
:
"大类"
,
align
:
"right"
,
materialKey
:
'1'
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
this
.
getType1
(
params
.
row
.
rootCategoryId
)
);
}
},
{
key
:
"categoryId"
,
title
:
"子类
编号
"
,
title
:
"子类"
,
align
:
"right"
,
materialKey
:
'2'
,
render
:
(
h
,
params
)
=>
{
return
h
(
"span"
,
{},
this
.
getType2
(
params
.
row
.
categoryId
)
);
}
},
{
key
:
"code"
,
...
...
@@ -214,6 +241,8 @@ export default {
});
},
mounted
()
{
this
.
getTreeData
()
this
.
getcodeRuleData
()
window
.
onresize
=
()
=>
{
///浏览器窗口大小变化
return
(()
=>
{
...
...
@@ -401,6 +430,7 @@ export default {
categoryId
:
this
.
nodeInfo
.
categoryId
,
//左侧树点击的id
customProperties
:
{},
rootCategoryId
:
this
.
nodeInfo
.
rootCategoryId
,
//左侧树点击的数据的最顶层id
codeRuleType
:
this
.
nodeInfo
.
codeRuleType
};
this
.
addCol
.
forEach
(
el
=>
{
obj
[
el
.
field
]
=
ele
[
el
.
field
]
...
...
@@ -417,6 +447,57 @@ export default {
},
//批量导入end
//物料大类和子类的解析start
getTreeData
()
{
let
data
=
{
conditions
:
[]
};
Api
.
list
(
data
).
then
((
r
)
=>
{
this
.
treeData
=
r
.
result
});
},
getType1
(
val
)
{
let
tempTreeList
=
this
.
$u
.
clone
(
this
.
treeData
)
let
rootName
=
""
tempTreeList
.
forEach
(
ele
=>
{
if
(
ele
.
upId
==
0
&&
ele
.
id
==
val
)
{
rootName
=
ele
.
name
}
})
return
rootName
},
getType2
(
val
)
{
let
tempTreeList
=
this
.
$u
.
clone
(
this
.
treeData
)
let
childrenName
=
""
tempTreeList
.
forEach
(
ele
=>
{
if
(
ele
.
upId
>
0
&&
ele
.
id
==
val
)
{
childrenName
=
ele
.
name
}
})
return
childrenName
},
//获取编码名称
getcodeRuleData
()
{
let
data
=
{
conditions
:
[]
};
Api
.
pagedSlecet
(
data
).
then
((
r
)
=>
{
if
(
r
.
success
)
{
this
.
codeRuleData
=
r
.
result
.
items
||
[]
}
});
},
getType3
(
val
)
{
let
codeRuleDataList
=
this
.
$u
.
clone
(
this
.
codeRuleData
)
let
codeRuleName
=
""
codeRuleDataList
.
forEach
(
ele
=>
{
if
(
ele
.
id
==
val
)
{
codeRuleName
=
ele
.
name
}
})
return
codeRuleName
},
//物料大类和子类的解析end
},
watch
:
{
nodeInfo
:
{
...
...
pages/technology/details/routingsupporting/index.vue
View file @
ca559b17
<
template
>
<div>
<DataGrid
:columns=
"columns"
ref=
"grid"
:conditions=
"easySearch"
:action=
"action"
>
<template
slot=
"easySearch"
>
<Form
ref=
"formInline"
:model=
"easySearch"
inline
>
<FormItem
prop=
"keys"
>
<Input
placeholder=
"请输入关键字物料名称"
v-model=
"easySearch.keys.value"
v-width=
"260"
/>
</FormItem>
<FormItem>
<Button
type=
"primary"
@
click=
"search"
>
查询
</Button>
</FormItem>
</Form>
</
template
>
<
template
slot=
"searchForm"
>
<Search
:headid=
"hid"
/>
</
template
>
<
template
slot=
"buttons"
>
<Button
type=
"primary"
@
click=
"add"
v-show=
"headerStatus==0||headerStatus==4"
>
新增
</Button>
</
template
>
<div>
<DataGrid
:columns=
"columns"
ref=
"grid"
:conditions=
"easySearch"
:action=
"action"
exportTitle=
"工艺Bom"
>
<template
slot=
"easySearch"
>
<Form
ref=
"formInline"
:model=
"easySearch"
inline
>
<FormItem
prop=
"keys"
>
<Input
placeholder=
"请输入关键字物料名称"
v-model=
"easySearch.keys.value"
v-width=
"260"
/>
</FormItem>
<FormItem>
<Button
type=
"primary"
@
click=
"search"
>
查询
</Button>
</FormItem>
</Form>
</
template
>
<
template
slot=
"searchForm"
>
<Search
:headid=
"hid"
/>
</
template
>
<
template
slot=
"buttons"
>
<Button
type=
"primary"
@
click=
"add"
v-show=
"headerStatus==0||headerStatus==4"
>
新增
</Button>
</
template
>
</DataGrid>
<Modal
v-model=
"modal"
:title=
"title"
width=
"1200"
footer-hide
>
<component
:is=
"detail"
:eid=
"curId"
:headid=
"hid"
:productBomId=
"productBomId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
<component
:is=
"detail"
:eid=
"curId"
:headid=
"hid"
:productBomId=
"productBomId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
</Modal>
</div>
</div>
</template>
<
script
>
import
Api
from
"./api"
;
import
Search
from
"./search"
;
export
default
{
name
:
"list"
,
components
:
{
Search
},
head
:
{
title
:
"工艺配套表"
,
author
:
"henq"
,
description
:
"routingsupporting 4/27/2020 10:35:33 AM"
},
props
:
[
"headerid"
],
data
()
{
return
{
action
:
Api
.
index
,
easySearch
:
{
keys
:
{
op
:
"nameMaterial"
,
value
:
null
},
routingHeaderId
:
{
op
:
"Equal"
,
value
:
-
1
}
},
modal
:
false
,
title
:
"新增"
,
detail
:
null
,
curId
:
0
,
hid
:
0
,
columns
:
[
{
key
:
"routingDetailNo"
,
title
:
this
.
l
(
"routingDetailNo"
),
align
:
"left"
,
high
:
true
,
width
:
100
,
sortable
:
true
},
{
key
:
"routingDetailName"
,
title
:
this
.
l
(
"routingDetailName"
),
align
:
"left"
,
high
:
true
},
{
key
:
"quantity"
,
title
:
this
.
l
(
"quantity"
),
align
:
"right"
,
high
:
true
,
width
:
80
,
},
{
key
:
"materialType"
,
title
:
this
.
l
(
"materialType"
),
align
:
"center"
,
easy
:
true
,
high
:
true
,
code
:
"mes_xingchi_resource.material.materialReType"
,
width
:
100
,
},
{
key
:
"materialNumber"
,
title
:
this
.
l
(
"materialNumber"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"nameMaterial"
,
title
:
this
.
l
(
"nameMaterial"
),
align
:
"left"
,
easy
:
true
,
high
:
true
,
},
{
key
:
"brand"
,
title
:
this
.
l
(
"brand"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"specifications"
,
title
:
this
.
l
(
"specifications"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"xhgg"
,
title
:
this
.
l
(
"xhgg"
),
align
:
"left"
,
easy
:
true
,
high
:
true
,
hide
:
true
,
},
{
key
:
"texture"
,
title
:
this
.
l
(
"texture"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"procurementStandards"
,
title
:
this
.
l
(
"procurementStandards"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"qualityGrade"
,
title
:
this
.
l
(
"qualityGrade"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"drawNum"
,
title
:
this
.
l
(
"drawNum"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"creationTime"
,
title
:
this
.
l
(
"creationTime"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
},
{
key
:
"creatorUserId"
,
title
:
this
.
l
(
"creatorUserId"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
type
:
'user'
,
},
{
key
:
"lastModificationTime"
,
title
:
this
.
l
(
"lastModificationTime"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
},
{
key
:
"lastModifierUserId"
,
title
:
this
.
l
(
"lastModifierUserId"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
type
:
'user'
,
},
{
title
:
"操作"
,
key
:
"action"
,
width
:
140
,
align
:
"center"
,
render
:
(
h
,
params
)
=>
{
return
h
(
"div"
,
{
class
:
"action"
},
[
h
(
"op"
,
name
:
"list"
,
components
:
{
Search
},
head
:
{
title
:
"工艺配套表"
,
author
:
"henq"
,
description
:
"routingsupporting 4/27/2020 10:35:33 AM"
},
props
:
[
"headerid"
],
data
()
{
return
{
action
:
Api
.
index
,
easySearch
:
{
keys
:
{
op
:
"nameMaterial"
,
value
:
null
},
routingHeaderId
:
{
op
:
"Equal"
,
value
:
-
1
}
},
modal
:
false
,
title
:
"新增"
,
detail
:
null
,
curId
:
0
,
hid
:
0
,
columns
:
[{
key
:
"routingDetailNo"
,
title
:
this
.
l
(
"routingDetailNo"
),
align
:
"left"
,
high
:
true
,
width
:
100
,
sortable
:
true
},
{
attrs
:
{
oprate
:
"detail"
},
on
:
{
click
:
()
=>
this
.
view
(
params
.
row
.
id
)
}
key
:
"routingDetailName"
,
title
:
this
.
l
(
"routingDetailName"
),
align
:
"left"
,
high
:
true
},
"查看"
),
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
h
(
"op"
,
{
attrs
:
{
oprate
:
"edit"
},
on
:
{
click
:
()
=>
this
.
edit
(
params
.
row
.
id
)
}
key
:
"quantity"
,
title
:
this
.
l
(
"quantity"
),
align
:
"right"
,
high
:
true
,
width
:
80
,
},
this
.
headerStatus
==
4
||
this
.
headerStatus
==
0
?
"编辑"
:
""
),
h
(
"op"
,
{
attrs
:
{
oprate
:
"delete"
},
on
:
{
click
:
()
=>
this
.
remove
(
params
.
row
.
id
)
}
key
:
"materialType"
,
title
:
this
.
l
(
"materialType"
),
align
:
"center"
,
easy
:
true
,
high
:
true
,
code
:
"mes_xingchi_resource.material.materialReType"
,
width
:
100
,
},
this
.
headerStatus
==
4
||
this
.
headerStatus
==
0
?
"删除"
:
""
)
]);
}
}
],
headerStatus
:
-
1
,
productBomId
:
-
1
,
};
},
created
()
{
if
(
this
.
headerid
!=
-
1
)
{
this
.
easySearch
.
routingHeaderId
.
value
=
this
.
headerid
;
}
else
{
this
.
easySearch
.
routingHeaderId
.
value
=
this
.
$route
.
query
.
id
;
}
this
.
hid
=
Number
(
this
.
easySearch
.
routingHeaderId
.
value
)
this
.
headerStatus
=
this
.
$route
.
query
.
headerStatus
this
.
productBomId
=
Number
(
this
.
$route
.
query
.
productBomId
)
},
mounted
()
{
console
.
log
(
this
);
this
.
search
();
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
methods
:
{
ok
()
{
this
.
$refs
.
grid
.
load
();
this
.
modal
=
false
;
this
.
curId
=
0
;
},
search
()
{
this
.
$refs
.
grid
.
reload
(
this
.
easySearch
);
},
add
()
{
this
.
curId
=
0
;
this
.
hid
=
Number
(
this
.
headerid
);
this
.
title
=
"新增"
;
this
.
detail
=
()
=>
import
(
"./add"
);
this
.
modal
=
true
;
{
key
:
"materialNumber"
,
title
:
this
.
l
(
"materialNumber"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"nameMaterial"
,
title
:
this
.
l
(
"nameMaterial"
),
align
:
"left"
,
easy
:
true
,
high
:
true
,
},
{
key
:
"brand"
,
title
:
this
.
l
(
"brand"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"specifications"
,
title
:
this
.
l
(
"specifications"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"xhgg"
,
title
:
this
.
l
(
"xhgg"
),
align
:
"left"
,
easy
:
true
,
high
:
true
,
hide
:
true
,
},
{
key
:
"texture"
,
title
:
this
.
l
(
"texture"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"procurementStandards"
,
title
:
this
.
l
(
"procurementStandards"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"qualityGrade"
,
title
:
this
.
l
(
"qualityGrade"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"drawNum"
,
title
:
this
.
l
(
"drawNum"
),
align
:
"left"
,
easy
:
true
,
high
:
true
},
{
key
:
"creationTime"
,
title
:
this
.
l
(
"creationTime"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
},
{
key
:
"creatorUserId"
,
title
:
this
.
l
(
"creatorUserId"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
type
:
'user'
,
},
{
key
:
"lastModificationTime"
,
title
:
this
.
l
(
"lastModificationTime"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
},
{
key
:
"lastModifierUserId"
,
title
:
this
.
l
(
"lastModifierUserId"
),
hide
:
true
,
align
:
"left"
,
hide
:
true
,
type
:
'user'
,
},
{
title
:
"操作"
,
key
:
"action"
,
width
:
140
,
align
:
"center"
,
render
:
(
h
,
params
)
=>
{
return
h
(
"div"
,
{
class
:
"action"
},
[
h
(
"op"
,
{
attrs
:
{
oprate
:
"detail"
},
on
:
{
click
:
()
=>
this
.
view
(
params
.
row
.
id
)
}
},
"查看"
),
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
h
(
"op"
,
{
attrs
:
{
oprate
:
"edit"
},
on
:
{
click
:
()
=>
this
.
edit
(
params
.
row
.
id
)
}
},
this
.
headerStatus
==
4
||
this
.
headerStatus
==
0
?
"编辑"
:
""
),
h
(
"op"
,
{
attrs
:
{
oprate
:
"delete"
},
on
:
{
click
:
()
=>
this
.
remove
(
params
.
row
.
id
)
}
},
this
.
headerStatus
==
4
||
this
.
headerStatus
==
0
?
"删除"
:
""
)
]);
}
}
],
headerStatus
:
-
1
,
productBomId
:
-
1
,
};
},
copy
(
id
)
{
this
.
curId
=
id
;
this
.
title
=
"克隆"
;
this
.
detail
=
()
=>
import
(
"./add"
);
this
.
modal
=
true
;
created
()
{
if
(
this
.
headerid
!=
-
1
)
{
this
.
easySearch
.
routingHeaderId
.
value
=
this
.
headerid
;
}
else
{
this
.
easySearch
.
routingHeaderId
.
value
=
this
.
$route
.
query
.
id
;
}
this
.
hid
=
Number
(
this
.
easySearch
.
routingHeaderId
.
value
)
this
.
headerStatus
=
this
.
$route
.
query
.
headerStatus
this
.
productBomId
=
Number
(
this
.
$route
.
query
.
productBomId
)
},
view
(
id
)
{
this
.
curId
=
id
;
this
.
title
=
"详情"
;
this
.
detail
=
()
=>
import
(
"./detail"
);
this
.
modal
=
true
;
mounted
()
{
console
.
log
(
this
);
this
.
search
();
},
edit
(
id
)
{
this
.
curId
=
id
;
this
.
hid
=
Number
(
this
.
headerid
);
this
.
title
=
"编辑"
;
this
.
detail
=
()
=>
import
(
"./edit"
);
this
.
modal
=
true
;
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
remove
(
id
)
{
Api
.
delete
(
id
).
then
(
r
=>
{
if
(
r
.
success
)
{
this
.
$refs
.
grid
.
load
();
this
.
$Message
.
success
(
"删除成功"
);
methods
:
{
ok
()
{
this
.
$refs
.
grid
.
load
();
this
.
modal
=
false
;
this
.
curId
=
0
;
},
search
()
{
this
.
$refs
.
grid
.
reload
(
this
.
easySearch
);
},
add
()
{
this
.
curId
=
0
;
this
.
hid
=
Number
(
this
.
headerid
);
this
.
title
=
"新增"
;
this
.
detail
=
()
=>
import
(
"./add"
);
this
.
modal
=
true
;
},
copy
(
id
)
{
this
.
curId
=
id
;
this
.
title
=
"克隆"
;
this
.
detail
=
()
=>
import
(
"./add"
);
this
.
modal
=
true
;
},
view
(
id
)
{
this
.
curId
=
id
;
this
.
title
=
"详情"
;
this
.
detail
=
()
=>
import
(
"./detail"
);
this
.
modal
=
true
;
},
edit
(
id
)
{
this
.
curId
=
id
;
this
.
hid
=
Number
(
this
.
headerid
);
this
.
title
=
"编辑"
;
this
.
detail
=
()
=>
import
(
"./edit"
);
this
.
modal
=
true
;
},
remove
(
id
)
{
Api
.
delete
(
id
).
then
(
r
=>
{
if
(
r
.
success
)
{
this
.
$refs
.
grid
.
load
();
this
.
$Message
.
success
(
"删除成功"
);
}
});
},
cancel
()
{
this
.
curId
=
0
;
this
.
modal
=
false
;
},
l
(
key
)
{
let
vkey
=
"routingsupporting"
+
"."
+
key
;
return
this
.
$t
(
vkey
)
||
key
;
}
});
},
cancel
()
{
this
.
curId
=
0
;
this
.
modal
=
false
;
},
l
(
key
)
{
let
vkey
=
"routingsupporting"
+
"."
+
key
;
return
this
.
$t
(
vkey
)
||
key
;
}
}
};
</
script
>
<
style
lang=
"less"
>
</
style
>
\ No newline at end of file
</
style
>
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