Authored by 李奇

图片链接使用指令修改不完全对应

... ... @@ -35,9 +35,6 @@
uploadNum: ''
}
},
created(){
console.log(this.lackNum)
},
watch: {
uploadNum(value) {
this.$emit('lack-num-change', {
... ...
... ... @@ -181,7 +181,6 @@
this.page.current = page;
},
selectChange(rows){
console.log(rows)
this.table.list[0]._changeDisabled = true;
this.deliverRows = rows;
},
... ... @@ -259,7 +258,6 @@
this.$refs.stockOutModal.show(row);
},
uploadSuccess() {
console.log('uploadsuccess')
this.$Message.success('上传缺货成功');
this.productList(this.params());
this.page.current = 1;
... ...
... ... @@ -34,7 +34,7 @@
align: 'center',
render(row){
return `<div>
<img :src="$helper.sknImage({sku: ${row.productSku}})">
<img v-prod-img.sku="row.sku">
</div>`
}
},{
... ... @@ -45,7 +45,7 @@
title: '规格',
align: 'center',
render(row) {
return `${row.colorName}/${row.size}`
return `${row.colorNama || ''}/${row.size}`
}
},{
title: '订单号/已发数',
... ...