Browse Source

review + mall:商品管理

YunaiV 1 year ago
parent
commit
349a39e72f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/views/mall/product/spu/index.vue

+ 1 - 2
src/views/mall/product/spu/index.vue

@@ -55,7 +55,6 @@
           <Icon class="mr-5px" icon="ep:plus" />
           新增
         </el-button>
-        <!-- TODO @puhui999:增加一个【导出】操作 -->
         <el-button
           v-hasPermi="['product:spu:export']"
           :loading="exportLoading"
@@ -385,7 +384,7 @@ const handleExport = async () => {
     // 发起导出
     exportLoading.value = true
     const data = await ProductSpuApi.exportSpu(queryParams)
-    download.excel(data, '商品spu.xls')
+    download.excel(data, '商品列表.xls')
   } catch {
   } finally {
     exportLoading.value = false