📖 CRM:code review crm 联系人新增操作日志

This commit is contained in:
YunaiV 2024-01-07 18:19:15 +08:00
parent 09fa30b0d6
commit a0f7775321
3 changed files with 6 additions and 1 deletions

View File

@ -233,6 +233,7 @@ const userList = ref<UserApi.UserVO[]>([]) // 用户列表
// TODO // TODO
const customerList = ref<CustomerApi.CustomerVO[]>([]) // const customerList = ref<CustomerApi.CustomerVO[]>([]) //
const allContactList = ref<ContactApi.ContactVO[]>([]) // const allContactList = ref<ContactApi.ContactVO[]>([]) //
/** 打开弹窗 */ /** 打开弹窗 */
const open = async (type: string, id?: number) => { const open = async (type: string, id?: number) => {
dialogVisible.value = true dialogVisible.value = true
@ -254,6 +255,7 @@ const open = async (type: string, id?: number) => {
} }
} }
defineExpose({ open }) // open defineExpose({ open }) // open
/** 提交表单 */ /** 提交表单 */
const emit = defineEmits(['success']) // success const emit = defineEmits(['success']) // success
const submitForm = async () => { const submitForm = async () => {

View File

@ -70,6 +70,7 @@
import * as ContactApi from '@/api/crm/contact' import * as ContactApi from '@/api/crm/contact'
import { DICT_TYPE } from '@/utils/dict' import { DICT_TYPE } from '@/utils/dict'
import { formatDate } from '@/utils/formatTime' import { formatDate } from '@/utils/formatTime'
const { contact } = defineProps<{ const { contact } = defineProps<{
contact: ContactApi.ContactVO contact: ContactApi.ContactVO
}>() }>()

View File

@ -48,10 +48,11 @@ const getContactData = async (id: number) => {
loading.value = false loading.value = false
} }
} }
const logList = ref<OperateLogV2VO[]>([]) //
/** /**
* 获取操作日志 * 获取操作日志
*/ */
const logList = ref<OperateLogV2VO[]>([]) //
const getOperateLog = async (contactId: number) => { const getOperateLog = async (contactId: number) => {
if (!contactId) { if (!contactId) {
return return
@ -61,6 +62,7 @@ const getOperateLog = async (contactId: number) => {
}) })
logList.value = data.list logList.value = data.list
} }
/** 初始化 */ /** 初始化 */
const { delView } = useTagsViewStore() // const { delView } = useTagsViewStore() //
const { currentRoute } = useRouter() // const { currentRoute } = useRouter() //