Files
cha0yang/src/views/activedetail.vue
2020-05-07 18:59:46 +08:00

85 lines
1.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div>
<header-nav :index_num="index_num"></header-nav>
<div class="content">
<div>
<span>状态</span>
<span>劳动组织</span>
</div>
<div>
<span>监测方</span>
<span>组织</span>
</div>
<div>
<span>预测时间</span>
<span>示例文字</span>
</div>
<div>
<span>项目名称 </span>
<span>示例文字</span>
</div>
<div>
<span>机构名称</span>
<span>示例文字</span>
</div>
<div>
<span>活动名称</span>
<span>示例文字</span>
</div>
<div>
<span>活动地点</span>
<span>示例文字</span>
</div>
<div>
<span>活动内容</span>
<span>示例文字</span>
</div>
<div>
<span>预计参与人数</span>
<span>示例文字</span>
</div>
<div>
<span>项目联系人</span>
<span>示例文字</span>
</div>
<div>
<span>联系方式</span>
<span>示例文字</span>
</div>
</div>
</div>
</template>
<script>
import HeaderNav from "../components/HeaderNav";
export default {
name: "dangzuzhixq",
components: {
HeaderNav
},
data() {
return {
index_num: 0
};
}
};
</script>
<style lang="scss" scoped>
.content{
margin-left:121px;
margin-top: 67px;
&>div{
margin-bottom: 38px;
display: flex;
}
.line{
width: 1088px;
height: 1px;
border-top: 1px dashed #E7E7E7;
position: relative;
top: 8px;
left: 20px;
}
}
</style>