Commit 86e2888c by linjinhong

Merge remote-tracking branch 'origin/dev'

parents f4ff595c a918d605
...@@ -405,6 +405,8 @@ const renderItemBox = (bool: boolean) => { ...@@ -405,6 +405,8 @@ const renderItemBox = (bool: boolean) => {
} }
} }
if (currentCode) { if (currentCode) {
const parts = currentCode.split('_')
currentCode = parts.length > 0 ? parts[1] : parts[0]
for (const product of productList) { for (const product of productList) {
if (product.podJomallUsNo === currentCode) { if (product.podJomallUsNo === currentCode) {
coverImage.value = product.variantImage || '' coverImage.value = product.variantImage || ''
......
...@@ -377,7 +377,9 @@ ...@@ -377,7 +377,9 @@
</ElButton> </ElButton>
</span> </span>
<span v-if="status === 'WAIT_SHIPMENT'" class="item"> <span v-if="status === 'WAIT_SHIPMENT'" class="item">
<ElButton type="warning" @click="printPodOrder"> POD打单 </ElButton> <ElButton type="warning" @click="printPodOrder">
播种墙配货
</ElButton>
</span> </span>
<span v-if="status === 'CREATE_LOGISTICS'" class="item"> <span v-if="status === 'CREATE_LOGISTICS'" class="item">
<ElButton type="warning" @click="logisticsToPicking"> <ElButton type="warning" @click="logisticsToPicking">
......
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