mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-06-12 10:00:57 +08:00
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
<view class="user-container">
|
|
<view class="block__title">成员信息</view>
|
|
<view class="ppfl_c" wx:for="{{owners}}" wx:for-index="idx" wx:for-item="item" >
|
|
<van-panel title="{{item.name}}" desc="" status="{{item.link}}" >
|
|
<view class="ppfl_context">
|
|
<van-row >
|
|
<van-col span="8">成员编号:</van-col>
|
|
<van-col span="16">{{item.memberId}}</van-col>
|
|
</van-row>
|
|
<van-row class="ppfl_context_row">
|
|
<van-col span="8">身份证号:</van-col>
|
|
<van-col span="16">{{item.idCard}}</van-col>
|
|
</van-row>
|
|
<van-row class="ppfl_context_row">
|
|
<van-col span="8">成员年龄:</van-col>
|
|
<van-col span="16">{{item.age}}岁</van-col>
|
|
</van-row>
|
|
<van-row class="ppfl_context_row">
|
|
<van-col span="8">成员性别:</van-col>
|
|
<van-col span="16">{{item.sex == 0? '男': '女'}}</van-col>
|
|
</van-row>
|
|
</view>
|
|
</van-panel>
|
|
</view>
|
|
<view class="block__bottom"></view>
|
|
<van-submit-bar
|
|
button-type="primary"
|
|
button-text="添加成员"
|
|
bind:submit="goAdd"
|
|
>
|
|
</van-submit-bar>
|
|
</view> |