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.
39 lines
1.3 KiB
39 lines
1.3 KiB
<cu-custom bgColor="bg-blue" isCustom="{{true}}">
|
|
<view slot="backText">返回</view>
|
|
<view slot="content">子账号管理</view>
|
|
</cu-custom>
|
|
|
|
<form bindsubmit="formSubmit" bindreset="formReset">
|
|
|
|
<view class="cu-bar bg-white solid-bottom ">
|
|
<view class='action'>
|
|
<text class='cuIcon-titles text-orange '></text> 请填写子账号信息
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-form-group">
|
|
<view class="title">用户名</view>
|
|
<input name="username" maxlength="20" value="{{data.username}}" placeholder="请输入子账号登录用户名"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group">
|
|
<view class="title">密 码</view>
|
|
<input type="password" name="password" value="***123***" placeholder="请输入登录密码"></input>
|
|
</view>
|
|
|
|
<view class="cu-form-group">
|
|
<view class="title">状 态 </view>
|
|
<radio-group name="status" class="radio-group">
|
|
<label class="radio" wx:for="{{status}}">
|
|
<radio value="{{index}}" checked="{{data.status==index?true:false }}" /> {{item}}
|
|
</label>
|
|
</radio-group>
|
|
</view>
|
|
|
|
<input name="id" style="display:none;" value="{{id}}"></input>
|
|
|
|
<view class="box text-center">
|
|
<button class="cu-btn bg-blue margin-tb-sm lg" form-type="submit">立即保存
|
|
</button>
|
|
</view>
|
|
</form>
|