纸通宝SAAS仓库
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.
 

73 lines
3.0 KiB

<!--pages/home/setting/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content" style="color:black;font-size:18px">个人资料</view>
</cu-custom>
<van-cell is-link clickable>
<view slot="title" class="flex flex-justify">
<view class="text-black">头像</view>
<van-image use-loading-slot width="120rpx" height="120rpx" round src="{{avatarUrl}}">
<image class="image-load" slot="loading" src="/assets/image/ygImg.png"></image>
</van-image>
</view>
</van-cell>
<van-cell is-link clickable>
<view slot="title" class="flex flex-justify">
<view class="text-black">名称</view>
<text class="text-sg">{{userName}}</text>
</view>
</van-cell>
<van-cell is-link="{{userInfo.isAuth != 1}}" clickable bind:click="authrise">
<view slot="title" class="flex flex-justify">
<view class="text-black">实名制认证</view>
<view class="flex flex-center">
<text class="{{userInfo.isAuth == 1 ? 'text-blue' : 'text-gray'}}">{{userInfo.isAuth == 1 ? '已认证' : '未实名认证'}}</text>
<text class="text-sg" wx:if="{{userInfo.isAuth != 1 && userInfo.userType == 1}}">去认证</text>
</view>
</view>
</van-cell>
<van-cell is-link clickable url="/pages/agent/focus-list/index" wx:if="{{userInfo.factoryId}}">
<view class="flex" slot="title" style="align-items: center">
<text class="text-sg">关注纸厂</text>
</view>
</van-cell>
<!-- <van-cell clickable bind:click="settingAgent">
<view slot="title" class="flex flex-justify">
<view class="text-black">默认使用千鸟代付</view>
<view class="flex flex-center">
<van-switch checked="{{ agenting }}" size="22px" />
</view>
</view>
</van-cell> -->
<view style="height:24rpx"></view>
<van-cell-group>
<van-cell is-link clickable url="/pages/setting/password/index">
<view class="flex" slot="title" style="align-items: center">
<text class="cuIcon-lock text-black" style="font-size:36rpx"></text>
<text class="text-sg" style="margin-left:12rpx">修改密码</text>
</view>
</van-cell>
<van-cell is-link clickable url="/pages/setting/mobile/index">
<view class="flex" slot="title" style="align-items: center">
<text class="cuIcon-mobile text-black" style="font-size:36rpx"></text>
<text class="text-sg" style="margin-left:12rpx">修改手机号码</text>
</view>
</van-cell>
<van-cell is-link clickable bind:click="makeCall">
<view class="flex" slot="title" style="align-items: center">
<van-icon name="service-o" size="36rpx" />
<text class="text-sg" style="margin-left:12rpx">联系客服(020-82516486)</text>
</view>
</van-cell>
</van-cell-group>
<view style="margin-top:48rpx;padding:40rpx 80rpx">
<van-button block type="danger" bind:click="loginOut">退出当前账号</van-button>
</view>
<view class="cu-bar foot" style="display:block;width:100%;min-height: 180rpx;padding: 0rpx 120rpx">
<van-divider content-position="center">当前版本:{{version}}</van-divider>
</view>
<van-dialog id="van-dialog" />
<notification id="qn-notification" />