Browse Source

数组传参

hella_online_20240821
wangyufei 1 month ago
parent
commit
e1f19fae43
  1. 6
      src/views/wms/inventoryManage/package/index.vue

6
src/views/wms/inventoryManage/package/index.vue

@ -71,7 +71,7 @@ import * as defaultButtons from '@/utils/disposition/defaultButtons'
import { getJmreportBaseUrl } from '@/utils/systemParam'
import * as EquipmentInspectionRecordMainApi from "@/api/eam/equipmentInspectionRecordMain";
import { formatDate } from '@/utils/formatTime'
//
defineOptions({ name: 'package' })
const message = useMessage() //
@ -193,7 +193,7 @@ const handleSelectionPoint = async ()=>{
text: 'loading...',
background: 'rgba(0, 0, 0, 0.7)'
})
PackageApi.batchPrintingLable(rows.join(",")).then(res => {
PackageApi.batchPrintingLable(rows).then(res => {
console.log('批量打印res',res);
getLoading?.close()
if(res.zzLabel){
@ -359,7 +359,7 @@ const formsSuccess = async (formType,data) => {
const labelType = ref('') //
const handlePoint = async (row) => {
console.log(row.packingNumber,445555555555555);
PackageApi.batchPrintingLable(row.number).then(res => {
PackageApi.batchPrintingLable([row.number]).then(res => {
console.log('批量打印res',res);
if(res.zzLabel){
//

Loading…
Cancel
Save