niexiting
11 months ago
3 changed files with 74 additions and 7 deletions
@ -0,0 +1,55 @@ |
|||||
|
<template> |
||||
|
<view class="" style="background-color: #fff;"> |
||||
|
<view class="uni-flex uni-row space-between u-col-center" > |
||||
|
<view class="location_view" > |
||||
|
<text class="card_location"> 库位 </text> |
||||
|
<text> {{locationCode}}</text> |
||||
|
</view> |
||||
|
<view class="" v-if="recommendQty>0"> |
||||
|
<count :countType="'recommend_handle_no_pack'" |
||||
|
:recommendQty="recommendQty" |
||||
|
:handledQty="handledQty" |
||||
|
:uom="uom"></count> |
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
|
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
export default { |
||||
|
components: { |
||||
|
}, |
||||
|
data(){ |
||||
|
return { |
||||
|
} |
||||
|
}, |
||||
|
props: { |
||||
|
locationInfo:{ |
||||
|
type: Object, |
||||
|
default: {} |
||||
|
}, |
||||
|
locationCode:{ |
||||
|
type: String, |
||||
|
default: '' |
||||
|
}, |
||||
|
recommendQty:{ |
||||
|
type: Number, |
||||
|
default: 0 |
||||
|
}, |
||||
|
handledQty:{ |
||||
|
type: Number, |
||||
|
default: 0 |
||||
|
}, |
||||
|
uom:{ |
||||
|
type: String, |
||||
|
default: '' |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style> |
||||
|
</style> |
Loading…
Reference in new issue