|
@@ -38,14 +38,6 @@
|
|
<div v-if="info.brief" v-html="info.brief"></div>
|
|
<div v-if="info.brief" v-html="info.brief"></div>
|
|
<div v-else>暂无简介</div>
|
|
<div v-else>暂无简介</div>
|
|
</div>
|
|
</div>
|
|
- <!-- 封面 -->
|
|
|
|
- <!-- <div class="image">
|
|
|
|
- <el-image class="images" :src="getUrl(info.file, 'array')" fit="fill">
|
|
|
|
- <template v-slot:error>
|
|
|
|
- <el-image class="image" :src="match_3" fit="fill" />
|
|
|
|
- </template>
|
|
|
|
- </el-image>
|
|
|
|
- </div> -->
|
|
|
|
<div class="image" v-if="info.video">
|
|
<div class="image" v-if="info.video">
|
|
<template v-for="i in info.video" :key="i.uri">
|
|
<template v-for="i in info.video" :key="i.uri">
|
|
<video :src="i.uri" style="width: 331px; height: 182px" muted="muted" autoplay="autoplay" loop></video>
|
|
<video :src="i.uri" style="width: 331px; height: 182px" muted="muted" autoplay="autoplay" loop></video>
|
|
@@ -131,11 +123,30 @@
|
|
<div class="button" v-if="info.match_status == '1'" @click="toSign">活动报名</div>
|
|
<div class="button" v-if="info.match_status == '1'" @click="toSign">活动报名</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="info_3" v-if="info.match_status == '3' && signList.length > 0">
|
|
|
|
+ <div class="title">参演方信息</div>
|
|
|
|
+ <div class="list" v-for="i in signList" :key="i.id">
|
|
|
|
+ <el-card class="box-card">
|
|
|
|
+ <template v-slot:header>
|
|
|
|
+ <div class="clearfix">
|
|
|
|
+ <span>{{ i.company || '暂无' }}</span>
|
|
|
|
+ <el-button v-if="info.is_show == '1'" style="float: right; padding: 3px 0" type="text" @click="toChat(i)">获取联系方式</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ <div class="box-content">
|
|
|
|
+ <div class="content_1"><span>路演名称:</span>{{ i.project_name || '暂无' }}</div>
|
|
|
|
+ <div class="content_1"><span>路演介绍:</span>{{ i.project_brief || '暂无' }}</div>
|
|
|
|
+ <div class="content_1" v-if="info.is_show == '0'"><span>联系方式:</span>{{ i.phone || '暂无' }}</div>
|
|
|
|
+ </div>
|
|
|
|
+ </el-card>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
</custom-layout>
|
|
</custom-layout>
|
|
<el-dialog v-model="dialog" title="活动报名" :destroy-on-close="true" @close="toClose">
|
|
<el-dialog v-model="dialog" title="活动报名" :destroy-on-close="true" @close="toClose">
|
|
- <data-form></data-form>
|
|
|
|
|
|
+ <form1 v-if="info.form != '3'"></form1>
|
|
|
|
+ <form2 v-else></form2>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -144,7 +155,8 @@ import moment from 'moment'
|
|
import { get, cloneDeep } from 'lodash-es'
|
|
import { get, cloneDeep } from 'lodash-es'
|
|
const $checkRes = inject('$checkRes')
|
|
const $checkRes = inject('$checkRes')
|
|
// 组件
|
|
// 组件
|
|
-import dataForm from './parts/index.vue'
|
|
|
|
|
|
+import form1 from './parts/form-1.vue'
|
|
|
|
+import form2 from './parts/form-2.vue'
|
|
import time from '/images/time.png'
|
|
import time from '/images/time.png'
|
|
import { UserStore } from '@/store/user'
|
|
import { UserStore } from '@/store/user'
|
|
const userStore = UserStore()
|
|
const userStore = UserStore()
|
|
@@ -152,10 +164,12 @@ const user = computed(() => userStore.user)
|
|
// 接口
|
|
// 接口
|
|
import { DictDataStore } from '@/store/api/system/dictData'
|
|
import { DictDataStore } from '@/store/api/system/dictData'
|
|
import { MatchStore } from '@/store/api/platform/match'
|
|
import { MatchStore } from '@/store/api/platform/match'
|
|
|
|
+import { ContactApplyStore } from '@/store/api/user/contactApply'
|
|
import { SignStore } from '@/store/api/platform/sign'
|
|
import { SignStore } from '@/store/api/platform/sign'
|
|
const dictDataStore = DictDataStore()
|
|
const dictDataStore = DictDataStore()
|
|
const store = MatchStore()
|
|
const store = MatchStore()
|
|
const signStore = SignStore()
|
|
const signStore = SignStore()
|
|
|
|
+const contactApplyStore = ContactApplyStore()
|
|
|
|
|
|
// 收藏
|
|
// 收藏
|
|
import { CollectionStore } from '@/store/api/platform/collection'
|
|
import { CollectionStore } from '@/store/api/platform/collection'
|
|
@@ -166,13 +180,17 @@ const loading = ref(false)
|
|
// 路由
|
|
// 路由
|
|
const route = useRoute()
|
|
const route = useRoute()
|
|
const info = ref({})
|
|
const info = ref({})
|
|
|
|
+// 报名
|
|
|
|
+const signList = ref([])
|
|
// 弹框
|
|
// 弹框
|
|
const cardTypeList = ref([])
|
|
const cardTypeList = ref([])
|
|
const typeList = ref([])
|
|
const typeList = ref([])
|
|
const statusList = ref([])
|
|
const statusList = ref([])
|
|
const industryList = ref([])
|
|
const industryList = ref([])
|
|
|
|
+const signTypeList = ref([])
|
|
const ruleFormRef = ref()
|
|
const ruleFormRef = ref()
|
|
const form = ref({})
|
|
const form = ref({})
|
|
|
|
+
|
|
const validatePhoneNumber = (rule, value, callback) => {
|
|
const validatePhoneNumber = (rule, value, callback) => {
|
|
const reg = /^1[3-9]\d{9}$/
|
|
const reg = /^1[3-9]\d{9}$/
|
|
if (!value) {
|
|
if (!value) {
|
|
@@ -222,12 +240,21 @@ const searchOther = async () => {
|
|
// 行业
|
|
// 行业
|
|
result = await dictDataStore.query({ code: 'matchIndustry', is_use: '0' })
|
|
result = await dictDataStore.query({ code: 'matchIndustry', is_use: '0' })
|
|
if ($checkRes(result)) industryList.value = result.data
|
|
if ($checkRes(result)) industryList.value = result.data
|
|
|
|
+ // 报名类型
|
|
|
|
+ result = await dictDataStore.query({ code: 'signType', is_use: '0' })
|
|
|
|
+ if ($checkRes(result)) signTypeList.value = result.data
|
|
}
|
|
}
|
|
const search = async () => {
|
|
const search = async () => {
|
|
let id = route.query.id
|
|
let id = route.query.id
|
|
if (id) {
|
|
if (id) {
|
|
let res = await store.detail(id)
|
|
let res = await store.detail(id)
|
|
- if (res.errcode == '0') info.value = res.data
|
|
|
|
|
|
+ if (res.errcode == '0') {
|
|
|
|
+ info.value = res.data
|
|
|
|
+ if (res.data.form == '3') {
|
|
|
|
+ const arr = await signStore.query({ match: res.data.id, status: '1', type: '1' })
|
|
|
|
+ if (arr.errcode == '0') signList.value = arr.data
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 字典数据转换
|
|
// 字典数据转换
|
|
@@ -250,12 +277,6 @@ const toClose = () => {
|
|
dialog.value = false
|
|
dialog.value = false
|
|
form.value = {}
|
|
form.value = {}
|
|
}
|
|
}
|
|
-const getUrl = (item, type) => {
|
|
|
|
- if (item) {
|
|
|
|
- if (type == 'array') return `${import.meta.env.VITE_APP_HOST}${get(item, '0.uri')}`
|
|
|
|
- else return `${import.meta.env.VITE_APP_HOST}${get(item, 'uri')}`
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
// 报名
|
|
// 报名
|
|
const submitForm = async (formEl) => {
|
|
const submitForm = async (formEl) => {
|
|
if (!formEl) return
|
|
if (!formEl) return
|
|
@@ -298,11 +319,32 @@ const toCollect = async () => {
|
|
}
|
|
}
|
|
} else ElMessage({ message: '未登录!', type: 'error' })
|
|
} else ElMessage({ message: '未登录!', type: 'error' })
|
|
}
|
|
}
|
|
|
|
+const toChat = (item) => {
|
|
|
|
+ if (user.value.id) {
|
|
|
|
+ ElMessageBox.confirm(`您确认要获取联系方式?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
|
|
|
|
+ .then(async () => {
|
|
|
|
+ let source_id = item.id
|
|
|
|
+ let source = 'sign'
|
|
|
|
+ let apply_user = user.value.id
|
|
|
|
+ const obj = { source_id, source, apply_user }
|
|
|
|
+ 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' })
|
|
|
|
+}
|
|
// provide
|
|
// provide
|
|
provide('form', form)
|
|
provide('form', form)
|
|
provide('rules', rules)
|
|
provide('rules', rules)
|
|
provide('ruleFormRef', ruleFormRef)
|
|
provide('ruleFormRef', ruleFormRef)
|
|
provide('cardTypeList', cardTypeList)
|
|
provide('cardTypeList', cardTypeList)
|
|
|
|
+provide('signTypeList', signTypeList)
|
|
provide('submitForm', submitForm)
|
|
provide('submitForm', submitForm)
|
|
</script>
|
|
</script>
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
@@ -488,6 +530,25 @@ provide('submitForm', submitForm)
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .list {
|
|
|
|
+ margin: 20px 0 30px 0;
|
|
|
|
+ font-size: $global-font-size-20;
|
|
|
|
+ .box-card {
|
|
|
|
+ .clearfix {
|
|
|
|
+ span {
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .box-content {
|
|
|
|
+ .content_1 {
|
|
|
|
+ margin: 5px 0 15px 0;
|
|
|
|
+ span {
|
|
|
|
+ color: #666;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
:deep(table) {
|
|
:deep(table) {
|