1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/append/append.wxml-->
- <!-- title -->
- <view class="title">
- <!-- 标题 -->
- <view style="float: left; font-weight: 700; font-size: 45rpx; margin-top: 10rpx;">发布商品</view>
- <!-- 存草稿--缓存 -->
- <view style="float: left; margin-left: 300rpx; margin-top: 20rpx;">存草稿</view>
- <!-- 发布 -->
- <view style="float: right;">
- <van-button round type="info">发布</van-button>
- </view>
- </view>
- <!-- 商品描述模块 -->
- <view class="discribe">
- <input type="text" placeholder="描述一下商品..."/>
- <view class="upLoad">
- <van-uploader file-list="{{ fileList }}" bind:after-read="afterRead"/>
- </view>
- </view>
- <!-- 商品导航栏 -->
- <view class="navigation">
- <view class="nav nav_price">
- <text style="float: left; font-weight: 600;">价格</text>
- <view style="float: left; margin-left: 540rpx; margin-top: -50rpx; position: relative;">
- <input type="number" placeholder="¥0.00" bindinput="numInput"/>
- </view>
- <van-icon name="arrow" />
- </view>
- <view class="nav" bind:tap="moveLocation">
- <text style="float: left; font-weight: 600; margin-top: 8rpx;">交易地点</text>
- <van-icon name="map-marked" size="50rpx" style="float: right; margin-top: 10rpx; margin-right: 5rpx;"/>
- </view>
- </view>
|