12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <view class="myqr" wx:if="{{myqr_show}}">
- <view style="text-align:center">
- <image class="cancel" src="/static/images/cancel.png" bindtouchstart="qrtouchstart"></image>
- <span style="font-size: 16px;color: #333;margin-top: 30rpx;font-weight:600">内容追加</span>
- </view>
- <view style="text-align:center;margin:50rpx auto">
- <textarea style="width:unset;border:2rpx solid #999;border-radius:10rpx;text-align: left;padding:10rpx;color:#333;"
- bindinput="bindRemark" value="{{remark}}" placeholder='请输入追加信息'></textarea>
- </view>
- <view class="btn" style="text-align: center;margin: 0 auto;" bindtap="goSaveContent">提交</view>
- </view>
- <view class="container" style="filter:brightness({{myqr_blur}})">
- <image class="top-img" src="/static/images/bk.png" mode="widthFix"></image>
- <view style="padding:20rpx">
- <view class="title">{{order.title}}</view>
- <view class="content">订购商品:{{order.itemName}}</view>
- <view class="content">订单日期:{{order.payTime}}</view>
- <view class="content">客户昵称:{{order.buyerNick}}</view>
- <view bindtap="makeCall" data-phone='{{order.buyerPhone}}' class="content" style="display: flex;">联系方式:{{order.buyerPhone}}
- <view style="display: flex;align-items: center;height: 40rpx;">
- <image style="width: 30rpx;height:32rpx;margin-top: 5rpx;margin-left: 5rpx;" src="/static/images/phone.png"></image>
- <view style="color:#666;margin-left: 10rpx;font-size: 32rpx;">联系</view>
- </view>
- </view>
- <view class="content">付款状态:{{order.statusDesc}}</view>
- </view>
- <view class="listview-container margin_bottom">
- <view class="action">
- <span>备注内容:</span>
- <!-- <span class="status">{{ticket.status}}</span> -->
- </view>
- <block wx:for="{{order.memos}}" wx:key="index">
- <view class="playlog-item">
- <view class="dotline">
- <!-- 竖线 -->
- <view class="line"></view>
- <!-- 圆点 -->
- <view class="dot"></view>
- <!-- 时间戳 -->
- </view>
- <view class="content">
- <text class="course">{{item.createTime}}</text>
- <text class="course">处理人:{{item.createUserName}}</text>
- <text class="chapter">内容:{{item.memo}}</text>
- </view>
- </view>
- </block>
- <view style="text-align: center;color: #666;" wx:if="{{order.memos==null||order.memos.length==0}}">无备注内容</view>
- </view>
- </view>
- <view class="footer">
- <button class="btn" bindtap="goAddContent">追加信息</button>
- </view>
|