hailu
2023-10-13 6763ddbac0a8df83bfb5191ed99e3dcbdd16beee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!--pages/personSet/personSet.wxml-->
<view class="list">
  <view class="item" style="height: 80px;line-height:80px;" bind:tap="goPersonSet">
    <view class="text">
      用户头像
    </view>
    <view style="height: 80px;line-height:80px;display: flex;">
      <image src="/images/heard.png" mode="" />
      <text class="iconfont icon-xiangyoujiantou"></text>
    </view>
 
  </view>
  <view class="item">
    <view class="text">
      用户名
    </view>
    <text class="" style="margin-right: 10px;"> {{personInfo.createBy?personInfo.createBy:'--'}}</text>
  </view>
  <view class="item">
    <view class="text">
      手机号
    </view>
    <!-- <text class="iconfont icon-xiangyoujiantou"></text> -->
    <text class="" style="margin-right: 10px;"> {{personInfo.phonenumber?personInfo.phonenumber:'--'}}</text>
  </view>
  <view class="item" bind:tap="openDialog">
    <view class="text">
      住址
    </view>
    <text class="" style="margin-right: 10px;"> {{personInfo.address?personInfo.address:'--'}}</text>
 
    <!-- <text class="iconfont icon-xiangyoujiantou"></text> -->
  </view>
  <view class="item" bind:tap="goChangePSW">
    <view class="text">
      修改密码
    </view>
    <text class="iconfont icon-xiangyoujiantou"></text>
  </view>
</view>
 
<!-- confirm-button-open-type -->
<!-- <van-dialog use-slot title="修改密码" show="{{ editPSW }}" show-cancel-button bind:confirm="changePSW" bind:cancel="onClosePSW" bind:beforeClose="onBeforeClose">
  <van-cell-group>
    <van-field value="{{ password.old }}" required clearable label="旧密码"  placeholder=""  />
    <van-field value="{{ password.new }}" clearable label="新密码" placeholder="" required  />
    <van-field value="{{ password.newTwo }}" clearable label="确认密码" placeholder="" required  />
  </van-cell-group>
</van-dialog> -->