index.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <template>
  2. <custom-layout class="main">
  3. <div class="two">
  4. <div class="w_1300">
  5. <custom-search :cityList="cityList" :plateList="plateList" :fields="fields" :searchFields="searchFields" @toSearchInfo="toSearchInfo"></custom-search>
  6. </div>
  7. </div>
  8. <el-col :span="24" class="thr">
  9. <div class="w_1300">
  10. <el-row :gutter="16">
  11. <el-col :span="6" v-for="(item, index) in list" :key="index" @click="toView(item)">
  12. <div class="list">
  13. <el-image class="image" :src="getUrl(item.file)" fit="cover"> </el-image>
  14. <el-col :span="24" class="name textOne">
  15. <el-tooltip effect="dark" :content="item.name" placement="top">
  16. {{ item.name || '暂无名称' }}
  17. </el-tooltip>
  18. </el-col>
  19. <el-col :span="24" class="other_1 textOne">
  20. <span>建设主体:</span>
  21. {{ item.build || '暂无建设主体' }}
  22. </el-col>
  23. <el-col :span="24" class="other_1 textOne">
  24. <span>运营主体:</span>
  25. {{ item.operate || '暂无运营主体' }}
  26. </el-col>
  27. <el-col :span="24" class="other_1 textOne">
  28. <span>服务产业领域:</span>
  29. {{ item.field || '暂无服务产业领域' }}
  30. </el-col>
  31. <el-col :span="24" class="other_1 textOne">
  32. <span>地址:</span>
  33. {{ item.address || '暂无地址' }}
  34. </el-col>
  35. <el-col :span="24" class="other_1 textOne">
  36. <span>联系人:</span>
  37. {{ item.contacts || '暂无联系人' }}
  38. </el-col>
  39. <el-col :span="24" class="other_1 textOne">
  40. <span>联系电话:</span>
  41. {{ item.phone || '暂无联系电话' }}
  42. </el-col>
  43. </div>
  44. </el-col>
  45. </el-row>
  46. </div>
  47. </el-col>
  48. <el-col :span="24" class="four">
  49. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  50. </el-col>
  51. </custom-layout>
  52. </template>
  53. <script setup>
  54. // 接口
  55. import { FootplateStore } from '@/store/api/platform/footplate'
  56. import { RegionStore } from '@/store/api/system/region'
  57. import { SectorStore } from '@/store/api/platform/sector'
  58. const store = FootplateStore()
  59. const regionStore = RegionStore()
  60. const sectorStore = SectorStore()
  61. // 加载中
  62. const loading = ref(false)
  63. // 路由
  64. const router = useRouter()
  65. const cityList = ref([])
  66. const plateList = ref([])
  67. // 列表
  68. const searchForm = ref({})
  69. const list = ref([])
  70. let skip = 0
  71. let limit = inject('limit')
  72. const total = ref(6)
  73. const fields = ref([
  74. { model: 'name', label: '中试平台/实验室名称' },
  75. { model: 'build', label: '建设主体' },
  76. { model: 'operate', label: '运营主体' },
  77. { model: 'field', label: '服务产业领域' }
  78. ])
  79. const searchFields = ref([
  80. { title: '行业', type: '1', list: plateList },
  81. { title: '所在地', type: '3', list: cityList }
  82. ])
  83. // 请求
  84. onMounted(async () => {
  85. loading.value = true
  86. await searchOther()
  87. await search({ skip, limit })
  88. loading.value = false
  89. })
  90. const searchOther = async () => {
  91. let res
  92. res = await regionStore.list({ level: 'city', parent_code: 22 })
  93. if (res.errcode == '0') cityList.value = res.data
  94. cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
  95. res = await sectorStore.query({ is_use: '0' })
  96. if (res.errcode == '0') plateList.value = res.data
  97. plateList.value.unshift({ id: '-1', title: '不限', is_active: true })
  98. }
  99. const search = async (query = { skip, limit }) => {
  100. skip = query.skip
  101. limit = query.limit
  102. const info = { skip: query.skip, limit: query.limit, is_use: '0', status: '1', ...searchForm.value }
  103. const res = await store.list(info)
  104. if (res.errcode == '0') {
  105. list.value = res.data
  106. total.value = res.total
  107. }
  108. }
  109. // 搜索
  110. const toSearchInfo = async (data) => {
  111. searchForm.value = data
  112. await search({ skip, limit })
  113. }
  114. // 查看
  115. const toView = (item) => {
  116. router.push({ path: '/platform/detail', query: { id: item.id || item._id } })
  117. }
  118. const currentPage = ref(1)
  119. // 分页
  120. const changePage = (page = currentPage.value) => {
  121. search({ skip: (page - 1) * limit, limit: limit })
  122. }
  123. const sizeChange = (limits) => {
  124. limit = limits
  125. currentPage.value = 1
  126. search({ skip: 0, limit: limit })
  127. }
  128. const getUrl = (item) => {
  129. if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
  130. }
  131. </script>
  132. <style scoped lang="scss">
  133. .main {
  134. .one {
  135. .image {
  136. width: 100%;
  137. height: 350px;
  138. }
  139. }
  140. .two {
  141. margin: 10px 0;
  142. background-color: $global-color-fff;
  143. }
  144. .thr {
  145. .list {
  146. padding: 15px;
  147. border: 1px solid #f2f4f6;
  148. border-radius: 8px;
  149. margin: 0 0 15px 0;
  150. .image {
  151. width: 100%;
  152. height: 190px;
  153. }
  154. .name {
  155. font-size: $global-font-size-20;
  156. font-weight: bold;
  157. display: inline-block;
  158. margin: 8px 0;
  159. }
  160. .name:hover {
  161. color: #2374ff;
  162. cursor: pointer;
  163. }
  164. .other_1 {
  165. font-size: $global-font-size-18;
  166. margin: 0 0 5px 0;
  167. cursor: default;
  168. span {
  169. color: #666;
  170. }
  171. }
  172. }
  173. }
  174. .four {
  175. display: flex;
  176. justify-content: center;
  177. margin: 20px 0;
  178. }
  179. }
  180. </style>