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.
45 lines
2.0 KiB
Plaintext
45 lines
2.0 KiB
Plaintext
|
2 years ago
|
<form catchsubmit="formSubmit">
|
||
|
|
|
||
|
|
<view class="mt10 bgf">
|
||
|
|
<view class="weui-cells weui-cells_after-title" style="margin-top: 0;">
|
||
|
|
<view class="weui-cell">
|
||
|
|
<view class="weui-cell__bd f16 c6">项目名称</view>
|
||
|
|
<view class="weui-cell__ft weui-cell__ft_in-access f16 c3">
|
||
|
|
<input class="weui-input" value="{{record.projectName}}" name="projectName" placeholder="请输入代理名称" placeholder-class="weui-input__placeholder" />
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class="weui-cell">
|
||
|
|
<view class="weui-cell__bd f16 c6">签约类型</view>
|
||
|
|
<view class="weui-cell__ft weui-cell__ft_in-access f16 c3">
|
||
|
|
|
||
|
|
<radio-group bindchange="checkboxChange">
|
||
|
|
<label aria-role="" class="weui-wa-hotarea weui-agree dib" wx:for="{{checkboxItems}}" wx:for-item="item" wx:key wx:for-index="idx">
|
||
|
|
<radio aria-role="" value="{{item.value}}" checked="{{item.checked}}" class="weui-agree__checkbox-check" />
|
||
|
|
<view class="weui-agree__checkbox dib"></view>
|
||
|
|
<view class="weui-agree__text dib f16 ml4 c3">{{item.name}}</view>
|
||
|
|
</label>
|
||
|
|
</radio-group>
|
||
|
|
<!-- <checkbox-group bindchange="checkboxChange">
|
||
|
|
<label class="weui-cell weui-check__label" wx:for="{{checkboxItems}}" wx:key="value">
|
||
|
|
<view class="weui-cell__hd">
|
||
|
|
<checkbox
|
||
|
|
class="weui-check"
|
||
|
|
value="{{item.value}}"
|
||
|
|
checked="{{item.checked}}"
|
||
|
|
/>
|
||
|
|
<i class="weui-icon-checked"></i>
|
||
|
|
</view>
|
||
|
|
<view class="weui-cell__bd">
|
||
|
|
<view>{{item.name}}</view>
|
||
|
|
</view>
|
||
|
|
</label>
|
||
|
|
</checkbox-group> -->
|
||
|
|
|
||
|
|
</view>
|
||
|
|
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<button type='primary' class="loginOut sm-loginOut" formType="submit" style="font-weight:400;margin-top: 90px;">确定</button>
|
||
|
|
</form>
|