You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.7 KiB
46 lines
1.7 KiB
<!--subpages/searchResult/pages/punchCard/punchCard.wxml-->
|
|
<!-- 基本信息 -->
|
|
<view class="card">
|
|
<view class="title">基础信息</view>
|
|
<view class="info">
|
|
<view class="item">
|
|
<view class="label">姓名:</view>
|
|
<View class="value">{{form.name}}</View>
|
|
</view>
|
|
<view class="item">
|
|
<view class="label">性别:</view>
|
|
<View class="value">{{form.genderName}}</View>
|
|
</view>
|
|
<view class="item">
|
|
<view class="label">出生日期:</view>
|
|
<View class="value">{{form.birthday}}</View>
|
|
</view>
|
|
<view class="item">
|
|
<view class="label">住宅:</view>
|
|
<View class="value">{{form.homeName}}</View>
|
|
</view>
|
|
<view class="item">
|
|
<view class="label">电话:</view>
|
|
<View class="value">{{form.mobile}}</View>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 走访打卡 -->
|
|
<view class="card ">
|
|
<view class="title">走访打卡</view>
|
|
<view class="punch {{animationClass}}" bind:tap="handlePunch">
|
|
<view class="{{animationClass}}" style="font-size: 36rpx;">{{!punchFlag ? '开始打卡' : '更新打卡'}}</view>
|
|
<view class="{{animationClass}}" style="font-family:PingFang-SC-Regular;font-size: 28rpx;opacity: 0.72;">{{currentTime}}</view>
|
|
</view>
|
|
<view class="address">当前位置:{{addressContent}}</view>
|
|
</view>
|
|
<!-- 相关操作 -->
|
|
<view class="card">
|
|
<view class="title">相关操作</view>
|
|
<view class="blue btn" bind:tap="toAddResi" style="margin-top: 40rpx ; ">修改居民信息</view>
|
|
<view class="yellow btn" bind:tap="toWebView">满意度调查</view>
|
|
<view class="green btn" bind:tap="toEvent">上报居民诉求</view>
|
|
</view>
|