From 1bcd417c57474f815440d4e4ec03b6903b88f526 Mon Sep 17 00:00:00 2001 From: Huakk <1751826683@qq.com> Date: Mon, 29 Jul 2024 18:47:57 +0800 Subject: [PATCH] mod(custom): --- src/views/commodity/hot_list/index.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/views/commodity/hot_list/index.vue b/src/views/commodity/hot_list/index.vue index 8e555d0..1ecb258 100644 --- a/src/views/commodity/hot_list/index.vue +++ b/src/views/commodity/hot_list/index.vue @@ -347,6 +347,20 @@ const columns = ref([ ) }, }, + { + title: '商家名称', + slot: 'store_name', + align: 'center', + render: (row) => { + return h( + 'span', + {}, + { + default: () => row.Store.name, + } + ) + }, + }, { title: '商品封面', slot: 'cover',