|
@@ -141,7 +141,6 @@ const contactApplyStore = ContactApplyStore()
|
|
|
import { UserStore } from '@/store/user'
|
|
|
const userStore = UserStore()
|
|
|
const user = computed(() => userStore.user)
|
|
|
-const $checkRes = inject('$checkRes')
|
|
|
|
|
|
// 收藏
|
|
|
import moment from 'moment'
|
|
@@ -242,7 +241,13 @@ 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)
|
|
|
+ if (res.errcode == 0) {
|
|
|
+ ElMessage({ message: '预约对接成功等待消息通知', type: 'success' })
|
|
|
+ } else {
|
|
|
+ ElMessageBox.confirm(res.errmsg, '提示', { confirmButtonText: '确定', type: 'warning', showCancelButton: false, center: true })
|
|
|
+ .then(() => {})
|
|
|
+ .catch(() => {})
|
|
|
+ }
|
|
|
})
|
|
|
.catch(() => {})
|
|
|
} else ElMessage({ message: '未登录!', type: 'error' })
|