瀏覽代碼

refactor(shop-information): 修改店铺信息表格中 countComputer 字段的标题

- 将 '店铺数量' 修改为 '电脑数量'
WanGxC 6 月之前
父節點
當前提交
ea997bed1e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/views/shop-information/useColumns.tsx

+ 1 - 1
src/views/shop-information/useColumns.tsx

@@ -714,7 +714,7 @@ export const shopInfoColumns = [
     }
   },
   {
-    field: 'countComputer', title: '店铺数量', minWidth: 'auto', align: 'center',
+    field: 'countComputer', title: '电脑数量', minWidth: 'auto', align: 'center',
     slots: {
       default({ row }: any) {
         return <span class={ 'font-medium' }>{ row.countComputer ? row.countComputer : '--' }</span>;