You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.3 KiB
Plaintext

9 months ago
<view class='cy-content-list'>
<view class='cy-list-item flex-display'>
<view class='cy-item-title'>联系人</view>
<input class='cy-item-input' data-index='1' bindinput="cy_getInputContent" placeholder='请输入联系人' value='{{name}}'></input>
</view>
<view class='cy-list-item flex-display'>
<view class='cy-item-title content-center'></view>
<radio-group class="radio-group cy-item-input down-center" bindchange="radioChange">
<label class="radio line-sex" style='{{sex==1?"color:#004585":""}}'>
<radio value="1" color='#004585' checked="{{man}}" />先生
</label>
<label class="radio line-sex" style='{{sex==0?"color:#004585":""}}'>
<radio value="0" color='#004585' />女士
</label>
</radio-group>
</view>
<view class='cy-list-item flex-display'>
<view class='cy-item-title'>手机</view>
<input class='cy-item-input' data-index='2' bindinput="cy_getInputContent" style='width:300rpx;' placeholder='请输入手机' value='{{iphone}}'></input>
<button open-type="getPhoneNumber" bindgetphonenumber="cy_getPhoneNumber" class="cy-button">点击获取</button>
</view>
<view class='cy-list-item down-center'>
<view class='cy-item-title down-center'>
<text>地址</text>
<view class='content-center' style='height:100%;'>
<image style='width:35rpx;height:36rpx; margin-left:8rpx;' src='../../../images/icon-location.png'></image>
</view>
</view>
<view style='min-height:100; height:auto; width:300rpx; font-size:12px;' class='cy-item-input content-center'>{{address}}</view>
<button bindtap='cy_selectLocation' style='margin-top: 0rpx;' class="cy-button">点击选择</button>
</view>
<view class='cy-list-item flex-display'>
<view class='cy-item-title'>详细地址</view>
<input class='cy-item-input' data-index='3' bindinput="cy_getInputContent" placeholder='详细地址6号楼6层666室' value='{{detailAddress}}'></input>
</view>
<view class='cy-list-item flex-display' style='position:relative;'>
<text class='cy-item-title'>默认地址</text>
<switch class='cy-switch wx-switch-input' checked="{{isSwitch}}" color='#004585;' bindchange="cy_switchChange" />
</view>
</view>
<view class='cy-save' bindtap='cy_save'>
<view class='content-center'>保存</view>
</view>