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.
22 lines
1.3 KiB
22 lines
1.3 KiB
<!--pages/moment/create/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">发帖</view>
|
|
</cu-custom>
|
|
|
|
<view class="cu-list menu no-card sm-border">
|
|
<view class="cu-item" style="justify-content: start">
|
|
<view class="title text-gray">标题:</view>
|
|
<input id="title" placeholder-style="color:#aaa" maxlength="40" value="{{form.title}}" style="width:80%" placeholder="请输入标题,限定在40字以内" bindinput="bindInput"></input>
|
|
</view>
|
|
<view class="bg-white" style="padding:30rpx">
|
|
<textarea id="content" class="textarea" maxlength="400" cursor-spacing="40" show-confirm-bar="{{false}}" adjust-position="{{true}}" bindinput="bindInput" placeholder="点击输入内容,限定在400字以内" placeholder-style="color:#aaa" auto-height="true" value="{{form.content}}"></textarea>
|
|
</view>
|
|
<wux-uploader count="9" fileList="{{fileList}}" bindcustomevent="onImageChange"></wux-uploader>
|
|
<view class="bg-white" style="padding:30rpx">
|
|
<wux-tag wx:for="{{tagList}}" wx:key="index" color="{{item.check ? 'blue' : 'def'}}" data-index="{{index}}" bind:click="tagChange">{{item.name}}</wux-tag>
|
|
</view>
|
|
</view>
|
|
|
|
<view style="padding: 48rpx 48rpx">
|
|
<wux-button block type="positive" bind:click="submitForm">发布</wux-button>
|
|
</view>
|