project.vue 6.9 KB

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