|
@@ -36,7 +36,7 @@
|
|
|
</div>
|
|
|
<div class="other_1">
|
|
|
<div class="name">{{ info.person || '暂无' }}</div>
|
|
|
- <div class="button" @click="dialog = true">预约对接</div>
|
|
|
+ <div class="button" @click="toChat">预约对接</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="inose_top">
|
|
@@ -124,9 +124,6 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</custom-layout>
|
|
|
- <el-dialog v-model="dialog" title="对接预约" :destroy-on-close="true" @close="toClose">
|
|
|
- <data-form></data-form>
|
|
|
- </el-dialog>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -135,13 +132,13 @@ import biao_1 from '/images/biao_1.png'
|
|
|
import biao_2 from '/images/biao_2.png'
|
|
|
import biao_3 from '/images/biao_3.png'
|
|
|
|
|
|
-// 组件
|
|
|
-import dataForm from './parts/project.vue'
|
|
|
// 接口
|
|
|
import { ProjectStore } from '@/store/api/platform/project'
|
|
|
import { ExpertStore } from '@/store/api/user/expert'
|
|
|
+import { ContactApplyStore } from '@/store/api/user/contactApply'
|
|
|
const store = ProjectStore()
|
|
|
const expertStore = ExpertStore()
|
|
|
+const contactApplyStore = ContactApplyStore()
|
|
|
import { UserStore } from '@/store/user'
|
|
|
const userStore = UserStore()
|
|
|
const user = computed(() => userStore.user)
|
|
@@ -162,24 +159,6 @@ const info = ref({})
|
|
|
const expertList = ref([])
|
|
|
const projectList = ref([])
|
|
|
|
|
|
-const form = ref({})
|
|
|
-const dialog = ref(false)
|
|
|
-
|
|
|
-const ruleFormRef = ref()
|
|
|
-const validatePhoneNumber = (rule, value, callback) => {
|
|
|
- const reg = /^1[3-9]\d{9}$/
|
|
|
- if (!value) {
|
|
|
- return callback(new Error('手机号不能为空'))
|
|
|
- }
|
|
|
- if (!reg.test(value)) {
|
|
|
- return callback(new Error('请输入正确的手机号'))
|
|
|
- }
|
|
|
- callback()
|
|
|
-}
|
|
|
-const rules = reactive({
|
|
|
- name: [{ required: true, message: '请输入姓名', trigger: 'blur' }],
|
|
|
- phone: [{ required: true, validator: validatePhoneNumber, trigger: 'blur' }]
|
|
|
-})
|
|
|
// 请求
|
|
|
onMounted(async () => {
|
|
|
loading.value = true
|
|
@@ -228,19 +207,6 @@ const toMore = (type) => {
|
|
|
if (type == '0') router.push({ path: '/expert' })
|
|
|
else if (type == '1') router.push({ path: '/project' })
|
|
|
}
|
|
|
-// 报名
|
|
|
-const submitForm = async (formEl) => {
|
|
|
- if (user.value.id) {
|
|
|
- await toClose()
|
|
|
- ElMessage.success('预约对接成功!')
|
|
|
- } else {
|
|
|
- ElMessage.error('用户未登录无法预约对接!')
|
|
|
- }
|
|
|
-}
|
|
|
-const toClose = () => {
|
|
|
- dialog.value = false
|
|
|
- form.value = {}
|
|
|
-}
|
|
|
const toCollect = async () => {
|
|
|
if (user.value.id) {
|
|
|
info.value.is_collection = !info.value.is_collection
|
|
@@ -265,11 +231,20 @@ const toCollect = async () => {
|
|
|
}
|
|
|
} else ElMessage({ message: '未登录!', type: 'error' })
|
|
|
}
|
|
|
-// provide
|
|
|
-provide('form', form)
|
|
|
-provide('rules', rules)
|
|
|
-provide('ruleFormRef', ruleFormRef)
|
|
|
-provide('submitForm', submitForm)
|
|
|
+const toChat = () => {
|
|
|
+ if (user.value.id) {
|
|
|
+ ElMessageBox.confirm(`您确认要预约对接?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
|
|
|
+ .then(async () => {
|
|
|
+ let source_id = route.query.id
|
|
|
+ let source = 'project'
|
|
|
+ let apply_user = user.value.id
|
|
|
+ const obj = { source_id, source, apply_user }
|
|
|
+ await contactApplyStore.create(obj)
|
|
|
+ ElMessage({ message: `预约对接成功等待消息通知`, type: 'success' })
|
|
|
+ })
|
|
|
+ .catch(() => {})
|
|
|
+ } else ElMessage({ message: '未登录!', type: 'error' })
|
|
|
+}
|
|
|
</script>
|
|
|
<style scoped lang="scss">
|
|
|
.main {
|