소스 검색

feat:新生添加禁用

DESKTOP-USV654P\pc 4 달 전
부모
커밋
2f4b32666d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/views/educational/basicInformation/index.vue

+ 2 - 0
src/views/educational/basicInformation/index.vue

@@ -137,11 +137,13 @@
             :actions="[
               {
                 label: '编辑',
+                disabled: record.status === 1,
                 onClick: handleEdit.bind(null, record, true),
               },
               {
                 label: '删除',
                 color: 'error',
+                disabled: record.status === 1,
                 onClick: handleDelete.bind(null, record),
               },
             ]"