hmOrderDetail.wxml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <view class="myqr" wx:if="{{myqr_show}}">
  2. <view style="text-align:center">
  3. <image class="cancel" src="/static/images/cancel.png" bindtouchstart="qrtouchstart"></image>
  4. <span style="font-size: 16px;color: #333;margin-top: 30rpx;font-weight:600">内容追加</span>
  5. </view>
  6. <view style="text-align:center;margin:50rpx auto">
  7. <textarea style="width:unset;border:2rpx solid #999;border-radius:10rpx;text-align: left;padding:10rpx;color:#333;"
  8. bindinput="bindRemark" value="{{remark}}" placeholder='请输入追加信息'></textarea>
  9. </view>
  10. <view class="btn" style="text-align: center;margin: 0 auto;" bindtap="goSaveContent">提交</view>
  11. </view>
  12. <view class="container" style="filter:brightness({{myqr_blur}})">
  13. <image class="top-img" src="/static/images/bk.png" mode="widthFix"></image>
  14. <view style="padding:20rpx">
  15. <view class="title">{{order.title}}</view>
  16. <view class="content">订购商品:{{order.itemName}}</view>
  17. <view class="content">订单日期:{{order.payTime}}</view>
  18. <view class="content">客户昵称:{{order.buyerNick}}</view>
  19. <view bindtap="makeCall" data-phone='{{order.buyerPhone}}' class="content" style="display: flex;">联系方式:{{order.buyerPhone}}
  20. <view style="display: flex;align-items: center;height: 40rpx;">
  21. <image style="width: 30rpx;height:32rpx;margin-top: 5rpx;margin-left: 5rpx;" src="/static/images/phone.png"></image>
  22. <view style="color:#666;margin-left: 10rpx;font-size: 32rpx;">联系</view>
  23. </view>
  24. </view>
  25. <view class="content">付款状态:{{order.statusDesc}}</view>
  26. </view>
  27. <view class="listview-container margin_bottom">
  28. <view class="action">
  29. <span>备注内容:</span>
  30. <!-- <span class="status">{{ticket.status}}</span> -->
  31. </view>
  32. <block wx:for="{{order.memos}}" wx:key="index">
  33. <view class="playlog-item">
  34. <view class="dotline">
  35. <!-- 竖线 -->
  36. <view class="line"></view>
  37. <!-- 圆点 -->
  38. <view class="dot"></view>
  39. <!-- 时间戳 -->
  40. </view>
  41. <view class="content">
  42. <text class="course">{{item.createTime}}</text>
  43. <text class="course">处理人:{{item.createUserName}}</text>
  44. <text class="chapter">内容:{{item.memo}}</text>
  45. </view>
  46. </view>
  47. </block>
  48. <view style="text-align: center;color: #666;" wx:if="{{order.memos==null||order.memos.length==0}}">无备注内容</view>
  49. </view>
  50. </view>
  51. <view class="footer">
  52. <button class="btn" bindtap="goAddContent">追加信息</button>
  53. </view>