소스 검색

feature:修改编辑排序不受disabled影响

zeng.chen 1 개월 전
부모
커밋
0812e6d0ac
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/views/music/album/detail.vue

+ 1 - 1
src/views/music/album/detail.vue

@@ -338,7 +338,7 @@ export default {
     },
     // 点击编辑图标显示输入框
     handleEditClick(row, index) {
-      if (this.disabled || !this.canOrder) {
+      if (!this.canOrder) {
         console.log('编辑功能已禁用', this.disabled, this.canOrder);
         return;
       }