You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.5 KiB
83 lines
3.5 KiB
<view class="swiper-tab" wx:if="{{tab.length>1}}">
|
|
<block wx:for='{{tab}}' wx:key='item'>
|
|
<view class="{{currentTab==index ? 'on' : ''}}" data-current="{{index}}" bindtap="swichNav">{{item}}</view>
|
|
</block>
|
|
</view>
|
|
<view>
|
|
<!-- 基本信息 -->
|
|
<view class='allOrder' wx:if="{{currentTab =='0'}}">
|
|
<baseInfo basic="{{basic}}" wx:if="{{basic.id}}"></baseInfo>
|
|
</view>
|
|
<!--过程信息-->
|
|
<view class='allOrder' wx:if="{{currentTab =='1'}}">
|
|
<view class="logistics-detail">
|
|
<view class="node1" wx:for='{{basic.guochengList}}' wx:key='index'>
|
|
<view class="time">
|
|
<view>{{item.c}}</view>
|
|
<view>{{item.d}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 物料信息 -->
|
|
<view wx:if="{{currentTab == '3'}}">
|
|
<!-- 物料使用 -->
|
|
<view class="content-row">
|
|
<view class="title-big">
|
|
<text class="ml-20">物料使用</text>
|
|
</view>
|
|
<view class="list" wx:for="{{useFitting}}" wx:key="index" data-type="1" data-id="{{item.id}}" bind:tap="getDetail">
|
|
<view>
|
|
<view class="left-tit">物料名称</view>
|
|
<view class="value">{{item.materialName}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="left-tit">物料规格</view>
|
|
<view class="value">{{item.materialSpec}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="left-tit">使用数量</view>
|
|
<view class="value" style="justify-content: space-between;">
|
|
<text>{{item.amount}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="right-rj"></view>
|
|
</view>
|
|
</view>
|
|
<!-- 物料申请 -->
|
|
<view class="content-row">
|
|
<view class="title-big">
|
|
<text class="ml-20">物料申请</text>
|
|
</view>
|
|
<view class="list" wx:for="{{applyFitting}}" wx:key="index" data-type="2" data-id="{{item.id}}" bind:tap="getDetail">
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '0' || item.status == '1' || item.status == '2'}}">待审核</view>
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '3'}}">待平台出库</view>
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '4'}}">运维商待收件</view>
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '5'}}">已完成</view>
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '6'}}">申请已取消</view>
|
|
<view class="status_text" style="color: #FF0000;" wx:if="{{item.status == '7'}}">审核驳回</view>
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '8'}}">待出库</view>
|
|
<view class="status_text" style="color: #f9850c;" wx:if="{{item.status == '9'}}">待领取</view>
|
|
<view>
|
|
<view class="left-tit">物料名称</view>
|
|
<view class="value">{{item.materialName}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="left-tit">物料规格</view>
|
|
<view class="value">{{item.materialSpec}}</view>
|
|
</view>
|
|
<view>
|
|
<view class="left-tit">申请数量</view>
|
|
<view class="value" style="justify-content: space-between;">
|
|
<text>{{item.amount}}</text>
|
|
</view>
|
|
</view>
|
|
<view class="right-rj"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!--过程反馈-->
|
|
<view class='allOrder' wx:if="{{currentTab =='2'}}">
|
|
<feedBackRecord tabType="{{currentTab}}" basic="{{basic}}" wx:if="{{basic.id}}"></feedBackRecord>
|
|
</view>
|
|
</view> |