|
@@ -80,7 +80,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="info" v-if="info && info.shelfOrder && state == 1">
|
|
|
|
|
|
+ <view class="info" v-if="info && info.shelfOrder && state == 1 && current == 0">
|
|
<view class="infoList">
|
|
<view class="infoList">
|
|
<view class="title">单据信息</view>
|
|
<view class="title">单据信息</view>
|
|
<view class="statu"></view>
|
|
<view class="statu"></view>
|
|
@@ -98,6 +98,24 @@
|
|
<text>{{info.shelfOrder.orderPersonName || '--'}}</text>
|
|
<text>{{info.shelfOrder.orderPersonName || '--'}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view class="info" v-if="info && info.shelfTempBill && state == 1 && current == 1">
|
|
|
|
+ <view class="infoList">
|
|
|
|
+ <view class="title">单据信息</view>
|
|
|
|
+ <view class="statu"></view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="infoList">
|
|
|
|
+ <text>订单编号</text>
|
|
|
|
+ <text>{{info.shelfTempBill.tempNo||'--'}}</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="infoList">
|
|
|
|
+ <text>下单时间</text>
|
|
|
|
+ <text>{{info.shelfTempBill.tempDate||'--'}}</text>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="infoList">
|
|
|
|
+ <text>下单人员</text>
|
|
|
|
+ <text>{{info.shelfTempBill.personName || '--'}}</text>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
@@ -127,6 +145,7 @@
|
|
onLoad(option) {
|
|
onLoad(option) {
|
|
this.info = option.data?JSON.parse(decodeURIComponent(option.data)):null
|
|
this.info = option.data?JSON.parse(decodeURIComponent(option.data)):null
|
|
this.state = option.state
|
|
this.state = option.state
|
|
|
|
+ console.log(this.info,'-------------')
|
|
if(option.state==1){
|
|
if(option.state==1){
|
|
this.statusText = '提交成功'
|
|
this.statusText = '提交成功'
|
|
this.statusIcon = 'checkmark-circle'
|
|
this.statusIcon = 'checkmark-circle'
|