Browse Source

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

zeng.chen 1 month ago
parent
commit
0812e6d0ac
1 changed files with 1 additions and 1 deletions
  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) {
     handleEditClick(row, index) {
-      if (this.disabled || !this.canOrder) {
+      if (!this.canOrder) {
         console.log('编辑功能已禁用', this.disabled, this.canOrder);
         console.log('编辑功能已禁用', this.disabled, this.canOrder);
         return;
         return;
       }
       }