1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!--login.wxml-->
- <o2-navi title="我的" ></o2-navi>
- <view class="me">
-
- <image class="avatar" src="{{avatarUrl}}" bindtap="bindTapAvatar"></image>
- <!--
- <view style="position: absolute;top: 30rpx;right: 0rpx;width: 128rpx;height: 64rpx;background-color:#ffffff;border-radius:">
- <view>联系我们</view>
- <button open-type="contact" bindcontact="handleContact" style="display: inline-block;position: absolute;width: 100%;background: salmon;opacity: 0;"></button>
- </view>
- -->
-
- <view class="line">
- <text class="label">姓名</text>
- <view class="right">
- <text>{{person.name}}</text>
- </view>
- </view>
- <view class="line">
- <text class="label">工号</text>
- <view class="right">
- <text>{{person.employee}}</text>
- </view>
- </view>
- <view class="line" bindtap="bindTapLine" data-param="mail">
- <text class="label">邮件地址</text>
- <view class="right">
- <image src="../../assets/img/icon_arrow.png"></image>
- <text>{{person.mail}}</text>
- </view>
- </view>
- <view class="line" bindtap="bindTapLine" data-param="mobile">
- <text class="label">手机号码</text>
- <view class="right">
- <image src="../../assets/img/icon_arrow.png"></image>
- <text>{{person.mobile}}</text>
- </view>
- </view>
- <view class="line" bindtap="bindTapLine" data-param="officePhone">
- <text class="label">办公电话</text>
- <view class="right">
- <image src="../../assets/img/icon_arrow.png"></image>
- <text>{{person.officePhone}}</text>
- </view>
- </view>
- <view class="line" bindtap="bindTapLine" data-param="signature">
- <text class="label">个人签名</text>
- <view class="right">
- <image src="../../assets/img/icon_arrow.png"></image>
- <text>{{person.signature}}</text>
- </view>
- </view>
- <view class="weui-btn-area">
- <button class="weui-btn" style="background-color: #fb4747;" type="primary" bindtap="bindTapLogout">退出登录</button>
- </view>
- </view>
- <mp-dialog title="修改{{dialogLabel}}" show="{{showDialog}}" bindbuttontap="tapDialogButton" buttons="{{[{text: '取消'}, {text: '确认'}]}}">
- <!-- <view>
- <mp-cell prop="qq" title="{{dialogLabel}}" ext-class="">
- <input data-field="qq" class="weui-input" value="{{dialogValue}}" />
- </mp-cell> -->
- <view class="page-section">
- <!-- <view class="weui-cells__title">{{dialogLabel}}</view> -->
- <view class="weui-cells weui-cells_after-title">
- <view class="weui-cell weui-cell_input">
- <input class="weui-input" name="dialogInput" placeholder="{{dialogPlaceholder}}" value="{{dialogValue}}" bindinput="getDialogInputValue" />
- </view>
- </view>
- </view>
- <!-- </view> -->
- </mp-dialog>
- <mp-dialog title="提示" show="{{showLogoutDialog}}" bindbuttontap="tapDialogLogoutButton" buttons="{{[{text: '取消'}, {text: '确认'}]}}">
- <view>确定要退出登录吗?</view>
- </mp-dialog>
- <!-- <view class="zixun" ><contact-button type="default-dark" size="100" class="kf"></contact-button></view>
- <view class="zixun_text">联系我们</view> -->
|