Commit 870721fc by linjinhong

fix:修改问题

parent 8eff2f62
...@@ -168,6 +168,19 @@ const goodsColumns = computed(() => { ...@@ -168,6 +168,19 @@ const goodsColumns = computed(() => {
align: 'center', align: 'center',
showOverflowTooltip: true, showOverflowTooltip: true,
}, },
{
label: '数量',
prop: 'num',
width: 100,
align: 'center',
},
{
label: '状态',
prop: 'subStatus',
width: 130,
align: 'center',
showOverflowTooltip: true,
},
{ {
label: '生产单号', label: '生产单号',
...@@ -246,12 +259,6 @@ const goodsColumns = computed(() => { ...@@ -246,12 +259,6 @@ const goodsColumns = computed(() => {
}, },
{ {
label: '数量',
prop: 'num',
width: 100,
align: 'center',
},
{
label: '未生产数量', label: '未生产数量',
prop: 'notPassNum', prop: 'notPassNum',
width: 100, width: 100,
......
...@@ -421,7 +421,7 @@ const renderItemBox = (bool: boolean) => { ...@@ -421,7 +421,7 @@ const renderItemBox = (bool: boolean) => {
return prev + (product.count || 0) return prev + (product.count || 0)
}, 0) }, 0)
data.pickingNumber = pickingNumber data.pickingNumber = pickingNumber
coverImage.value = productList[0].previewImgs?.[0]?.url || '' // coverImage.value = productList[0].previewImgs?.[0]?.url || ''
for (const product of productList) { for (const product of productList) {
if (product.count === product.purchaseNumber) { if (product.count === product.purchaseNumber) {
product.power = true product.power = true
......
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