matchDetail.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. <template>
  2. <custom-layout class="main">
  3. <el-col :span="24" class="one" v-loading="loading">
  4. <div class="w_1300">
  5. <div class="info_1">
  6. <h3 class="name">{{ info.name || '暂无' }}</h3>
  7. <div class="collect iscollect" @click="toCollect" v-if="info.is_collection">
  8. <el-icon :size="24" color="#1073ff"><StarFilled /></el-icon>
  9. <span>已收藏</span>
  10. </div>
  11. <div class="collect" v-else @click="toCollect">
  12. <el-icon :size="24"><Star /></el-icon>
  13. <span>收藏</span>
  14. </div>
  15. <p class="brief">{{ getDict(info.industry, 'industry') || '暂无行业' }}</p>
  16. <p class="money" v-if="info.money">奖金:{{ info.money || '暂无奖金' }}</p>
  17. <div class="other" v-if="info.match_type">
  18. <span>活动类型:</span>
  19. <span class="type">{{ getDict(info.match_type, 'type') || '暂无活动类型' }}</span>
  20. </div>
  21. <div class="other" v-if="info.match_status">
  22. <span>赛事状态:</span>
  23. <span class="status" :class="[info.match_status == '0' ? 'status0' : info.match_status == '1' ? 'status1' : 'status2']">
  24. {{ getDict(info.match_status, 'status') || '暂无赛事状态' }}
  25. </span>
  26. </div>
  27. <div class="time">
  28. <el-image class="image" :src="time" fit="fill"></el-image>
  29. <span>{{ info.start_time || '暂无开始时间' }} ~ {{ info.end_time || '暂无结束时间' }}</span>
  30. </div>
  31. <div class="button" @click="toSign" v-if="info.match_status == '1'">活动报名</div>
  32. </div>
  33. <div class="info_2">
  34. <div class="title">活动介绍</div>
  35. <div class="content">
  36. <!-- 正文 -->
  37. <div class="content_1">
  38. <div v-if="info.brief" v-html="info.brief"></div>
  39. <div v-else>暂无简介</div>
  40. </div>
  41. <div class="image" v-if="info.video">
  42. <template v-for="i in info.video" :key="i.uri">
  43. <video :src="i.uri" style="width: 331px; height: 182px" muted="muted" autoplay="autoplay" loop></video>
  44. </template>
  45. </div>
  46. </div>
  47. </div>
  48. <div class="info_3">
  49. <div class="title">活动说明</div>
  50. <div class="content">
  51. <div class="thr_cont" v-if="info.rules && info.rules.rules1">
  52. <div class="thr_1">大赛背景</div>
  53. <div class="thr_2">
  54. <div v-html="info.rules.rules1"></div>
  55. </div>
  56. </div>
  57. <div class="thr_cont" v-if="info.rules && info.rules.rules2">
  58. <div class="thr_1">大赛主题和目标</div>
  59. <div class="thr_2">
  60. <div v-html="info.rules.rules2"></div>
  61. </div>
  62. </div>
  63. <div class="thr_cont" v-if="info.rules && info.rules.rules3">
  64. <div class="thr_1">大赛基本情况介绍</div>
  65. <div class="thr_2">
  66. <div v-html="info.rules.rules3"></div>
  67. </div>
  68. </div>
  69. <div class="thr_cont" v-if="info.rules && info.rules.rules4">
  70. <div class="thr_1">赛题任务</div>
  71. <div class="thr_2">
  72. <div v-html="info.rules.rules4"></div>
  73. </div>
  74. </div>
  75. <div class="thr_cont" v-if="info.rules && info.rules.rules5">
  76. <div class="thr_1">赛程安排</div>
  77. <div class="thr_2">
  78. <div v-html="info.rules.rules5"></div>
  79. </div>
  80. </div>
  81. <div class="thr_cont" v-if="info.rules && info.rules.rules6">
  82. <div class="thr_1">赛制阶段</div>
  83. <div class="thr_2">
  84. <div v-html="info.rules.rules6"></div>
  85. </div>
  86. </div>
  87. <div class="thr_cont" v-if="info.rules && info.rules.rules7">
  88. <div class="thr_1">参赛资格</div>
  89. <div class="thr_2">
  90. <div v-html="info.rules.rules7"></div>
  91. </div>
  92. </div>
  93. <div class="thr_cont" v-if="info.rules && info.rules.rules8">
  94. <div class="thr_1">参赛报名</div>
  95. <div class="thr_2">
  96. <div v-html="info.rules.rules8"></div>
  97. </div>
  98. </div>
  99. <div class="thr_cont" v-if="info.rules && info.rules.rules9">
  100. <div class="thr_1">奖项设置与奖励办法</div>
  101. <div class="thr_2">
  102. <div v-html="info.rules.rules9"></div>
  103. </div>
  104. </div>
  105. <div class="thr_cont" v-if="info.rules && info.rules.rules10">
  106. <div class="thr_1">组织单位</div>
  107. <div class="thr_2">
  108. <div v-html="info.rules.rules10"></div>
  109. </div>
  110. </div>
  111. <div class="thr_cont" v-if="info.rules && info.rules.rules11">
  112. <div class="thr_1">赛事联络</div>
  113. <div class="thr_2">
  114. <div v-html="info.rules.rules11"></div>
  115. </div>
  116. </div>
  117. <div class="thr_cont" v-if="info.rules && info.rules.rules12">
  118. <div class="thr_1">赛事交流</div>
  119. <div class="thr_2">
  120. <div v-html="info.rules.rules12"></div>
  121. </div>
  122. </div>
  123. <div class="button" v-if="info.match_status == '1'" @click="toSign">活动报名</div>
  124. </div>
  125. </div>
  126. <div class="info_3" v-if="info.form == '3' && info.match_status == '3' && signList.length > 0">
  127. <div class="title">参演方信息</div>
  128. <div class="list" v-for="i in signList" :key="i.id">
  129. <el-card class="box-card">
  130. <template v-slot:header>
  131. <div class="clearfix">
  132. <span>{{ i.company || '暂无' }}</span>
  133. <el-button v-if="info.is_show == '1'" style="float: right; padding: 3px 0" type="text" @click="toChat(i)">获取联系方式</el-button>
  134. </div>
  135. </template>
  136. <div class="box-content">
  137. <div class="content_1"><span>路演名称:</span>{{ i.project_name || '暂无' }}</div>
  138. <div class="content_1"><span>路演介绍:</span>{{ i.project_brief || '暂无' }}</div>
  139. <div class="content_1" v-if="info.is_show == '0'"><span>联系方式:</span>{{ i.phone || '暂无' }}</div>
  140. </div>
  141. </el-card>
  142. </div>
  143. </div>
  144. <div class="info_3" v-if="info.form == '4' && info.ext_status == '3'">
  145. <div class="title">初审结果公示</div>
  146. <div class="content_1" style="margin: 20px 0 0 0">
  147. <el-table :data="preliminaryList" :header-cell-style="{ backgroundColor: '#edf3ff' }">
  148. <template #empty>
  149. <el-empty description="暂无数据" />
  150. </template>
  151. <el-table-column align="center" prop="no" label="编号" width="100" />
  152. <el-table-column align="center" prop="user_name" label="姓名" />
  153. <el-table-column align="center" prop="start_time" label="初审时间" />
  154. </el-table>
  155. </div>
  156. </div>
  157. <div class="info_3" v-if="info.form == '4' && info.ext_status == '5'">
  158. <div class="title">决赛结果公示</div>
  159. <div class="content_1" style="margin: 20px 0 0 0">
  160. <el-table :data="finalsList" :header-cell-style="{ backgroundColor: '#edf3ff' }">
  161. <template #empty>
  162. <el-empty description="暂无数据" />
  163. </template>
  164. <el-table-column align="center" prop="no" label="编号" width="100" />
  165. <el-table-column align="center" prop="user_name" label="姓名" />
  166. <el-table-column align="center" prop="final_start_time" label="决赛时间" />
  167. </el-table>
  168. </div>
  169. </div>
  170. </div>
  171. </el-col>
  172. </custom-layout>
  173. <el-dialog v-model="dialog" title="活动报名" :destroy-on-close="true" @close="toClose">
  174. <form1 v-if="info.form != '3'"></form1>
  175. <form2 v-else></form2>
  176. </el-dialog>
  177. </template>
  178. <script setup>
  179. import moment from 'moment'
  180. import { get, cloneDeep } from 'lodash-es'
  181. const $checkRes = inject('$checkRes')
  182. // 组件
  183. import form1 from './parts/form-1.vue'
  184. import form2 from './parts/form-2.vue'
  185. import time from '/images/time.png'
  186. import { UserStore } from '@/store/user'
  187. const userStore = UserStore()
  188. const user = computed(() => userStore.user)
  189. // 接口
  190. import { DictDataStore } from '@/store/api/system/dictData'
  191. import { MatchStore } from '@/store/api/platform/match'
  192. import { ContactApplyStore } from '@/store/api/user/contactApply'
  193. import { SignStore } from '@/store/api/platform/sign'
  194. const dictDataStore = DictDataStore()
  195. const store = MatchStore()
  196. const signStore = SignStore()
  197. const contactApplyStore = ContactApplyStore()
  198. import { MatchExtStore } from '@/store/api/platform/matchExt'
  199. const matchExtStore = MatchExtStore()
  200. // 收藏
  201. import { CollectionStore } from '@/store/api/platform/collection'
  202. const collectionStore = CollectionStore()
  203. // 加载中
  204. const loading = ref(false)
  205. // 路由
  206. const route = useRoute()
  207. // 路由
  208. const router = useRouter()
  209. const info = ref({})
  210. // 报名
  211. const signList = ref([])
  212. // 弹框
  213. const cardTypeList = ref([])
  214. const typeList = ref([])
  215. const statusList = ref([])
  216. const industryList = ref([])
  217. const signTypeList = ref([])
  218. const ruleFormRef = ref()
  219. const form = ref({})
  220. // 初审公示
  221. const preliminaryList = ref([])
  222. // 决赛公示
  223. const finalsList = ref([])
  224. const validatePhoneNumber = (rule, value, callback) => {
  225. const reg = /^1[3-9]\d{9}$/
  226. if (!value) {
  227. return callback(new Error('手机号不能为空'))
  228. }
  229. if (!reg.test(value)) {
  230. return callback(new Error('请输入正确的手机号'))
  231. }
  232. callback()
  233. }
  234. const validateCardNumber = (rule, value, callback) => {
  235. var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/
  236. if (!value) {
  237. return callback(new Error('证件号码不能为空'))
  238. }
  239. if (!reg.test(value)) {
  240. return callback(new Error('请输入正确的证件号码'))
  241. }
  242. callback()
  243. }
  244. const rules = reactive({
  245. name: [{ required: true, message: '请输入姓名', trigger: 'blur' }],
  246. phone: [{ required: true, validator: validatePhoneNumber, trigger: 'blur' }],
  247. cardType: [{ required: true, message: '请选择证件类型', trigger: 'change' }],
  248. card: [{ required: true, validator: validateCardNumber, trigger: 'change' }],
  249. remark: [{ required: true, message: '请输入备注', trigger: 'blur' }]
  250. })
  251. const dialog = ref(false)
  252. // 请求
  253. onMounted(async () => {
  254. loading.value = true
  255. await searchOther()
  256. await search()
  257. loading.value = false
  258. })
  259. const searchOther = async () => {
  260. let result
  261. // 证件类型
  262. result = await dictDataStore.query({ code: 'cardType', is_use: '0' })
  263. if ($checkRes(result)) cardTypeList.value = result.data
  264. // 赛事类型
  265. result = await dictDataStore.query({ code: 'activeType', is_use: '0' })
  266. if ($checkRes(result)) typeList.value = result.data
  267. // 赛事状态
  268. result = await dictDataStore.query({ code: 'matchStatus', is_use: '0' })
  269. if ($checkRes(result)) statusList.value = result.data
  270. // 行业
  271. result = await dictDataStore.query({ code: 'matchIndustry', is_use: '0' })
  272. if ($checkRes(result)) industryList.value = result.data
  273. // 报名类型
  274. result = await dictDataStore.query({ code: 'signType', is_use: '0' })
  275. if ($checkRes(result)) signTypeList.value = result.data
  276. }
  277. const search = async () => {
  278. let id = route.query.id
  279. if (id) {
  280. let res = await store.fetch(id)
  281. if (res.errcode == '0') {
  282. info.value = res.data
  283. if (res.data.form == '3') {
  284. const arr = await signStore.query({ match: res.data.id, status: '1', type: '1' })
  285. if (arr.errcode == '0') signList.value = arr.data
  286. }
  287. if (res.data.form == '4' && res.data.ext_status == '3') {
  288. await searchStep3()
  289. }
  290. if (res.data.form == '4' && res.data.ext_status == '5') {
  291. await searchStep5()
  292. }
  293. }
  294. }
  295. }
  296. // 查询初审公示名单
  297. const searchStep3 = async () => {
  298. let id = route.query.id
  299. let res = await matchExtStore.step3Name(id)
  300. if (res.errcode == '0') {
  301. preliminaryList.value = res.data
  302. }
  303. }
  304. // 查询决赛公示名单
  305. const searchStep5 = async () => {
  306. let id = route.query.id
  307. let res = await matchExtStore.step5Name(id)
  308. if (res.errcode == '0') {
  309. finalsList.value = res.data
  310. }
  311. }
  312. // 字典数据转换
  313. const getDict = (data, model) => {
  314. if (data) {
  315. let res
  316. if (model == 'type') res = typeList.value.find((f) => f.value == data)
  317. else if (model == 'status') res = statusList.value.find((f) => f.value == data)
  318. else if (model == 'industry') res = industryList.value.find((f) => f.value == data)
  319. return get(res, 'label')
  320. }
  321. }
  322. // 报名参赛
  323. const toSign = () => {
  324. if (info.value.form == '4') {
  325. router.push({ path: `/preliminary`, query: { id: info.value.id || info.value._id } })
  326. } else {
  327. if (info.value.match_type == '1') {
  328. window.open(info.value.href, '_blank') // 在新标签页中打开URL
  329. } else dialog.value = true
  330. }
  331. }
  332. const toClose = () => {
  333. dialog.value = false
  334. form.value = {}
  335. }
  336. // 报名
  337. const submitForm = async (formEl) => {
  338. if (!formEl) return
  339. await formEl.validate(async (valid, fields) => {
  340. if (valid) {
  341. const data = cloneDeep(form.value)
  342. const other = {
  343. match: info.value.id,
  344. time: moment().format('YYYY-MM-DD')
  345. }
  346. if (user.value.id) other.user = user.value.id
  347. let res = await signStore.create({ ...data, ...other })
  348. if ($checkRes(res, true)) toClose()
  349. } else {
  350. console.log('error submit!', fields)
  351. }
  352. })
  353. }
  354. const toCollect = async () => {
  355. if (user.value.id) {
  356. info.value.is_collection = !info.value.is_collection
  357. let res
  358. let message
  359. const data = {
  360. user: user.value.id,
  361. source: info.value.id,
  362. type: 'match',
  363. time: moment().format('YYYY-MM-DD')
  364. }
  365. if (info.value.is_collection) {
  366. message = '收藏成功'
  367. res = await collectionStore.create(data)
  368. } else {
  369. message = '取消收藏成功'
  370. res = await collectionStore.cancel(data)
  371. }
  372. if (res.errcode === 0) {
  373. ElMessage({ message, type: 'success' })
  374. await search()
  375. }
  376. } else ElMessage({ message: '未登录!', type: 'error' })
  377. }
  378. const toChat = (item) => {
  379. if (user.value.id) {
  380. ElMessageBox.confirm(`您确认要获取联系方式?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  381. .then(async () => {
  382. let source_id = item.id
  383. let source = 'sign'
  384. let apply_user = user.value.id
  385. const obj = { source_id, source, apply_user }
  386. const res = await contactApplyStore.signCreate(obj)
  387. if (res.errcode == 0) {
  388. ElMessage({ message: '申请联系方式等待消息通知', type: 'success' })
  389. } else {
  390. ElMessageBox.confirm(res.errmsg, '提示', { confirmButtonText: '确定', type: 'warning', showCancelButton: false, center: true })
  391. .then(() => {})
  392. .catch(() => {})
  393. }
  394. })
  395. .catch(() => {})
  396. } else ElMessage({ message: '未登录!', type: 'error' })
  397. }
  398. // provide
  399. provide('form', form)
  400. provide('rules', rules)
  401. provide('ruleFormRef', ruleFormRef)
  402. provide('cardTypeList', cardTypeList)
  403. provide('signTypeList', signTypeList)
  404. provide('submitForm', submitForm)
  405. </script>
  406. <style scoped lang="scss">
  407. .main {
  408. .one {
  409. background: url(/images/matchBg.jpg) no-repeat;
  410. background-position: center top;
  411. .info_1 {
  412. padding: 90px 80px 0 80px;
  413. .name {
  414. font-size: $global-font-size-36;
  415. width: 70%;
  416. font-weight: bold;
  417. }
  418. .collect {
  419. display: flex;
  420. align-items: center;
  421. width: 35%;
  422. font-size: $global-font-size-20;
  423. color: #929292;
  424. cursor: default;
  425. span {
  426. margin: 0 0 0 5px;
  427. }
  428. }
  429. .iscollect {
  430. color: #1073ff;
  431. }
  432. .brief {
  433. font-size: $global-font-size-20;
  434. margin-top: 25px;
  435. color: #000;
  436. }
  437. .money {
  438. font-size: $global-font-size-20;
  439. margin-top: 25px;
  440. color: red;
  441. }
  442. .other {
  443. display: flex;
  444. align-items: center;
  445. margin: 10px 0;
  446. font-size: $global-font-size-18;
  447. .type {
  448. font-size: $global-font-size-12;
  449. overflow: hidden;
  450. text-overflow: ellipsis;
  451. white-space: nowrap;
  452. width: 70px;
  453. height: 25px;
  454. border-radius: 4px;
  455. text-align: center;
  456. line-height: 25px;
  457. font-weight: 700;
  458. color: #2a78ff;
  459. background: #eaf1ff;
  460. }
  461. .status {
  462. font-size: $global-font-size-12;
  463. overflow: hidden;
  464. text-overflow: ellipsis;
  465. white-space: nowrap;
  466. width: 70px;
  467. height: 25px;
  468. border-radius: 4px;
  469. text-align: center;
  470. line-height: 25px;
  471. font-weight: 700;
  472. }
  473. .status0 {
  474. color: #ff9407;
  475. background-color: #fff2e1;
  476. }
  477. .status1 {
  478. color: #2a78ff;
  479. background: #eaf1ff;
  480. }
  481. .status2 {
  482. color: #4f5050;
  483. background: #dcdcdd;
  484. }
  485. }
  486. .time {
  487. display: flex;
  488. margin-top: 60px !important;
  489. color: #666;
  490. font-size: $global-font-size-16;
  491. .image {
  492. width: 18px;
  493. height: 18px;
  494. margin: 0 5px 0 0;
  495. }
  496. }
  497. .button {
  498. cursor: pointer;
  499. margin-top: 70px !important;
  500. justify-content: center;
  501. display: flex !important;
  502. align-items: center;
  503. width: 136px;
  504. height: 44px;
  505. color: #fff;
  506. font-size: 16px;
  507. background-image: linear-gradient(90deg, #0455da 0%, #378cff 100%), linear-gradient(#0455da, #0455da);
  508. background-blend-mode: normal, normal;
  509. border-radius: 4px;
  510. }
  511. }
  512. .info_2 {
  513. padding: 0 80px;
  514. margin-top: 70px !important;
  515. .title {
  516. color: #000;
  517. display: inline-block;
  518. padding-bottom: 20px;
  519. font-size: $global-font-size-30;
  520. border-bottom: 5px solid #378cff;
  521. cursor: pointer;
  522. }
  523. .content {
  524. display: flex;
  525. margin-top: 50px;
  526. .content_1 {
  527. height: 200px;
  528. width: 630px;
  529. text-indent: 2em;
  530. font-size: 16px;
  531. line-height: 36px;
  532. color: #333333;
  533. overflow: hidden;
  534. }
  535. .image {
  536. margin-left: 66px;
  537. width: 331px;
  538. height: 182px;
  539. }
  540. }
  541. }
  542. .info_3 {
  543. padding: 80px !important;
  544. margin-top: 50px !important;
  545. background: #fff;
  546. .title {
  547. color: #000;
  548. display: inline-block;
  549. padding-bottom: 20px;
  550. font-size: $global-font-size-30;
  551. border-bottom: 5px solid #378cff;
  552. cursor: pointer;
  553. }
  554. .content {
  555. display: flex;
  556. flex-direction: column;
  557. justify-content: center;
  558. align-items: center;
  559. .thr_cont {
  560. text-align: center;
  561. margin: 10px 0;
  562. width: 100%;
  563. .thr_1 {
  564. color: #000;
  565. display: inline-block;
  566. padding-bottom: 10px;
  567. border-bottom: 5px solid #378cff;
  568. font-size: $global-font-size-20;
  569. cursor: pointer;
  570. }
  571. .thr_2 {
  572. padding: 20px;
  573. }
  574. }
  575. .button {
  576. cursor: pointer;
  577. margin-top: 70px !important;
  578. justify-content: center;
  579. display: flex !important;
  580. align-items: center;
  581. width: 136px;
  582. height: 44px;
  583. color: #fff;
  584. font-size: 16px;
  585. background-image: linear-gradient(90deg, #0455da 0%, #378cff 100%), linear-gradient(#0455da, #0455da);
  586. background-blend-mode: normal, normal;
  587. border-radius: 4px;
  588. }
  589. :deep(table) {
  590. border-collapse: collapse !important;
  591. width: 100% !important;
  592. text-align: center !important;
  593. }
  594. :deep(th) {
  595. border: 1px solid #ddd !important;
  596. padding: 8px !important;
  597. }
  598. :deep(td) {
  599. border: 1px solid #ddd !important;
  600. padding: 8px !important;
  601. }
  602. :deep(table tr:nth-child(even)) {
  603. background-color: #f2f2f2 !important;
  604. }
  605. :deep(table tr:hover) {
  606. background-color: #ddd !important;
  607. }
  608. }
  609. .list {
  610. margin: 20px 0 30px 0;
  611. font-size: $global-font-size-20;
  612. .box-card {
  613. .clearfix {
  614. span {
  615. font-weight: bold;
  616. }
  617. }
  618. .box-content {
  619. .content_1 {
  620. margin: 5px 0 15px 0;
  621. span {
  622. color: #666;
  623. }
  624. }
  625. }
  626. }
  627. }
  628. }
  629. }
  630. }
  631. </style>