index.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. import { onBeforeRouteLeave } from 'vue-router'
  55. // 接口
  56. import { FootplateStore } from '@/store/api/platform/footplate'
  57. import { RegionStore } from '@/store/api/system/region'
  58. import { SectorStore } from '@/store/api/platform/sector'
  59. const store = FootplateStore()
  60. const regionStore = RegionStore()
  61. const sectorStore = SectorStore()
  62. // 加载中
  63. const loading = ref(false)
  64. // 路由
  65. const router = useRouter()
  66. const cityList = ref([])
  67. const plateList = ref([])
  68. // 列表
  69. const searchForm = ref({})
  70. const list = ref([])
  71. let skip = 0
  72. let limit = inject('limit')
  73. const total = ref(6)
  74. const fields = ref([
  75. { model: 'name', label: '中试平台/实验室名称' },
  76. { model: 'build', label: '建设主体' },
  77. { model: 'operate', label: '运营主体' },
  78. { model: 'field', label: '服务产业领域' }
  79. ])
  80. const searchFields = ref([
  81. { title: '行业', type: '1', list: plateList },
  82. { title: '所在地', type: '3', list: cityList }
  83. ])
  84. // 请求
  85. onMounted(async () => {
  86. loading.value = true
  87. await searchOther()
  88. await search({ skip, limit })
  89. loading.value = false
  90. })
  91. const searchOther = async () => {
  92. let res
  93. res = await regionStore.list({ level: 'city', parent_code: 22 })
  94. if (res.errcode == '0') cityList.value = res.data
  95. cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
  96. res = await sectorStore.query({ is_use: '0' })
  97. if (res.errcode == '0') plateList.value = res.data
  98. plateList.value.unshift({ id: '-1', title: '不限', is_active: true })
  99. }
  100. const search = async (query = { skip, limit }) => {
  101. skip = query.skip
  102. limit = query.limit
  103. const info = { skip: query.skip, limit: query.limit, is_use: '0', status: '1', ...searchForm.value }
  104. const res = await store.list(info)
  105. if (res.errcode == '0') {
  106. list.value = res.data
  107. total.value = res.total
  108. }
  109. }
  110. // 搜索
  111. const toSearchInfo = async (data) => {
  112. searchForm.value = data
  113. await search({ skip, limit })
  114. }
  115. // 查看
  116. const toView = (item) => {
  117. router.push({ path: '/platform/detail', query: { id: item.id || item._id } })
  118. }
  119. const currentPage = ref(1)
  120. // 分页
  121. const changePage = (page = currentPage.value) => {
  122. search({ skip: (page - 1) * limit, limit: limit })
  123. }
  124. const sizeChange = (limits) => {
  125. limit = limits
  126. currentPage.value = 1
  127. search({ skip: 0, limit: limit })
  128. }
  129. const getUrl = (item) => {
  130. if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
  131. }
  132. const scrollTop = ref(0)
  133. onActivated(() => {
  134. // 配置参数依赖于浏览器
  135. document.documentElement.scrollTop = scrollTop.value
  136. })
  137. onBeforeRouteLeave((to, from, next) => {
  138. scrollTop.value = document.documentElement.scrollTop || document.body.scrollTop
  139. next()
  140. })
  141. </script>
  142. <style scoped lang="scss">
  143. .main {
  144. .one {
  145. .image {
  146. width: 100%;
  147. height: 350px;
  148. }
  149. }
  150. .two {
  151. margin: 10px 0;
  152. background-color: $global-color-fff;
  153. }
  154. .thr {
  155. .list {
  156. padding: 15px;
  157. border: 1px solid #f2f4f6;
  158. border-radius: 8px;
  159. margin: 0 0 15px 0;
  160. .image {
  161. width: 100%;
  162. height: 190px;
  163. }
  164. .name {
  165. font-size: $global-font-size-20;
  166. font-weight: bold;
  167. display: inline-block;
  168. margin: 8px 0;
  169. }
  170. .name:hover {
  171. color: #2374ff;
  172. cursor: pointer;
  173. }
  174. .other_1 {
  175. font-size: $global-font-size-18;
  176. margin: 0 0 5px 0;
  177. cursor: default;
  178. span {
  179. color: #666;
  180. }
  181. }
  182. }
  183. }
  184. .four {
  185. display: flex;
  186. justify-content: center;
  187. margin: 20px 0;
  188. }
  189. }
  190. </style>