82 lines
3.3 KiB
Plaintext
82 lines
3.3 KiB
Plaintext
<view class="container">
|
|
<!-- 新装工单 -->
|
|
<block>
|
|
<!-- 产品信息 -->
|
|
<view class="section">
|
|
<view class="section-title">工单信息</view>
|
|
<view class="info-item">
|
|
<text class="label">产品名称:</text>
|
|
<text class="value">{{newOrderDesc.product_name || '暂无数据'}}</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">约定时间:</text>
|
|
<text class="value">{{newOrderDesc.appointment_time || '暂无数据'}}</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">客户姓名:</text>
|
|
<text class="value">{{newOrderDesc.customer_name || '暂无数据'}}</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">客户电话:</text>
|
|
<text class="value">{{newOrderDesc.customer_phone || '暂无数据'}}</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">客户地址:</text>
|
|
<text class="value">{{newOrderDesc.address || '暂无数据'}}</text>
|
|
</view>
|
|
|
|
<view class="info-item" wx:if="{{newOrderDesc.repairman_name}}">
|
|
<text class="label">维修师傅:</text>
|
|
<text class="value">{{newOrderDesc.repairman_name}}</text>
|
|
</view>
|
|
|
|
<view class="info-item" wx:if="{{newOrderDesc.repairman_phone}}">
|
|
<text class="label">维修师傅电话:</text>
|
|
<text class="value">{{newOrderDesc.repairman_phone}}</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">客户地址:</text>
|
|
<text class="value">{{newOrderDesc.address || '暂无数据'}}</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">订单状态:</text>
|
|
<text class="value " wx:if="{{newOrderDesc.status == '1'}}">待分配</text>
|
|
<text class="value " wx:if="{{newOrderDesc.status == '2'}}">待分配</text>
|
|
<text class="value " wx:if="{{newOrderDesc.status == '3'}}">已安装</text>
|
|
</view>
|
|
|
|
<view class="info-item">
|
|
<text class="label">客服电话:</text>
|
|
<view class="value" bind:tap="call">
|
|
{{newOrderDesc.cus_service_phone}}
|
|
<van-icon name="phone-o" color="#8bc34a" />
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
<view class="info-item" wx:if="{{newOrderDesc.qrcode}}">
|
|
<text class="label">客服二维码:</text>
|
|
</view>
|
|
<view class="product-image" wx:if="{{newOrderDesc.qrcode}}">
|
|
<image src="{{newOrderDesc.qrcode2}}" mode="aspectFit" />
|
|
</view>
|
|
|
|
|
|
<view class="info-item" wx:if="{{newOrderDesc.product_icon}}">
|
|
<text class="label">产品图片:</text>
|
|
</view>
|
|
<view class="product-image" wx:if="{{newOrderDesc.product_icon}}">
|
|
<image src="{{newOrderDesc.product_icon2}}" mode="aspectFit" />
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
|
|
<clientFooter /> |