xiaobai
3 years ago
4 changed files with 95 additions and 7 deletions
@ -0,0 +1,73 @@ |
|||
<template> |
|||
<div class="app-container"> |
|||
<baseInfo :from-type="type" :array-group="arrayGroup" /> |
|||
</div> |
|||
</template> |
|||
<script> |
|||
import baseInfo from '@/views/ysjl/3000/common/index' |
|||
|
|||
export default { |
|||
name: 'ElevatorYeyin', |
|||
components: { baseInfo }, |
|||
data() { |
|||
return { |
|||
type: 5, |
|||
arrayGroup: [ |
|||
{ |
|||
header: [ |
|||
{ |
|||
label: '', |
|||
prop: 'D2', |
|||
type: 1 |
|||
}, |
|||
{ |
|||
label: '制停距离(m)', |
|||
prop: 'D1', |
|||
type: 1 |
|||
} |
|||
] |
|||
} |
|||
], |
|||
tableHeader2: [ |
|||
{ |
|||
label: '载荷', |
|||
type: 1 |
|||
}, |
|||
{ |
|||
label: '30%', |
|||
prop: 'D1', |
|||
type: 1 |
|||
}, |
|||
{ |
|||
label: '40%', |
|||
prop: 'D2', |
|||
type: 1 |
|||
}, |
|||
{ |
|||
label: '45%', |
|||
prop: 'D3', |
|||
type: 1 |
|||
}, |
|||
{ |
|||
label: '50%', |
|||
prop: 'D4', |
|||
type: 1 |
|||
}, |
|||
{ |
|||
label: '60%', |
|||
prop: 'D5', |
|||
type: 1 |
|||
} |
|||
], |
|||
list: [], |
|||
list1: [] |
|||
} |
|||
}, |
|||
computed: {}, |
|||
created() {}, |
|||
methods: {} |
|||
} |
|||
</script> |
|||
|
|||
<style> |
|||
</style> |
Loading…
Reference in new issue