Fixed: Fix the issue of the account list tree being draggable.

This commit is contained in:
zhaojisen
2025-05-14 15:03:31 +08:00
committed by ZhaoJiSen
parent d6c4a9d2f6
commit 8e2f79aea1
2 changed files with 7 additions and 2 deletions

View File

@@ -15,7 +15,7 @@
@click="handleClick(action)"
@command="handleDropdownCallback"
>
<span v-if="action.split">
<span v-if="action.split" :style="{ cursor: action.disabled ? 'not-allowed' : 'pointer' }">
{{ action.title }}
</span>
<el-button

View File

@@ -47,7 +47,12 @@ export default {
showMenu: false,
showAssets: true,
url: '/api/v1/accounts/accounts/',
countResource: 'account'
countResource: 'account',
edit: {
drag: {
isMove: false
}
}
}
}
}