|
@@ -141,6 +141,7 @@ const contactApplyStore = ContactApplyStore()
|
|
|
import { UserStore } from '@/store/user'
|
|
|
const userStore = UserStore()
|
|
|
const user = computed(() => userStore.user)
|
|
|
+const $checkRes = inject('$checkRes')
|
|
|
|
|
|
// 收藏
|
|
|
import moment from 'moment'
|
|
@@ -241,7 +242,7 @@ const toChat = () => {
|
|
|
let apply_user = user.value.id
|
|
|
const obj = { source_id, source, apply_user }
|
|
|
const res = await contactApplyStore.create(obj)
|
|
|
- $checkRes(res,`预约对接成功等待消息通知`,res.errmsg)
|
|
|
+ $checkRes(res, `预约对接成功等待消息通知`, res.errmsg)
|
|
|
})
|
|
|
.catch(() => {})
|
|
|
} else ElMessage({ message: '未登录!', type: 'error' })
|