This commit is contained in:
lik
2026-09-03 11:35:21 +08:00
parent f8f7afceb8
commit b4c8bf0add
45 changed files with 2989 additions and 426 deletions
+21
View File
@@ -0,0 +1,21 @@
<view class="pi-item">
<view class="pi-avatar">
<text>{{name[0]}}</text>
</view>
<view class="pi-main">
<view class="pi-line">
<view class="pi-name-row">
<text class="pi-name">{{name}}</text>
<text wx:if="{{sexLabel}}" class="pi-sex {{sexLabel === '男' ? 'male' : 'female'}}">{{sexLabel}}</text>
</view>
<text wx:if="{{ageText}}" class="pi-extra">{{ageText}}</text>
</view>
<view class="pi-line">
<view class="pi-mobile-wrap">
<text class="pi-mobile">{{mobile || '暂无电话'}}</text>
<text wx:if="{{dial && mobile}}" class="pi-call" catchtap="onCallTap">拨打</text>
</view>
<text wx:if="{{locationText}}" class="pi-extra">{{locationText}}</text>
</view>
</view>
</view>