123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
- <el-col :span="24" class="innovation">
- <el-image class="image" :src="innovation" fit="fill" />
- </el-col>
- <div class="w_1200">
- <el-col :span="24" class="one">
- <el-row class="one_1">
- <el-col :span="12" class="oneLeft">
- <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
- <el-tab-pane label="全部比赛" name="first"></el-tab-pane>
- <el-tab-pane label="大奖赛" name="second"></el-tab-pane>
- <el-tab-pane label="经典赛" name="third"></el-tab-pane>
- <el-tab-pane label="训练赛" name="fourth"></el-tab-pane>
- </el-tabs>
- </el-col>
- <el-col :span="12" class="oneRight">
- <el-input v-model="input" placeholder="请输入赛题名称搜索..." class="input">
- <template #append>
- <el-button :icon="Search" />
- </template>
- </el-input>
- </el-col>
- </el-row>
- <el-row class="one_2" v-for="(val, indexs) in searchList" :key="indexs">
- <el-col :span="1" class="left">{{ val.title }}:</el-col>
- <el-col :span="23" class="right">
- <a-button
- class="title"
- v-for="(item, index) in val.list"
- :key="index"
- type="link"
- size="samll"
- >
- {{ item.label }}
- </a-button>
- </el-col>
- </el-row>
- </el-col>
- <el-col :span="24" class="two">
- <el-row
- :span="24"
- class="list"
- v-for="(item, index) in list"
- :key="index"
- @click="toView(item)"
- >
- <div class="join" :class="[item.match_status == '0' ? 'join0' : 'join1']">
- {{ getDict(item.match_status, 'status') }}
- </div>
- <el-col :span="4" class="left">
- <el-image
- v-if="item.file && item.file.length > 0"
- class="image"
- :src="item.file[0].url"
- fit="fill"
- />
- <el-image v-else class="image" :src="news" fit="fill" />
- </el-col>
- <el-col :span="20" class="right">
- <el-col :span="24" class="right_1">
- <span class="type">{{ getDict(item.form, 'form') }}</span>
- <span class="title">{{ item.name || '暂无比赛名称' }}</span>
- </el-col>
- <el-col :span="24" class="right_2">
- 组织单位:{{ item.organization || '暂无组织单位' }}
- </el-col>
- <el-col :span="24" class="right_3">
- <el-col :span="20" class="right_3Left">
- 比赛日期:{{ getTime(item.time) }}
- </el-col>
- <el-col :span="4" class="right_3Right">
- {{ item.money || '免费' }}
- </el-col>
- </el-col>
- <el-col :span="24" class="right_4">
- <el-tag type="primary">{{ getDict(item.type, 'type') }}</el-tag>
- </el-col>
- </el-col>
- </el-row>
- </el-col>
- <el-col :span="24" class="thr">
- <el-pagination
- background
- layout="total, prev, pager, next"
- :page-sizes="[10, 20, 50, 100, 200]"
- :total="total"
- :page-size="limit"
- v-model:current-page="currentPage"
- @current-change="changePage"
- @size-change="sizeChange"
- >
- </el-pagination>
- </el-col>
- </div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup>
- const $checkRes = inject('$checkRes')
- import { Search } from '@element-plus/icons-vue'
- import { get } from 'lodash-es'
- // 接口
- import { DictDataStore } from '@/store/api/system/dictData'
- import { MatchStore } from '@/store/api/platform/match'
- const store = MatchStore()
- const dictDataStore = DictDataStore()
- // 图片引入
- import innovation from '@/assets/innovation.png'
- import news from '@/assets/news.png'
- // 路由
- const router = useRouter()
- // 加载中
- const loading = ref(false)
- const searchForm = ref({})
- const searchList = ref([
- {
- title: '状态',
- list: [
- { value: '0', label: '全部' },
- { value: '1', label: '可报名' },
- { value: '2', label: '已报名' },
- { value: '3', label: '不可报名' }
- ]
- },
- {
- title: '类别',
- list: [
- { value: '0', label: '全部' },
- { value: '1', label: '智能算法' },
- { value: '2', label: '方案应用' }
- ]
- },
- {
- title: '技术',
- list: [
- { value: '0', label: '数据挖掘' },
- { value: '1', label: '自然语言处理' },
- { value: '2', label: '计算机视觉' },
- { value: '3', label: 'AI其他' }
- ]
- }
- ])
- // 搜索
- const input = ref('')
- // 列表
- const list = ref([])
- let skip = 0
- let limit = inject('limit')
- const total = ref(20)
- const typeList = ref([])
- const formList = ref([])
- const statusList = ref([])
- // 请求
- onMounted(async () => {
- loading.value = true
- await searchOther()
- await search({ skip, limit })
- loading.value = false
- })
- const searchOther = async () => {
- let result
- // 类型
- result = await dictDataStore.query({ code: 'matchType', is_use: '0' })
- if ($checkRes(result)) typeList.value = result.data
- // 类别
- result = await dictDataStore.query({ code: 'matchForm', is_use: '0' })
- if ($checkRes(result)) formList.value = result.data
- // 赛事状态
- result = await dictDataStore.query({ code: 'matchStatus', is_use: '0' })
- if ($checkRes(result)) statusList.value = result.data
- }
- const search = async (query = { skip: 0, limit }) => {
- const info = {
- skip: query.skip,
- limit: query.limit,
- ...searchForm.value,
- is_use: '0',
- status: '1'
- }
- const res = await store.query(info)
- if (res.errcode == '0') {
- list.value = res.data
- total.value = res.total
- }
- }
- const activeName = ref('first')
- const handleClick = (tab, event) => {
- console.log(tab, event)
- }
- // 字典数据转换
- const getDict = (data, model) => {
- let res
- if (model == 'form') res = formList.value.find((f) => f.value == data)
- else if (model == 'type') res = typeList.value.find((f) => f.value == data)
- else if (model == 'status') res = statusList.value.find((f) => f.value == data)
- return get(res, 'label')
- }
- // 查看
- const toView = (item) => {
- router.push({ path: '/innovation/detail', query: { id: item.id || item._id } })
- }
- // 时间
- const getTime = (data) => {
- if (data) return `${data[0]} - ${data[1]}`
- }
- </script>
- <style scoped lang="scss">
- .main {
- background: rgb(248, 248, 248);
- .innovation {
- .image {
- width: 100%;
- height: 250px;
- }
- }
- .one {
- background: #ffffff;
- border-radius: 10px;
- padding: 15px;
- margin: 10px 0;
- .one_1 {
- border-bottom: 2px solid #e4e7ed;
- :deep(.el-tabs__nav-wrap:after) {
- background-color: transparent !important;
- }
- }
- .one_2 {
- display: flex;
- align-items: center;
- padding: 10px 0;
- border-bottom: #9d9898 1px dashed;
- .left {
- text-align: center;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-family: PingFangSC-Medium;
- }
- .right {
- .title {
- color: #666;
- font-size: 14px;
- line-height: 15px;
- display: inline-block;
- overflow: hidden;
- text-decoration: none;
- }
- .title:hover {
- color: #2374ff;
- }
- }
- }
- }
- .two {
- margin-top: 20px;
- background: #ffffff;
- border-radius: 10px;
- padding: 15px;
- .list {
- display: flex;
- align-items: center;
- min-height: 150px;
- width: 100%;
- margin-bottom: 10px;
- position: relative;
- overflow: hidden;
- border: 1px solid #f5f5f5;
- .left {
- display: flex;
- align-items: center;
- justify-content: center;
- .image {
- width: 180px;
- height: 120px;
- }
- }
- .right {
- .right_1 {
- padding: 10px 0 0 0;
- .type {
- padding-left: 4px;
- padding-right: 4px;
- height: 22px;
- line-height: 20px;
- background: #f8f9fc;
- border-radius: 1px;
- border: 1px solid #dde2e7;
- font-size: 12px;
- font-family:
- PingFangSC-Regular,
- PingFang SC;
- font-weight: 400;
- color: #a9b2c6;
- text-align: center;
- vertical-align: top;
- display: inline-block;
- margin-right: 8px;
- }
- .title {
- max-width: 88%;
- display: inline-block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 16px;
- font-family:
- PingFangSC-Medium,
- PingFang SC;
- font-weight: 500;
- color: #222;
- line-height: 22px;
- }
- }
- .right_2 {
- padding: 5px 0;
- font-size: 12px;
- font-family:
- PingFangSC-Regular,
- PingFang SC;
- font-weight: 400;
- color: #666;
- }
- .right_3 {
- padding: 5px 0;
- display: flex;
- justify-content: space-between;
- .right_3Left {
- font-size: 12px;
- font-family:
- PingFangSC-Regular,
- PingFang SC;
- font-weight: 400;
- color: #949fb8;
- }
- .right_3Right {
- text-align: right;
- font-size: 16px;
- font-family:
- PingFangSC-Semibold,
- PingFang SC;
- font-weight: 600;
- color: #ff5602;
- }
- }
- .right_4 {
- padding-top: 10px;
- border-top: 1px solid #f3f3f3;
- }
- }
- .join {
- position: absolute;
- right: -23px;
- top: 10px;
- font-size: 12px;
- font-family:
- PingFangSC-Normal,
- PingFang SC;
- color: #fff;
- line-height: 21px;
- height: 21px;
- width: 100px;
- text-align: center;
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- padding-left: 9px;
- }
- .join0 {
- background: #e6f4fe;
- color: #638aa5;
- }
- .join1 {
- background: #ededed;
- color: #666c7d;
- }
- }
- }
- .thr {
- display: flex;
- flex-direction: row-reverse;
- padding: 20px;
- }
- }
- </style>
|