1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back" bind:tabPath="tabPath">
- <view slot="info" class="container main">
- <view class="one">
- <form catchsubmit="onSubmit">
- <view class="content">
- <view class="label">话题名称</view>
- <view class="value">
- <view class="value">
- <textarea name="title" value="{{form.title}}" auto-height maxlength="-1" placeholder="请输入话题名称" />
- </view>
- </view>
- </view>
- <view class="content">
- <view class="label">信息简介:</view>
- <view class="value">
- <view class="value">
- <textarea name="brief" value="{{form.brief}}" auto-height maxlength="-1" placeholder="请输入信息简介" />
- </view>
- </view>
- </view>
- <view class="content">
- <view class="label">信息来源:</view>
- <view class="value">
- <view class="value">
- <textarea name="origin" value="{{form.origin}}" auto-height maxlength="-1" placeholder="请输入信息来源" />
- </view>
- </view>
- </view>
- <view class="content1">
- <view class="label">信息内容:</view>
- <view class="value">
- <hg-editor placeholder="请输入信息内容" name="{{form.content}}" bind:ready="onEditorReady" bind:input="inputChange"> </hg-editor>
- </view>
- </view>
- <view class="content">
- <view class="label">是否公开:</view>
- <picker name="is_show" bindchange="is_showChange" value="{{form.is_show}}" range-key='label' range="{{is_showList}}">
- <view class="input">{{form.is_show=='0'?'公开':form.is_show=='1'?'不公开':'选择是否公开'}}</view>
- </picker>
- </view>
- <view class="btn">
- <button type="primary" size="mini" formType="submit">提交保存</button>
- </view>
- </form>
- </view>
- </view>
- </mobile-main>
|