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.
|
- <!--pages/supplement/supplement.wxml-->
- <view class="all">
- <view class="main">
- <image class="newImages36" src="{{imgUrl+'/newImages/36.png'}}"></image>
- <view class="msgFrame">
- <view class="inputGroup">
- <view class="inputTitle">姓名</view>
- <input class="inputSty" bindinput="getRealname" value="{{realname}}" placeholder="请输入姓名"></input>
- </view>
- <view class="inputGroup">
- <view class="inputTitle">当前城市</view>
- <picker mode='multiSelector' range="{{provinceDataArr}}" value="{{provinceDataValue}}" bindcolumnchange="provinceDataChange" bindchange="provinceDataChane">
- <view class="inputSty" style="display:flex;align-items: center;justify-content: space-between;">
- <view>{{nowProvince}}</view>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </picker>
- </view>
- <view class="inputGroup">
- <view class="inputTitle">关联专营店</view>
- <picker mode='selector' range="{{storeArr}}" range-key="agent_detail" value="{{storeValue}}" bindchange="storeChane">
- <view class="inputSty" style="display:flex;align-items: center;justify-content: space-between;">
- <view>{{storeArr[storeValue]['agent_detail']}}</view>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </picker>
- </view>
- <view class="inputGroup">
- <view class="inputTitle">职业</view>
- <input class="inputSty" bindinput="getJobDetail" maxlength='20' value="{{jobDetail}}" placeholder="请输入职业"></input>
- </view>
- <!-- <view class="inputGroup">
- <view class="inputTitle">职业</view>
- <picker mode='selector' range="{{jobList}}" range-key="jobDetail" bindchange="jobChange" value="{{jobValue}}">
- <view class="inputSty" style="display:flex;align-items: center;justify-content: space-between;">
- <view>职业:{{jobList[jobValue].jobDetail}}</view>
- <image src="{{imgUrl+'/images/selectIcon.png'}}" class="selectIcon"></image>
- </view>
- </picker>
- </view> -->
- <view class="agreementGroup">
- <image class="agreeIcon" bindtap="agreementState" src="{{imgUrl+(isAgreement?'/images/agreeIcon.png?v=003':'/images/disagreeIcon.png?v=002')}}"></image>
- <view class="agreementText">
- <image style="width:261rpx;height:23rpx;" src="{{imgUrl+'/images/myCenterAgreenTip.png'}}"></image>
- <view bindtap="agreementControl">
- <image style="width:240rpx;height:23rpx;margin-left:3rpx;" src="{{imgUrl+'/images/myCenterAgreen.png'}}"></image>
- </view>
- </view>
- </view>
- <image class="newImages37" bindtap="submitMsg" src="{{imgUrl+'/newImages/37.png'}}"></image>
- </view>
- </view>
- <agreement bindmyevent="agreementControl" wx:if="{{agreement}}"></agreement>
- <tabBar></tabBar>
- </view>
|