project.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <div class="main" v-loading="loading">
  3. <div class="w_1300" v-if="total > 0">
  4. <div class="one">
  5. <div class="list" :class="['list' + index]" v-for="(item, index) in list" :key="index" @click="toView(item)">
  6. <div class="type textOne">{{ item.industry || '暂无' }}</div>
  7. <div class="title">
  8. <p class="ellipsis-3">{{ item.name || '暂无' }}</p>
  9. </div>
  10. <div class="address" v-if="user && user.id">
  11. <el-icon color="#595959"><Location /></el-icon>
  12. <span class="textOne">{{ item.main || '暂无' }}</span>
  13. </div>
  14. <div class="biaoqian textOne" v-if="user && user.id">
  15. <span v-if="item.technology">{{ item.technology }}</span>
  16. <span v-if="item.sell">{{ item.sell }}</span>
  17. </div>
  18. <span class="state" :class="['state1']"></span>
  19. </div>
  20. </div>
  21. <div class="two">
  22. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  23. </div>
  24. </div>
  25. <el-empty v-else description="暂无数据" />
  26. </div>
  27. </template>
  28. <script setup>
  29. const $checkRes = inject('$checkRes')
  30. // 接口
  31. import { DictDataStore } from '@/store/api/system/dictData'
  32. import { RegionStore } from '@/store/api/system/region'
  33. import { SectorStore } from '@/store/api/platform/sector'
  34. import { EsStore } from '@/store/api/es'
  35. const esStore = EsStore()
  36. const dictDataStore = DictDataStore()
  37. const regionStore = RegionStore()
  38. const sectorStore = SectorStore()
  39. // 用户信息
  40. import { UserStore } from '@/store/user'
  41. const userStore = UserStore()
  42. const user = computed(() => userStore.user)
  43. // 路由
  44. const router = useRouter()
  45. const searchValue = inject('searchValue')
  46. // 加载中
  47. const loading = ref(false)
  48. const typeList = ref([])
  49. const plateList = ref([])
  50. // 字典表
  51. const maturityList = ref([])
  52. const cityList = ref([])
  53. // 列表
  54. const list = ref([])
  55. let skip = 0
  56. let limit = 15
  57. const total = ref(0)
  58. // 请求
  59. onMounted(async () => {
  60. loading.value = true
  61. await searchOther()
  62. await search({ skip, limit })
  63. loading.value = false
  64. })
  65. const searchOther = async () => {
  66. let result
  67. // 成熟度
  68. result = await dictDataStore.query({ code: 'projectMaturity', is_use: '0' })
  69. if ($checkRes(result)) maturityList.value = result.data
  70. // 技术领域
  71. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  72. if ($checkRes(result)) typeList.value = result.data
  73. // 地区
  74. result = await regionStore.list({ level: 'city', parent_code: 22 })
  75. if ($checkRes(result)) cityList.value = result.data
  76. // 行业
  77. result = await sectorStore.query({ is_use: '0' })
  78. if ($checkRes(result)) plateList.value = result.data
  79. }
  80. const search = async (query = { skip, limit }) => {
  81. skip = query.skip
  82. limit = query.limit
  83. const info = { skip: query.skip, limit: query.limit, status: '1', is_use: '0' }
  84. if (searchValue.value) info.keyword = searchValue.value
  85. const res = await esStore.Sproject(info)
  86. if (res.errcode == '0') {
  87. list.value = res.data
  88. total.value = res.total
  89. }
  90. }
  91. // 查看
  92. const toView = (item) => {
  93. if (user.value.id) {
  94. router.push({ path: `/project/detail`, query: { id: item.id || item._id } })
  95. } else ElMessage({ message: '未登录!', type: 'error' })
  96. }
  97. const currentPage = ref(1)
  98. // 分页
  99. const changePage = (page = currentPage.value) => {
  100. search({ skip: (page - 1) * limit, limit: limit })
  101. }
  102. const sizeChange = (limits) => {
  103. limit = limits
  104. currentPage.value = 1
  105. search({ skip: 0, limit: limit })
  106. }
  107. defineExpose({
  108. search
  109. })
  110. </script>
  111. <style scoped lang="scss">
  112. .main {
  113. .one {
  114. margin: 20px 0;
  115. display: flex;
  116. flex-wrap: wrap;
  117. justify-content: center;
  118. align-items: center;
  119. .list {
  120. position: relative;
  121. margin: 0 39px 39px 0;
  122. width: 208px;
  123. height: 286px;
  124. box-shadow: 3px 4px 4px 0px rgba(41, 41, 115, 0.32);
  125. border: solid 1px #ededed;
  126. .type {
  127. margin-left: 33px;
  128. padding: 22px 10px 0 0;
  129. font-size: $global-font-size-16;
  130. color: #414141;
  131. }
  132. .title {
  133. display: flex;
  134. align-items: center;
  135. margin: 24px 18px 0;
  136. height: 100px;
  137. font-size: $global-font-size-18;
  138. font-weight: bold;
  139. color: #ffffff;
  140. .ellipsis-3 {
  141. display: -webkit-box;
  142. -webkit-box-orient: vertical;
  143. overflow: hidden;
  144. -webkit-line-clamp: 3;
  145. }
  146. }
  147. .address {
  148. margin-top: 80px;
  149. padding: 0 5px;
  150. font-size: $global-font-size-16;
  151. color: #282828;
  152. display: flex;
  153. align-items: center;
  154. justify-content: flex-end;
  155. }
  156. .biaoqian {
  157. margin: 10px 5px 0 5px;
  158. text-align: right;
  159. overflow: hidden;
  160. span {
  161. padding: 0 5px;
  162. background-color: #f5f8ff;
  163. border-radius: 3px;
  164. border: solid 1px #d2daec;
  165. font-size: $global-font-size-14;
  166. line-height: 23px;
  167. color: #7d8aaa;
  168. margin-right: 2px;
  169. }
  170. }
  171. }
  172. .state {
  173. display: block;
  174. position: absolute;
  175. right: 0px;
  176. top: 0px;
  177. width: 75px;
  178. height: 24px;
  179. background: url(/images/project/dbhi-kcxm-item-xmyl.png) no-repeat;
  180. }
  181. .state1 {
  182. background: url(/images/project/dbhi-kcxm-item-xm1.png) no-repeat;
  183. }
  184. .state2 {
  185. background: url(/images/project/dbhi-kcxm-item-xm2.png) no-repeat;
  186. }
  187. .state3 {
  188. background: url(/images/project/dbhi-kcxm-item-xm3.png) no-repeat;
  189. }
  190. .list0 {
  191. background: url(/images/project/dbhi-kcxm-item1.png) no-repeat;
  192. }
  193. .list1 {
  194. background: url(/images/project/dbhi-kcxm-item2.png) no-repeat;
  195. }
  196. .list2 {
  197. background: url(/images/project/dbhi-kcxm-item3.png) no-repeat;
  198. }
  199. .list3 {
  200. background: url(/images/project/dbhi-kcxm-item4.png) no-repeat;
  201. }
  202. .list4 {
  203. background: url(/images/project/dbhi-kcxm-item5.png) no-repeat;
  204. }
  205. .list5 {
  206. background: url(/images/project/dbhi-kcxm-item6.png) no-repeat;
  207. }
  208. .list6 {
  209. background: url(/images/project/dbhi-kcxm-item7.png) no-repeat;
  210. }
  211. .list7 {
  212. background: url(/images/project/dbhi-kcxm-item8.png) no-repeat;
  213. }
  214. .list8 {
  215. background: url(/images/project/dbhi-kcxm-item9.png) no-repeat;
  216. }
  217. .list9 {
  218. background: url(/images/project/dbhi-kcxm-item10.png) no-repeat;
  219. }
  220. .list10 {
  221. background: url(/images/project/dbhi-kcxm-item1.png) no-repeat;
  222. }
  223. .list11 {
  224. background: url(/images/project/dbhi-kcxm-item2.png) no-repeat;
  225. }
  226. .list12 {
  227. background: url(/images/project/dbhi-kcxm-item3.png) no-repeat;
  228. }
  229. .list13 {
  230. background: url(/images/project/dbhi-kcxm-item4.png) no-repeat;
  231. }
  232. .list14 {
  233. background: url(/images/project/dbhi-kcxm-item5.png) no-repeat;
  234. }
  235. .list:nth-child(5n) {
  236. margin-right: 0;
  237. }
  238. }
  239. .two {
  240. display: flex;
  241. justify-content: center;
  242. margin: 20px 0;
  243. }
  244. }
  245. </style>