index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <custom-layout class="main">
  3. <div class="w_1300">
  4. <div class="one">
  5. <custom-search :cityList="cityList" :typeList="typeList" :is_search="false" :searchFields="searchFields"></custom-search>
  6. </div>
  7. <el-col :span="24" class="two">
  8. <div class="w_1300">
  9. <el-row :gutter="16">
  10. <el-col :span="6" v-for="(item, index) in list" :key="index" @click="toView(item)">
  11. <div class="list">
  12. <el-image class="image" :src="getUrl(item.file)" fit="cover"> </el-image>
  13. <el-col :span="24" class="name textOne">
  14. <el-tooltip effect="dark" :content="item.name" placement="top">
  15. {{ item.name || '暂无名称' }}
  16. </el-tooltip>
  17. </el-col>
  18. <el-col :span="24" class="other_1">
  19. <span>服务领域:</span>
  20. {{ item.field || '暂无服务领域' }}
  21. </el-col>
  22. <el-col :span="24" class="other_1">
  23. <span>登记时间:</span>
  24. {{ item.time || '暂无登记时间' }}
  25. </el-col>
  26. </div>
  27. </el-col>
  28. </el-row>
  29. </div>
  30. </el-col>
  31. <el-col :span="24" class="thr">
  32. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  33. </el-col>
  34. </div>
  35. </custom-layout>
  36. </template>
  37. <script setup>
  38. // 接口
  39. import { SupportStore } from '@/store/api/platform/support'
  40. import { RegionStore } from '@/store/api/system/region'
  41. import { DictDataStore } from '@/store/api/system/dictData'
  42. const store = SupportStore()
  43. const regionStore = RegionStore()
  44. const dictDataStore = DictDataStore()
  45. // 加载中
  46. const loading = ref(false)
  47. // 路由
  48. const router = useRouter()
  49. const cityList = ref([])
  50. const typeList = ref([])
  51. const searchForm = ref({})
  52. const list = ref([])
  53. let skip = 0
  54. let limit = 8
  55. const total = ref(0)
  56. const searchFields = ref([
  57. { title: '服务领域', type: '2', list: typeList },
  58. { title: '所在地', type: '3', list: cityList }
  59. ])
  60. // 请求
  61. onMounted(async () => {
  62. loading.value = true
  63. await searchOther()
  64. await search({ skip, limit })
  65. loading.value = false
  66. })
  67. const searchOther = async () => {
  68. let res
  69. // 地区
  70. res = await regionStore.list({ level: 'city', parent_code: 22 })
  71. if (res.errcode == '0') cityList.value = res.data
  72. cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
  73. // 技术领域
  74. res = await dictDataStore.query({ code: 'field', is_use: '0' })
  75. if (res.errcode == '0') typeList.value = res.data
  76. typeList.value.unshift({ id: '-1', value: '-1', label: '不限', is_active: true })
  77. }
  78. const search = async (query = { skip, limit }) => {
  79. skip = query.skip
  80. limit = query.limit
  81. const info = { skip: query.skip, limit: query.limit, is_use: '0', status: '1', ...searchForm.value }
  82. const res = await store.list(info)
  83. if (res.errcode == '0') {
  84. list.value = res.data
  85. total.value = res.total
  86. }
  87. }
  88. // 查看详情
  89. const toView = (item) => {
  90. router.push({ path: '/service/detail', query: { id: item.id || item._id } })
  91. }
  92. const currentPage = ref(1)
  93. // 分页
  94. const changePage = (page = currentPage.value) => {
  95. search({ skip: (page - 1) * limit, limit: limit })
  96. }
  97. const sizeChange = (limits) => {
  98. limit = limits
  99. currentPage.value = 1
  100. search({ skip: 0, limit: limit })
  101. }
  102. const getUrl = (item) => {
  103. if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
  104. }
  105. </script>
  106. <style scoped lang="scss">
  107. .main {
  108. .one {
  109. margin: 10px 0 0 0;
  110. .image {
  111. width: 100%;
  112. height: 350px;
  113. }
  114. }
  115. .two {
  116. margin: 10px 0 0 0;
  117. .list {
  118. padding: 15px;
  119. border: 1px solid #f2f4f6;
  120. border-radius: 8px;
  121. margin: 0 0 15px 0;
  122. .image {
  123. width: 100%;
  124. height: 190px;
  125. }
  126. .name {
  127. font-size: $global-font-size-20;
  128. font-weight: bold;
  129. display: inline-block;
  130. margin: 8px 0;
  131. }
  132. .name:hover {
  133. color: #2374ff;
  134. cursor: pointer;
  135. }
  136. .other_1 {
  137. font-size: $global-font-size-18;
  138. margin: 0 0 5px 0;
  139. cursor: default;
  140. span {
  141. color: #666;
  142. }
  143. }
  144. }
  145. }
  146. .thr {
  147. display: flex;
  148. justify-content: center;
  149. margin: 20px 0;
  150. }
  151. }
  152. </style>