fix: lint

This commit is contained in:
xingyu4j
2025-11-18 11:52:27 +08:00
parent ec69318078
commit 40674bf1ad
5 changed files with 32 additions and 5 deletions

View File

@@ -71,12 +71,15 @@ function toggleExpanded() {
.scrollbar-thin::-webkit-scrollbar {
width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
@apply rounded-sm bg-gray-400/40;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
@apply bg-gray-400/60;
}

View File

@@ -66,7 +66,8 @@ const [Modal, modalApi] = useVbenModal({
}
modalApi.lock();
// 提交表单
const data = (await formApi.getValues()) as CrmPermissionApi.BusinessTransferReqVO;
const data =
(await formApi.getValues()) as CrmPermissionApi.BusinessTransferReqVO;
try {
switch (bizType.value) {
case BizTypeEnum.CRM_BUSINESS: {

View File

@@ -71,12 +71,15 @@ function toggleExpanded() {
.scrollbar-thin::-webkit-scrollbar {
width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
background: transparent;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
@apply rounded-sm bg-gray-400/40;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
@apply bg-gray-400/60;
}

View File

@@ -8,7 +8,13 @@ import { useRouter } from 'vue-router';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart } from '@vben/utils';
import { ElButton, ElLoading, ElMessage, ElTabPane, ElTabs } from 'element-plus';
import {
ElButton,
ElLoading,
ElMessage,
ElTabPane,
ElTabs,
} from 'element-plus';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
@@ -160,7 +166,11 @@ const [Grid, gridApi] = useVbenVxeGrid({
<FormModal @success="handleRefresh" />
<Grid>
<template #toolbar-actions>
<ElTabs v-model:model-value="sceneType" class="w-full" @tab-change="handleChangeSceneType">
<ElTabs
v-model:model-value="sceneType"
class="w-full"
@tab-change="handleChangeSceneType"
>
<ElTabPane label="我负责的" name="1" />
<ElTabPane label="我参与的" name="2" />
<ElTabPane label="下属负责的" name="3" />

View File

@@ -8,7 +8,13 @@ import { useRouter } from 'vue-router';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { downloadFileFromBlobPart } from '@vben/utils';
import { ElButton, ElLoading, ElMessage, ElTabPane, ElTabs } from 'element-plus';
import {
ElButton,
ElLoading,
ElMessage,
ElTabPane,
ElTabs,
} from 'element-plus';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import {
@@ -144,7 +150,11 @@ const [Grid, gridApi] = useVbenVxeGrid({
<ReceivableFormModal @success="handleRefresh" />
<Grid>
<template #toolbar-actions>
<ElTabs v-model:model-value="sceneType" class="w-full" @tab-change="handleChangeSceneType">
<ElTabs
v-model:model-value="sceneType"
class="w-full"
@tab-change="handleChangeSceneType"
>
<ElTabPane label="我负责的" name="1" />
<ElTabPane label="下属负责的" name="3" />
</ElTabs>