matchDetail.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697
  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. <template #default="scope">
  153. {{ scope.row.no || '——' }}
  154. </template>
  155. </el-table-column>
  156. <el-table-column align="center" prop="user_name" label="姓名">
  157. <template #default="scope">
  158. {{ scope.row.user_name || '——' }}
  159. </template>
  160. </el-table-column>
  161. <el-table-column align="center" prop="project_name" label="项目名称">
  162. <template #default="scope">
  163. {{ scope.row.project_name || '——' }}
  164. </template>
  165. </el-table-column>
  166. <el-table-column align="center" prop="person_unit" label="单位名称">
  167. <template #default="scope">
  168. {{ scope.row.person_unit || '——' }}
  169. </template>
  170. </el-table-column>
  171. <el-table-column align="center" prop="start_time" label="初审时间">
  172. <template #default="scope">
  173. {{ scope.row.start_time || '——' }}
  174. </template>
  175. </el-table-column>
  176. </el-table>
  177. </div>
  178. </div>
  179. <div class="info_3" v-if="info.form == '4' && info.ext_status == '6'">
  180. <div class="title">决赛结果公示</div>
  181. <div class="content_1" style="margin: 20px 0 0 0">
  182. <el-table :data="finalsList" :header-cell-style="{ backgroundColor: '#edf3ff' }">
  183. <template #empty>
  184. <el-empty description="暂无数据" />
  185. </template>
  186. <el-table-column align="center" prop="no" label="编号" width="100">
  187. <template #default="scope">
  188. {{ scope.row.no || '——' }}
  189. </template>
  190. </el-table-column>
  191. <el-table-column align="center" prop="user_name" label="姓名">
  192. <template #default="scope">
  193. {{ scope.row.user_name || '——' }}
  194. </template>
  195. </el-table-column>
  196. <el-table-column align="center" prop="project_name" label="项目名称">
  197. <template #default="scope">
  198. {{ scope.row.project_name || '——' }}
  199. </template>
  200. </el-table-column>
  201. <el-table-column align="center" prop="person_unit" label="单位名称">
  202. <template #default="scope">
  203. {{ scope.row.person_unit || '——' }}
  204. </template>
  205. </el-table-column>
  206. <el-table-column align="center" prop="start_time" label="初审时间">
  207. <template #default="scope">
  208. {{ scope.row.start_time || '——' }}
  209. </template>
  210. </el-table-column>
  211. <el-table-column align="center" prop="final_start_time" label="决赛时间">
  212. <template #default="scope">
  213. {{ scope.row.final_start_time || '——' }}
  214. </template>
  215. </el-table-column>
  216. <el-table-column align="center" prop="final_order_no" label="顺序">
  217. <template #default="scope">
  218. {{ scope.row.final_order_no || '——' }}
  219. </template>
  220. </el-table-column>
  221. </el-table>
  222. </div>
  223. </div>
  224. </div>
  225. </el-col>
  226. </custom-layout>
  227. <el-dialog v-model="dialog" title="活动报名" :destroy-on-close="true" @close="toClose">
  228. <form1 v-if="info.form != '3'"></form1>
  229. <form2 v-else></form2>
  230. </el-dialog>
  231. </template>
  232. <script setup>
  233. import moment from 'moment'
  234. import { get, cloneDeep } from 'lodash-es'
  235. const $checkRes = inject('$checkRes')
  236. // 组件
  237. import form1 from './parts/form-1.vue'
  238. import form2 from './parts/form-2.vue'
  239. import time from '/images/time.png'
  240. import { UserStore } from '@/store/user'
  241. const userStore = UserStore()
  242. const user = computed(() => userStore.user)
  243. // 接口
  244. import { DictDataStore } from '@/store/api/system/dictData'
  245. import { MatchStore } from '@/store/api/platform/match'
  246. import { ContactApplyStore } from '@/store/api/user/contactApply'
  247. import { SignStore } from '@/store/api/platform/sign'
  248. const dictDataStore = DictDataStore()
  249. const store = MatchStore()
  250. const signStore = SignStore()
  251. const contactApplyStore = ContactApplyStore()
  252. import { MatchExtStore } from '@/store/api/platform/matchExt'
  253. const matchExtStore = MatchExtStore()
  254. // 收藏
  255. import { CollectionStore } from '@/store/api/platform/collection'
  256. const collectionStore = CollectionStore()
  257. // 加载中
  258. const loading = ref(false)
  259. // 路由
  260. const route = useRoute()
  261. // 路由
  262. const router = useRouter()
  263. const info = ref({})
  264. // 报名
  265. const signList = ref([])
  266. // 弹框
  267. const cardTypeList = ref([])
  268. const typeList = ref([])
  269. const statusList = ref([])
  270. const industryList = ref([])
  271. const signTypeList = ref([])
  272. const ruleFormRef = ref()
  273. const form = ref({})
  274. // 初审公示
  275. const preliminaryList = ref([])
  276. // 决赛公示
  277. const finalsList = ref([])
  278. const validatePhoneNumber = (rule, value, callback) => {
  279. const reg = /^1[3-9]\d{9}$/
  280. if (!value) {
  281. return callback(new Error('手机号不能为空'))
  282. }
  283. if (!reg.test(value)) {
  284. return callback(new Error('请输入正确的手机号'))
  285. }
  286. callback()
  287. }
  288. const validateCardNumber = (rule, value, callback) => {
  289. var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/
  290. if (!value) {
  291. return callback(new Error('证件号码不能为空'))
  292. }
  293. if (!reg.test(value)) {
  294. return callback(new Error('请输入正确的证件号码'))
  295. }
  296. callback()
  297. }
  298. const rules = reactive({
  299. name: [{ required: true, message: '请输入姓名', trigger: 'blur' }],
  300. phone: [{ required: true, validator: validatePhoneNumber, trigger: 'blur' }],
  301. cardType: [{ required: true, message: '请选择证件类型', trigger: 'change' }],
  302. card: [{ required: true, validator: validateCardNumber, trigger: 'change' }],
  303. remark: [{ required: true, message: '请输入备注', trigger: 'blur' }]
  304. })
  305. const dialog = ref(false)
  306. // 请求
  307. onMounted(async () => {
  308. loading.value = true
  309. await searchOther()
  310. await search()
  311. loading.value = false
  312. })
  313. const searchOther = async () => {
  314. let result
  315. // 证件类型
  316. result = await dictDataStore.query({ code: 'cardType', is_use: '0' })
  317. if ($checkRes(result)) cardTypeList.value = result.data
  318. // 赛事类型
  319. result = await dictDataStore.query({ code: 'activeType', is_use: '0' })
  320. if ($checkRes(result)) typeList.value = result.data
  321. // 赛事状态
  322. result = await dictDataStore.query({ code: 'matchStatus', is_use: '0' })
  323. if ($checkRes(result)) statusList.value = result.data
  324. // 行业
  325. result = await dictDataStore.query({ code: 'matchIndustry', is_use: '0' })
  326. if ($checkRes(result)) industryList.value = result.data
  327. // 报名类型
  328. result = await dictDataStore.query({ code: 'signType', is_use: '0' })
  329. if ($checkRes(result)) signTypeList.value = result.data
  330. }
  331. const search = async () => {
  332. let id = route.query.id
  333. if (id) {
  334. let res = await store.fetch(id)
  335. if (res.errcode == '0') {
  336. info.value = res.data
  337. if (res.data.form == '3') {
  338. const arr = await signStore.query({ match: res.data.id, status: '1', type: '1' })
  339. if (arr.errcode == '0') signList.value = arr.data
  340. }
  341. if (res.data.form == '4' && res.data.ext_status == '3') {
  342. await searchStep3()
  343. }
  344. if (res.data.form == '4' && res.data.ext_status == '6') {
  345. await searchStep5()
  346. }
  347. }
  348. }
  349. }
  350. // 查询初审公示名单
  351. const searchStep3 = async () => {
  352. let id = route.query.id
  353. let res = await matchExtStore.step3Name(id)
  354. if (res.errcode == '0') {
  355. preliminaryList.value = res.data
  356. }
  357. }
  358. // 查询决赛公示名单
  359. const searchStep5 = async () => {
  360. let id = route.query.id
  361. const data = {
  362. match_id: id,
  363. final_confirm: '0'
  364. }
  365. let res = await matchExtStore.step5Name(data)
  366. if (res.errcode == '0') {
  367. finalsList.value = res.data
  368. }
  369. }
  370. // 字典数据转换
  371. const getDict = (data, model) => {
  372. if (data) {
  373. let res
  374. if (model == 'type') res = typeList.value.find((f) => f.value == data)
  375. else if (model == 'status') res = statusList.value.find((f) => f.value == data)
  376. else if (model == 'industry') res = industryList.value.find((f) => f.value == data)
  377. return get(res, 'label')
  378. }
  379. }
  380. // 报名参赛
  381. const toSign = () => {
  382. if (info.value.form == '4') {
  383. router.push({ path: `/preliminary`, query: { id: info.value.id || info.value._id } })
  384. } else {
  385. if (info.value.match_type == '1') {
  386. window.open(info.value.href, '_blank') // 在新标签页中打开URL
  387. } else dialog.value = true
  388. }
  389. }
  390. const toClose = () => {
  391. dialog.value = false
  392. form.value = {}
  393. }
  394. // 报名
  395. const submitForm = async (formEl) => {
  396. if (!formEl) return
  397. await formEl.validate(async (valid, fields) => {
  398. if (valid) {
  399. const data = cloneDeep(form.value)
  400. const other = {
  401. match: info.value.id,
  402. time: moment().format('YYYY-MM-DD')
  403. }
  404. if (user.value.id) other.user = user.value.id
  405. let res = await signStore.create({ ...data, ...other })
  406. if ($checkRes(res, true)) toClose()
  407. } else {
  408. console.log('error submit!', fields)
  409. }
  410. })
  411. }
  412. const toCollect = async () => {
  413. if (user.value.id) {
  414. info.value.is_collection = !info.value.is_collection
  415. let res
  416. let message
  417. const data = {
  418. user: user.value.id,
  419. source: info.value.id,
  420. type: 'match',
  421. time: moment().format('YYYY-MM-DD')
  422. }
  423. if (info.value.is_collection) {
  424. message = '收藏成功'
  425. res = await collectionStore.create(data)
  426. } else {
  427. message = '取消收藏成功'
  428. res = await collectionStore.cancel(data)
  429. }
  430. if (res.errcode === 0) {
  431. ElMessage({ message, type: 'success' })
  432. await search()
  433. }
  434. } else ElMessage({ message: '未登录!', type: 'error' })
  435. }
  436. const toChat = (item) => {
  437. if (user.value.id) {
  438. ElMessageBox.confirm(`您确认要获取联系方式?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  439. .then(async () => {
  440. let source_id = item.id
  441. let source = 'sign'
  442. let apply_user = user.value.id
  443. const obj = { source_id, source, apply_user }
  444. const res = await contactApplyStore.signCreate(obj)
  445. if (res.errcode == 0) {
  446. ElMessage({ message: '申请联系方式等待消息通知', type: 'success' })
  447. } else {
  448. ElMessageBox.confirm(res.errmsg, '提示', { confirmButtonText: '确定', type: 'warning', showCancelButton: false, center: true })
  449. .then(() => {})
  450. .catch(() => {})
  451. }
  452. })
  453. .catch(() => {})
  454. } else ElMessage({ message: '未登录!', type: 'error' })
  455. }
  456. // provide
  457. provide('form', form)
  458. provide('rules', rules)
  459. provide('ruleFormRef', ruleFormRef)
  460. provide('cardTypeList', cardTypeList)
  461. provide('signTypeList', signTypeList)
  462. provide('submitForm', submitForm)
  463. </script>
  464. <style scoped lang="scss">
  465. .main {
  466. .one {
  467. background: url(/images/matchBg.jpg) no-repeat;
  468. background-position: center top;
  469. .info_1 {
  470. padding: 90px 80px 0 80px;
  471. .name {
  472. font-size: $global-font-size-36;
  473. width: 70%;
  474. font-weight: bold;
  475. }
  476. .collect {
  477. display: flex;
  478. align-items: center;
  479. width: 35%;
  480. font-size: $global-font-size-20;
  481. color: #929292;
  482. cursor: default;
  483. span {
  484. margin: 0 0 0 5px;
  485. }
  486. }
  487. .iscollect {
  488. color: #1073ff;
  489. }
  490. .brief {
  491. font-size: $global-font-size-20;
  492. margin-top: 25px;
  493. color: #000;
  494. }
  495. .money {
  496. font-size: $global-font-size-20;
  497. margin-top: 25px;
  498. color: red;
  499. }
  500. .other {
  501. display: flex;
  502. align-items: center;
  503. margin: 10px 0;
  504. font-size: $global-font-size-18;
  505. .type {
  506. font-size: $global-font-size-12;
  507. overflow: hidden;
  508. text-overflow: ellipsis;
  509. white-space: nowrap;
  510. width: 70px;
  511. height: 25px;
  512. border-radius: 4px;
  513. text-align: center;
  514. line-height: 25px;
  515. font-weight: 700;
  516. color: #2a78ff;
  517. background: #eaf1ff;
  518. }
  519. .status {
  520. font-size: $global-font-size-12;
  521. overflow: hidden;
  522. text-overflow: ellipsis;
  523. white-space: nowrap;
  524. width: 70px;
  525. height: 25px;
  526. border-radius: 4px;
  527. text-align: center;
  528. line-height: 25px;
  529. font-weight: 700;
  530. }
  531. .status0 {
  532. color: #ff9407;
  533. background-color: #fff2e1;
  534. }
  535. .status1 {
  536. color: #2a78ff;
  537. background: #eaf1ff;
  538. }
  539. .status2 {
  540. color: #4f5050;
  541. background: #dcdcdd;
  542. }
  543. }
  544. .time {
  545. display: flex;
  546. margin-top: 60px !important;
  547. color: #666;
  548. font-size: $global-font-size-16;
  549. .image {
  550. width: 18px;
  551. height: 18px;
  552. margin: 0 5px 0 0;
  553. }
  554. }
  555. .button {
  556. cursor: pointer;
  557. margin-top: 70px !important;
  558. justify-content: center;
  559. display: flex !important;
  560. align-items: center;
  561. width: 136px;
  562. height: 44px;
  563. color: #fff;
  564. font-size: 16px;
  565. background-image: linear-gradient(90deg, #0455da 0%, #378cff 100%), linear-gradient(#0455da, #0455da);
  566. background-blend-mode: normal, normal;
  567. border-radius: 4px;
  568. }
  569. }
  570. .info_2 {
  571. padding: 0 80px;
  572. margin-top: 70px !important;
  573. .title {
  574. color: #000;
  575. display: inline-block;
  576. padding-bottom: 20px;
  577. font-size: $global-font-size-30;
  578. border-bottom: 5px solid #378cff;
  579. cursor: pointer;
  580. }
  581. .content {
  582. display: flex;
  583. margin-top: 50px;
  584. .content_1 {
  585. height: 200px;
  586. width: 630px;
  587. text-indent: 2em;
  588. font-size: 16px;
  589. line-height: 36px;
  590. color: #333333;
  591. overflow: hidden;
  592. }
  593. .image {
  594. margin-left: 66px;
  595. width: 331px;
  596. height: 182px;
  597. }
  598. }
  599. }
  600. .info_3 {
  601. padding: 80px !important;
  602. margin-top: 50px !important;
  603. background: #fff;
  604. .title {
  605. color: #000;
  606. display: inline-block;
  607. padding-bottom: 20px;
  608. font-size: $global-font-size-30;
  609. border-bottom: 5px solid #378cff;
  610. cursor: pointer;
  611. }
  612. .content {
  613. display: flex;
  614. flex-direction: column;
  615. justify-content: center;
  616. align-items: center;
  617. .thr_cont {
  618. text-align: center;
  619. margin: 10px 0;
  620. width: 100%;
  621. .thr_1 {
  622. color: #000;
  623. display: inline-block;
  624. padding-bottom: 10px;
  625. border-bottom: 5px solid #378cff;
  626. font-size: $global-font-size-20;
  627. cursor: pointer;
  628. }
  629. .thr_2 {
  630. padding: 20px;
  631. }
  632. }
  633. .button {
  634. cursor: pointer;
  635. margin-top: 70px !important;
  636. justify-content: center;
  637. display: flex !important;
  638. align-items: center;
  639. width: 136px;
  640. height: 44px;
  641. color: #fff;
  642. font-size: 16px;
  643. background-image: linear-gradient(90deg, #0455da 0%, #378cff 100%), linear-gradient(#0455da, #0455da);
  644. background-blend-mode: normal, normal;
  645. border-radius: 4px;
  646. }
  647. :deep(table) {
  648. border-collapse: collapse !important;
  649. width: 100% !important;
  650. text-align: center !important;
  651. }
  652. :deep(th) {
  653. border: 1px solid #ddd !important;
  654. padding: 8px !important;
  655. }
  656. :deep(td) {
  657. border: 1px solid #ddd !important;
  658. padding: 8px !important;
  659. }
  660. :deep(table tr:nth-child(even)) {
  661. background-color: #f2f2f2 !important;
  662. }
  663. :deep(table tr:hover) {
  664. background-color: #ddd !important;
  665. }
  666. }
  667. .list {
  668. margin: 20px 0 30px 0;
  669. font-size: $global-font-size-20;
  670. .box-card {
  671. .clearfix {
  672. span {
  673. font-weight: bold;
  674. }
  675. }
  676. .box-content {
  677. .content_1 {
  678. margin: 5px 0 15px 0;
  679. span {
  680. color: #666;
  681. }
  682. }
  683. }
  684. }
  685. }
  686. }
  687. }
  688. }
  689. </style>