CRM:待办事项(接入合同)

This commit is contained in:
YunaiV
2024-02-24 17:55:34 +08:00
parent 8f8591fc45
commit 6caa94ec47
8 changed files with 183 additions and 63 deletions

View File

@ -130,8 +130,8 @@ const list = ref([]) // 列表的数据
const queryParams = ref({
pageNo: 1,
pageSize: 10,
followUpStatus: false,
sceneType: 1
sceneType: 1,
followUpStatus: false
})
const queryFormRef = ref() // 搜索的表单
@ -158,10 +158,13 @@ const openDetail = (id: number) => {
push({ name: 'CrmCustomerDetail', params: { id } })
}
/** 激活时 */
onActivated(async () => {
await getList()
})
/** 初始化 **/
onMounted(() => {
getList()
})
</script>
<style scoped></style>