...
|
...
|
@@ -91,19 +91,13 @@ export default { |
|
|
return {
|
|
|
columns: [
|
|
|
{
|
|
|
title: "skn",
|
|
|
width: 100,
|
|
|
render: (h, { row }) => {
|
|
|
return <span>{row.product.productSkn}</span>;
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
title: "商品",
|
|
|
width: 180,
|
|
|
render: (h, { row }) => {
|
|
|
return h(ProductImage, {
|
|
|
props: {
|
|
|
src: row.product.url
|
|
|
src: row.product.url,
|
|
|
skn: row.product.productSkn
|
|
|
}
|
|
|
});
|
|
|
}
|
...
|
...
|
|