update:前段代码首次上传

This commit is contained in:
2021-09-09 09:35:27 +08:00
parent 97bffb4e48
commit ea7af395f3
38 changed files with 19957 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<template>
<div class="box">
<div>
<span>{{ data.date }}</span>
<span>{{ data.address }}</span>
</div>
<div>
<div>郁金花园北地块</div>
<div>协议签订阶段</div>
</div>
</div>
</template>
<script>
export default {
name: 'table',
props: ['data'],
}
</script>
<style lang="less" scoped>
.box {
> :nth-child(1) {
display: flex;
justify-content: space-between;
padding-bottom: 10px;
}
> :nth-child(2) {
border-top: 2px solid #a8cbec;
> div {
text-align: center;
}
}
}
</style>