123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <custom-layout class="main">
- <div class="two">
- <div class="w_1300">
- <custom-search :cityList="cityList" :plateList="plateList" :fields="fields" :searchFields="searchFields" @toSearchInfo="toSearchInfo"></custom-search>
- </div>
- </div>
- <el-col :span="24" class="thr">
- <div class="w_1300">
- <el-row :gutter="16">
- <el-col :span="6" v-for="(item, index) in list" :key="index" @click="toView(item)">
- <div class="list">
- <el-image class="image" :src="getUrl(item.file)" fit="cover"> </el-image>
- <el-col :span="24" class="name textOne">
- <el-tooltip effect="dark" :content="item.name" placement="top">
- {{ item.name || '暂无名称' }}
- </el-tooltip>
- </el-col>
- <el-col :span="24" class="other_1 textOne">
- <span>建设主体:</span>
- {{ item.build || '暂无建设主体' }}
- </el-col>
- <el-col :span="24" class="other_1 textOne">
- <span>运营主体:</span>
- {{ item.operate || '暂无运营主体' }}
- </el-col>
- <el-col :span="24" class="other_1 textOne">
- <span>服务产业领域:</span>
- {{ item.field || '暂无服务产业领域' }}
- </el-col>
- <el-col :span="24" class="other_1 textOne">
- <span>地址:</span>
- {{ item.address || '暂无地址' }}
- </el-col>
- <el-col :span="24" class="other_1 textOne">
- <span>联系人:</span>
- {{ item.contacts || '暂无联系人' }}
- </el-col>
- <el-col :span="24" class="other_1 textOne">
- <span>联系电话:</span>
- {{ item.phone || '暂无联系电话' }}
- </el-col>
- </div>
- </el-col>
- </el-row>
- </div>
- </el-col>
- <el-col :span="24" class="four">
- <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
- </el-col>
- </custom-layout>
- </template>
- <script setup>
- // 接口
- import { FootplateStore } from '@/store/api/platform/footplate'
- import { RegionStore } from '@/store/api/system/region'
- import { SectorStore } from '@/store/api/platform/sector'
- const store = FootplateStore()
- const regionStore = RegionStore()
- const sectorStore = SectorStore()
- // 加载中
- const loading = ref(false)
- // 路由
- const router = useRouter()
- const cityList = ref([])
- const plateList = ref([])
- // 列表
- const searchForm = ref({})
- const list = ref([])
- let skip = 0
- let limit = inject('limit')
- const total = ref(6)
- const fields = ref([
- { model: 'name', label: '中试平台/实验室名称' },
- { model: 'build', label: '建设主体' },
- { model: 'operate', label: '运营主体' },
- { model: 'field', label: '服务产业领域' }
- ])
- const searchFields = ref([
- { title: '行业', type: '1', list: plateList },
- { title: '所在地', type: '3', list: cityList }
- ])
- // 请求
- onMounted(async () => {
- loading.value = true
- await searchOther()
- await search({ skip, limit })
- loading.value = false
- })
- const searchOther = async () => {
- let res
- res = await regionStore.list({ level: 'city', parent_code: 22 })
- if (res.errcode == '0') cityList.value = res.data
- cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
- res = await sectorStore.query({ is_use: '0' })
- if (res.errcode == '0') plateList.value = res.data
- plateList.value.unshift({ id: '-1', title: '不限', is_active: true })
- }
- const search = async (query = { skip, limit }) => {
- skip = query.skip
- limit = query.limit
- const info = { skip: query.skip, limit: query.limit, is_use: '0', status: '1', ...searchForm.value }
- const res = await store.list(info)
- if (res.errcode == '0') {
- list.value = res.data
- total.value = res.total
- }
- }
- // 搜索
- const toSearchInfo = async (data) => {
- searchForm.value = data
- await search({ skip, limit })
- }
- // 查看
- const toView = (item) => {
- router.push({ path: '/platform/detail', query: { id: item.id || item._id } })
- }
- const currentPage = ref(1)
- // 分页
- const changePage = (page = currentPage.value) => {
- search({ skip: (page - 1) * limit, limit: limit })
- }
- const sizeChange = (limits) => {
- limit = limits
- currentPage.value = 1
- search({ skip: 0, limit: limit })
- }
- const getUrl = (item) => {
- if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
- }
- </script>
- <style scoped lang="scss">
- .main {
- .one {
- .image {
- width: 100%;
- height: 350px;
- }
- }
- .two {
- margin: 10px 0;
- background-color: $global-color-fff;
- }
- .thr {
- .list {
- padding: 15px;
- border: 1px solid #f2f4f6;
- border-radius: 8px;
- margin: 0 0 15px 0;
- .image {
- width: 100%;
- height: 190px;
- }
- .name {
- font-size: $global-font-size-20;
- font-weight: bold;
- display: inline-block;
- margin: 8px 0;
- }
- .name:hover {
- color: #2374ff;
- cursor: pointer;
- }
- .other_1 {
- font-size: $global-font-size-18;
- margin: 0 0 5px 0;
- cursor: default;
- span {
- color: #666;
- }
- }
- }
- }
- .four {
- display: flex;
- justify-content: center;
- margin: 20px 0;
- }
- }
- </style>
|