10 changed files with 190 additions and 78 deletions
@ -1,2 +1,41 @@
|
||||
<!--components/detai-present/detai-present.wxml--> |
||||
<text>components/detai-present/detai-present.wxml</text> |
||||
<view class="table-box"> |
||||
<view class="table-title">项目详情</view> |
||||
<view class="table"> |
||||
<view class="table-item" wx:for="{{info.detail}}" wx:for-index="index" wx:for-item="item" wx:key="index"> |
||||
<view class="table-lable"> |
||||
{{item.lable}} |
||||
</view> |
||||
<view class="table-info"> |
||||
{{item.info}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="table-box"> |
||||
<view class="table-title">销售情况</view> |
||||
<view class="table"> |
||||
<view class="table-item" wx:for="{{info.list}}" wx:for-index="index" wx:for-item="item" wx:key="index"> |
||||
<view class="table-lable"> |
||||
{{item.lable}} |
||||
</view> |
||||
<view class="table-info"> |
||||
{{item.info}} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="table-column"> |
||||
<view class="column-item"> |
||||
<view class="column-head">预售明细</view> |
||||
<view class="column-head">预售/去化/去化率</view> |
||||
<view class="column-head">取证时间</view> |
||||
</view> |
||||
<view class="column-item" wx:for="{{info.more}}" wx:for-index="index" wx:for-item="item" wx:key="index"> |
||||
<view class="column-info">{{item.msg}}</view> |
||||
<view class="column-info">{{item.booking}}</view> |
||||
<view class="column-info">{{item.timer}}</view> |
||||
</view> |
||||
</view> |
||||
</view> |
@ -1 +1,38 @@
|
||||
/* components/detai-present/detai-present.wxss */ |
||||
.table-column { |
||||
border: 1px solid #E1E1E1; |
||||
border-bottom: none; |
||||
margin-top: 26rpx; |
||||
} |
||||
|
||||
.column-item { |
||||
display: flex; |
||||
font-size: 26rpx; |
||||
} |
||||
|
||||
.column-item>view { |
||||
border-bottom: 1px solid #E1E1E1; |
||||
padding: 30rpx 0; |
||||
text-align: center; |
||||
flex: 1; |
||||
} |
||||
|
||||
.column-item>view:nth-child(2) { |
||||
border-left: 1px solid #E1E1E1; |
||||
border-right: 1px solid #E1E1E1; |
||||
} |
||||
|
||||
.column-head { |
||||
background: rgba(225, 225, 225, 0.2); |
||||
color: #838B99; |
||||
} |
||||
|
||||
.column-item .column-info { |
||||
font-weight: bold; |
||||
color: #262936; |
||||
} |
||||
|
||||
.column-item .column-info:nth-child(1) { |
||||
text-decoration: underline; |
||||
color: #036EF3; |
||||
} |
Loading…
Reference in new issue