feat: 优化移动端部分交互逻辑
This commit is contained in:
@@ -444,7 +444,7 @@ const handleQuickCommandExecute = (command: string) => {
|
|||||||
</template>
|
</template>
|
||||||
<!-- File Manager Button -->
|
<!-- File Manager Button -->
|
||||||
<button
|
<button
|
||||||
v-if="showPopupFileManagerBoolean"
|
v-if="showPopupFileManagerBoolean || props.isMobile"
|
||||||
@click="openFileManagerModal"
|
@click="openFileManagerModal"
|
||||||
class="flex-shrink-0 flex items-center justify-center w-8 h-8 border border-border/50 rounded-lg text-text-secondary transition-colors duration-200 hover:bg-border hover:text-foreground"
|
class="flex-shrink-0 flex items-center justify-center w-8 h-8 border border-border/50 rounded-lg text-text-secondary transition-colors duration-200 hover:bg-border hover:text-foreground"
|
||||||
>
|
>
|
||||||
@@ -452,7 +452,7 @@ const handleQuickCommandExecute = (command: string) => {
|
|||||||
</button>
|
</button>
|
||||||
<!-- File Editor Button -->
|
<!-- File Editor Button -->
|
||||||
<button
|
<button
|
||||||
v-if="showPopupFileEditorBoolean"
|
v-if="showPopupFileEditorBoolean || props.isMobile"
|
||||||
@click="openFileEditorModal"
|
@click="openFileEditorModal"
|
||||||
class="flex-shrink-0 flex items-center justify-center w-8 h-8 border border-border/50 rounded-lg text-text-secondary transition-colors duration-200 hover:bg-border hover:text-foreground"
|
class="flex-shrink-0 flex items-center justify-center w-8 h-8 border border-border/50 rounded-lg text-text-secondary transition-colors duration-200 hover:bg-border hover:text-foreground"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user