zs 6 months ago
parent
commit
ef525fa040

+ 7 - 1
src/views/detail/achievementDetail.vue

@@ -231,7 +231,13 @@ const toChat = () => {
           apply_user: user.value.id
         }
         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' })

+ 7 - 1
src/views/detail/baseDetail.vue

@@ -212,7 +212,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' })

+ 7 - 1
src/views/detail/demandDetail.vue

@@ -226,7 +226,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' })

+ 8 - 2
src/views/detail/expertDetail.vue

@@ -151,8 +151,14 @@ const toChat = () => {
         let source = 'expert'
         let apply_user = user.value.id
         const obj = { source_id, source, apply_user }
-        await contactApplyStore.create(obj)
-        ElMessage({ message: `预约对接成功等待消息通知`, type: 'success' })
+        const res = await contactApplyStore.create(obj)
+        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' })

+ 7 - 3
src/views/detail/industryDetail.vue

@@ -148,8 +148,6 @@ import { UserStore } from '@/store/user'
 const userStore = UserStore()
 const user = computed(() => userStore.user)
 
-const $checkRes = inject('$checkRes')
-
 // 加载中
 const loading = ref(false)
 // 路由
@@ -205,7 +203,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' })

+ 7 - 2
src/views/detail/projectDetail.vue

@@ -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' })

+ 7 - 2
src/views/detail/supplyDetail.vue

@@ -217,8 +217,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)
-        // ElMessage({ message: `预约对接成功等待消息通知`, type: 'success' })
+        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' })