|
@@ -136,7 +136,7 @@
|
|
<!-- 导出提示框 -->
|
|
<!-- 导出提示框 -->
|
|
<reportModal :visible="showExport" @close="showExport=false"></reportModal>
|
|
<reportModal :visible="showExport" @close="showExport=false"></reportModal>
|
|
<!-- 审核进度弹窗 -->
|
|
<!-- 审核进度弹窗 -->
|
|
- <reviewProgressModal v-drag :itemSn="itemSn" :openModal="openReviewModal" @close="openReviewModal=false"></reviewProgressModal>
|
|
|
|
|
|
+ <reviewProgressModal v-drag :itemSn="itemSn" :auditTime="auditTime" :openModal="openReviewModal" @close="openReviewModal=false"></reviewProgressModal>
|
|
</a-card>
|
|
</a-card>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -206,7 +206,8 @@ export default {
|
|
return data
|
|
return data
|
|
})
|
|
})
|
|
},
|
|
},
|
|
- itemSn: null // 采购退货SN
|
|
|
|
|
|
+ itemSn: null, // 采购退货SN
|
|
|
|
+ auditTime: null// 审核时间
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -241,6 +242,7 @@ export default {
|
|
// 审核进度
|
|
// 审核进度
|
|
handleSH (row) {
|
|
handleSH (row) {
|
|
this.itemSn = row.sparePartsReturnSn
|
|
this.itemSn = row.sparePartsReturnSn
|
|
|
|
+ this.auditTime = row.submitDate
|
|
this.openReviewModal = true
|
|
this.openReviewModal = true
|
|
},
|
|
},
|
|
// 再次提交
|
|
// 再次提交
|