|
|
|
@ -287,6 +287,9 @@
|
|
|
|
|
<!-- >查看详情--> |
|
|
|
|
<!-- </el-text>--> |
|
|
|
|
<!-- </template>--> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<el-text size="small" @click="handleInventoryQRCode(slotProps.scope.row)">查看二维码</el-text> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-tab-pane> |
|
|
|
|
</el-tabs> |
|
|
|
@ -618,6 +621,7 @@ import {
|
|
|
|
|
getinventorydetail, |
|
|
|
|
} from '@/api/distribution/distributionDeliveryList'; |
|
|
|
|
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; |
|
|
|
|
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList'; |
|
|
|
|
import { update as updatesign, getOneclickq } from '@/api/distribution/distributionSignfor'; |
|
|
|
|
import option from '@/option/basic/basicPdarecords'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
@ -629,6 +633,7 @@ import { getToken } from '@/utils/auth';
|
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
html:'', |
|
|
|
|
dialogImageUrl: '', //图片放大地址 |
|
|
|
|
dialogVisible: false, //图片状态 |
|
|
|
|
dialogImageUrlA: '', |
|
|
|
@ -1591,8 +1596,18 @@ export default {
|
|
|
|
|
], |
|
|
|
|
inventoryoptioncolumn: [ |
|
|
|
|
{ |
|
|
|
|
prop: 'sku', |
|
|
|
|
label: 'SKU', |
|
|
|
|
prop: 'incomingBatch', |
|
|
|
|
label: '入库批次号', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, { |
|
|
|
|
prop: 'orderCode', |
|
|
|
|
label: '订单自编码', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
@ -1602,8 +1617,30 @@ export default {
|
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'descriptionGoods', |
|
|
|
|
label: '物料名称', |
|
|
|
|
prop: 'serviceNumber', |
|
|
|
|
label: '服务号', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'marketName', |
|
|
|
|
label: '商场名称', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'brandName', |
|
|
|
|
label: '品牌', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
@ -1623,6 +1660,17 @@ export default {
|
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'descriptionGoods', |
|
|
|
|
label: '物料名称', |
|
|
|
|
type: 2, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'cargoNorms', |
|
|
|
|
label: '物料规格', |
|
|
|
@ -2815,6 +2863,22 @@ export default {
|
|
|
|
|
timesc() {}, |
|
|
|
|
btnsc() {}, |
|
|
|
|
selectsc() {}, |
|
|
|
|
|
|
|
|
|
handleInventoryQRCode(row){ |
|
|
|
|
this.materialQRCode = row; |
|
|
|
|
console.log('row------------>',row); |
|
|
|
|
// let qr = { |
|
|
|
|
// ids: row.id, |
|
|
|
|
// }; |
|
|
|
|
this.html = ''; |
|
|
|
|
showInventoryPackgeCode(row.reservationId,row.id).then(res => { |
|
|
|
|
// this.orderPackageCode = res.data |
|
|
|
|
console.log(res.data); |
|
|
|
|
this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml); |
|
|
|
|
}); |
|
|
|
|
this.dialogVisibleF = true; |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
/** |
|
|
|
|
* 查看二维码 |
|
|
|
|
* @param {*} row |
|
|
|
|