append.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/append/append.wxml-->
  2. <!-- title -->
  3. <view class="title">
  4. <!-- 标题 -->
  5. <view style="float: left; font-weight: 700; font-size: 45rpx; margin-top: 10rpx;">发布商品</view>
  6. <!-- 存草稿--缓存 -->
  7. <view style="float: left; margin-left: 300rpx; margin-top: 20rpx;">存草稿</view>
  8. <!-- 发布 -->
  9. <view style="float: right;">
  10. <van-button round type="info">发布</van-button>
  11. </view>
  12. </view>
  13. <!-- 商品描述模块 -->
  14. <view class="discribe">
  15. <input type="text" placeholder="描述一下商品..."/>
  16. <view class="upLoad">
  17. <van-uploader file-list="{{ fileList }}" bind:after-read="afterRead"/>
  18. </view>
  19. </view>
  20. <!-- 商品导航栏 -->
  21. <view class="navigation">
  22. <view class="nav nav_price">
  23. <text style="float: left; font-weight: 600;">价格</text>
  24. <view style="float: left; margin-left: 540rpx; margin-top: -50rpx; position: relative;">
  25. <input type="number" placeholder="¥0.00" bindinput="numInput"/>
  26. </view>
  27. <van-icon name="arrow" />
  28. </view>
  29. <view class="nav" bind:tap="moveLocation">
  30. <text style="float: left; font-weight: 600; margin-top: 8rpx;">交易地点</text>
  31. <van-icon name="map-marked" size="50rpx" style="float: right; margin-top: 10rpx; margin-right: 5rpx;"/>
  32. </view>
  33. </view>