123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="main" style="height:{{infoHeight}}px;">
- <view class="one">
- <form bindsubmit="onSubmit" catchreset="onReset">
- <view class="content" style="display: none;">
- <view class="left">
- <text class="icon iconfont icon-shanghuguanli"></text>
- </view>
- <view class="right">
- <input name="merchant_id" value="{{form.merchant_id}}" disabled></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-shanghuguanli"></text>
- </view>
- <view class="right">
- <input name="merchant_name" value="{{form.merchant_name}}" disabled></input>
- </view>
- </view>
- <view class="content" style="display: none;">
- <view class="left">
- <text class="icon iconfont icon-xingming"></text>
- </view>
- <view class="right">
- <input name="user_id" value="{{form.user_id}}" disabled></input>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-xingming"></text>
- </view>
- <view class="right">
- <picker class="picker" bindchange="userChange" name="user_name" value="{{form.user_name}}" range="{{userList}}" range-key="name">
- <view>{{form.user_name||'选择办案人员'}}</view>
- </picker>
- </view>
- </view>
- <view class="content">
- <view class="left">
- <text class="icon iconfont icon-neirong2"></text>
- </view>
- <view class="right">
- <input name="content" value="{{form.content}}" placeholder='请输入纠错内容' placeholder-class="placeholder"></input>
- </view>
- </view>
- <view class="save">
- <button type="warn" size="mini" formType="reset">取消保存</button>
- <button type="primary" size="mini" formType="submit">提交保存</button>
- </view>
- </form>
- </view>
- </view>
- </mobile-main>
|