Procházet zdrojové kódy

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

zeng.chen před 1 měsícem
rodič
revize
0812e6d0ac
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;
       }