Browse Source

refactor(OcrDeviceView):移除表格中的编辑按钮

- 删除了 ElTableColumn 中的操作列,该列包含一个编辑按钮- 此修改简化了表格结构,可能为后续的特性开发做准备
wui 9 tháng trước cách đây
mục cha
commit
0eff70a3dc
1 tập tin đã thay đổi với 0 bổ sung5 xóa
  1. 0 5
      src/views/OcrDeviceView.vue

+ 0 - 5
src/views/OcrDeviceView.vue

@@ -25,11 +25,6 @@
         <ElTableColumn prop="total" label="记录数量" align="center" />
         <ElTableColumn prop="scanned" label="扫描数量" align="center" />
         <ElTableColumn prop="createdAt" label="创建时间" :formatter="timeFormatter" width="150" align="center" />
-        <ElTableColumn label="操作" align="center" width="120">
-            <template #default="{ row }">
-                <ElButton @click="onEdit(row)">编辑</ElButton>
-            </template>
-        </ElTableColumn>
     </PagingTable>
 </template>
 <script setup>