52 lines
1.1 KiB
Vue
52 lines
1.1 KiB
Vue
<template>
|
|
<!-- 暂不使用 -->
|
|
<div class="fullHeight">
|
|
<div class="leftMenu fullHeight">
|
|
<ul>
|
|
<li>扩展信息</li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return{
|
|
leftTypeIndex:0,
|
|
leftMenuList:[{
|
|
name:'扩展信息',id:1
|
|
},{
|
|
name:'施工单位',id:2
|
|
},{
|
|
name:'监理单位',id:3
|
|
},{
|
|
name:'建设单位',id:4
|
|
},{
|
|
name:'分包单位',id:5
|
|
},{
|
|
name:'设计单位',id:6
|
|
},{
|
|
name:'扩展信息',id:1
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.leftMenu{
|
|
background-color: white;
|
|
width: 300px;
|
|
ul{
|
|
padding: 10px 0;
|
|
}
|
|
li{
|
|
padding-left: 20px;
|
|
line-height: 40px;
|
|
}
|
|
}
|
|
</style> |