Ver Fonte

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

- 将 '店铺数量' 修改为 '电脑数量'
WanGxC há 6 meses atrás
pai
commit
ea997bed1e
1 ficheiros alterados com 1 adições e 1 exclusões
  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>;