Commit 0d319769 authored by dragondean@qq.com's avatar dragondean@qq.com

小bug

parent 7e1fd304
...@@ -31,7 +31,7 @@ export default { ...@@ -31,7 +31,7 @@ export default {
return JSON.parse(this.info.details) return JSON.parse(this.info.details)
}, },
pictures(){ pictures(){
if(!this.detail) return [] if(!this.detail || !this.detail.voucher) return []
return this.detail.voucher.split(',').filter(item => !!item) return this.detail.voucher.split(',').filter(item => !!item)
} }
}, },
......
...@@ -246,7 +246,11 @@ ...@@ -246,7 +246,11 @@
</template> </template>
<!-- 合单日志,提货日志 --> <!-- 合单日志,提货日志 -->
<template v-if="(scope.row.status > 2)"> <template v-if="(
scope.row.status > 2 &&
exclude(scope.row.status + '-' + scope.row.shipmentState, ['17-391', '18-392', '15-332', '15-330']) &&
exclude(scope.row.status + '-' + scope.row.inWarehouseState, ['16-202'])
)">
<el-dropdown-item @click.native="showMergedLogOrderNo=scope.row.orderNo" >{{$t('合单日志')}}</el-dropdown-item> <el-dropdown-item @click.native="showMergedLogOrderNo=scope.row.orderNo" >{{$t('合单日志')}}</el-dropdown-item>
<el-dropdown-item @click.native="showPickupLogOrderNo=scope.row.orderNo" >{{$t('提货日志')}}</el-dropdown-item> <el-dropdown-item @click.native="showPickupLogOrderNo=scope.row.orderNo" >{{$t('提货日志')}}</el-dropdown-item>
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment