31 lines
617 B
Vue
Raw Normal View History

<template>
<div>
<CardData title="项目信息">
<div class="contentBox">
<div class="box">
<span>项目位置</span>
<span>建宁路与热河交叉路口</span>
</div>
</div>
</CardData>
</div>
</template>
<script>
import CardData from "../components/cardData";
export default {
components: { CardData },
data() {
return {};
}
};
</script>
<style lang="less" scoped>
.box{
height:40px;
line-height: 40px;
background-image: url('~@/assets/images/projectZjsj/intro.png');
background-size: 100%;
}
</style>