You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
<!--制造监检锅壳式锅炉-->
|
|
<template>
|
|
<index type="gks" :show-xmlb-index-list-sg.sync="showXmlbIndexListSg" :jyxm-relations.sync="jyxmRelations" />
|
|
</template>
|
|
<script>
|
|
import Index from '@/views/ysjl/1000/zj/common'
|
|
|
|
export default {
|
|
name: 'GlGksYsjl',
|
|
components: { Index },
|
|
data() {
|
|
return {
|
|
showXmlbIndexListSg: [],
|
|
/**
|
|
* 格式为: [{ index: 0, relationIds: [1, 2] }]
|
|
*/
|
|
jyxmRelations: [
|
|
// 1
|
|
{ index: 0, relationIds: [1, 2, 3, 4, 6, 7] },
|
|
// 2
|
|
{ index: 5, relationIds: [] },
|
|
// 3
|
|
{ index: 8, relationIds: [9] },
|
|
// 4
|
|
{ index: 10, relationIds: [] },
|
|
// 5
|
|
{ index: 11, relationIds: [] },
|
|
// 6
|
|
{ index: 12, relationIds: [15, 37] },
|
|
// 7
|
|
{ index: 13, relationIds: [] },
|
|
// 8
|
|
{ index: 14, relationIds: [16] },
|
|
// 9
|
|
{ index: 17, relationIds: [] },
|
|
// 10
|
|
{ index: 18, relationIds: [] },
|
|
// 11
|
|
{ index: 19, relationIds: [20, 21, 22, 23, 24, 25, 26] },
|
|
// 12
|
|
{ index: 27, relationIds: [28, 29, 30, 31] },
|
|
// 13
|
|
{ index: 32, relationIds: [33, 34] },
|
|
// 14
|
|
{ index: 35, relationIds: [36] },
|
|
// 15
|
|
{ index: 38, relationIds: [39, 40, 41, 42] }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|