|
@@ -12,7 +12,7 @@
|
|
<view class="button-group">
|
|
<view class="button-group">
|
|
<button :hover-stop-propagation="true" @click="toScan" v-if="state == 1&&partList.length" class="back" size="mini">扫码取货</button>
|
|
<button :hover-stop-propagation="true" @click="toScan" v-if="state == 1&&partList.length" class="back" size="mini">扫码取货</button>
|
|
<button :hover-stop-propagation="true" :loading="loading" @click="onceQh" v-if="state == 1&&partList.length" class="action" size="mini">一键取货</button>
|
|
<button :hover-stop-propagation="true" :loading="loading" @click="onceQh" v-if="state == 1&&partList.length" class="action" size="mini">一键取货</button>
|
|
- <button :hover-stop-propagation="true" @click="toSettle" v-if="state == 0" class="actionFail" size="mini">去结算</button>
|
|
|
|
|
|
+ <!-- <button :hover-stop-propagation="true" @click="toSettle" v-if="state == 0" class="actionFail" size="mini">去结算</button> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -71,7 +71,10 @@
|
|
</view>
|
|
</view>
|
|
<view class="item-head">
|
|
<view class="item-head">
|
|
<text>{{item.productCode}}</text>
|
|
<text>{{item.productCode}}</text>
|
|
- <text class="item-no">{{item.shelfPlaceCode}}</text>
|
|
|
|
|
|
+ <span class="item-no" v-if="item.billState == 'WAIT_AUDIT'">待审核</span>
|
|
|
|
+ <span class="item-no" v-if="item.billState == 'AUDIT_REJECT'">审核不通过</span>
|
|
|
|
+ <span class="item-no" v-if="item.billState == 'WAIT_OUT_WAREHOUSE'">待收货</span>
|
|
|
|
+ <span class="item-no" v-if="item.billState == 'FINISH'">已完结</span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -103,7 +106,6 @@
|
|
import uniIcons from "@/components/uni-icons/uni-icons.vue"
|
|
import uniIcons from "@/components/uni-icons/uni-icons.vue"
|
|
import moment from 'moment'
|
|
import moment from 'moment'
|
|
import { findBySnShelfOrder, takeGoods } from '@/api/shelf'
|
|
import { findBySnShelfOrder, takeGoods } from '@/api/shelf'
|
|
- import { clzConfirm } from '@/libs/tools.js'
|
|
|
|
export default {
|
|
export default {
|
|
name: 'choosePartResult',
|
|
name: 'choosePartResult',
|
|
components: {
|
|
components: {
|