zy 2025-05-11 12:29:51 +08:00
commit 6667e8b300
3 changed files with 4 additions and 3 deletions

View File

@ -88,7 +88,7 @@ export const useAppStore = defineStore('app', {
// 左侧菜单选中字体颜色
leftMenuTextActiveColor: '#F9AA25',
// logo字体颜色
logoTitleTextColor: '#fff',
logoTitleTextColor: '#F9AA25',
// logo边框颜色
logoBorderColor: 'inherit',
// 头部背景颜色

View File

@ -259,7 +259,7 @@ onMounted(async () => {
await getApprovalDetail()
//
customerList.value = await CustomerApi.getCustomerSimpleList()
customerList.value = await CustomerApi.getSelfCustomerSimpleList()
})
/** , formData.value

View File

@ -103,6 +103,7 @@ import * as ProcessInstanceApi from '@/api/bpm/processInstance'
import { CandidateStrategy, NodeId } from '@/components/SimpleProcessDesignerV2/src/consts'
import { ApprovalNodeInfo } from '@/api/bpm/processInstance'
import {defaultProps, handleTree} from "@/utils/tree";
import {getSelfCustomerSimpleList} from "@/api/crm/customer";
defineOptions({ name: 'CustomerSuggestionCreate' })
@ -249,7 +250,7 @@ onMounted(async () => {
await getApprovalDetail()
//
customerList.value = await CustomerApi.getCustomerSimpleList()
customerList.value = await CustomerApi.getSelfCustomerSimpleList()
//
deptList.value = handleTree(await DeptApi.getSimpleDeptList())
})