Commit 608d24ed authored by 李驰骋's avatar 李驰骋

标签打印BUG修复

parent e58230df
......@@ -359,14 +359,11 @@ export default {
packagePrintRecordInfo(forms).then((response) => {
console.log(response, 'response')
if (response.code === 200) {
// const valueList = response.data.packagePrintList.map(item => {
// return {
// packagePrint: item
// }
// })
valueList = {
packagePrint: response.data
}
const valueList = response.data.map(item => {
return {
packagePrint: item
}
})
postBatchPrintPdf(
this.$refs.templatePrintRef.currentData.name,
valueList
......
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