achievement.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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" v-for="(item, index) in list" :key="index" @click="toView(item)">
  6. <div class="list_1">
  7. <el-image class="image" :src="file[index]" fit="fill" />
  8. <div class="box">
  9. <p class="name textMore">{{ item.name || '暂无' }}</p>
  10. </div>
  11. <div class="list_2" v-if="user && user.id">
  12. <div class="other">
  13. <el-image class="image" :src="one" fit="fill" />
  14. <div class="text textOne">{{ item.field || '暂无' }}</div>
  15. </div>
  16. <div class="other">
  17. <el-image class="image" :src="two" fit="fill" />
  18. <div class="text textOne">{{ item.person || '暂无' }}</div>
  19. </div>
  20. <div class="other">
  21. <el-image class="image" :src="thr" fit="fill" />
  22. <div class="text textOne">{{ item.source || '暂无' }}</div>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. <div class="two">
  29. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  30. </div>
  31. </div>
  32. <el-empty v-else description="暂无数据" />
  33. </div>
  34. </template>
  35. <script setup>
  36. // 图片引入
  37. import bg_1 from '/images/achievement/tec_bg_1.png'
  38. import bg_2 from '/images/achievement/tec_bg_2.png'
  39. import bg_3 from '/images/achievement/tec_bg_3.png'
  40. import bg_4 from '/images/achievement/tec_bg_4.png'
  41. import bg_5 from '/images/achievement/tec_bg_6.png'
  42. import bg_6 from '/images/achievement/tec_bg_8.png'
  43. import bg_7 from '/images/achievement/tec_bg_9.png'
  44. import bg_8 from '/images/achievement/tec_bg_10.png'
  45. import bg_9 from '/images/achievement/tec_bg_7.png'
  46. import one from '/images/achievement/bg-cgyx-list-icon1.png'
  47. import two from '/images/achievement/bg-cgyx-list-icon2.png'
  48. import thr from '/images/achievement/bg-cgyx-list-icon3.png'
  49. const $checkRes = inject('$checkRes')
  50. // 接口
  51. import { DictDataStore } from '@/store/api/system/dictData'
  52. import { RegionStore } from '@/store/api/system/region'
  53. import { SectorStore } from '@/store/api/platform/sector'
  54. import { EsStore } from '@/store/api/es'
  55. const esStore = EsStore()
  56. const dictDataStore = DictDataStore()
  57. const regionStore = RegionStore()
  58. const sectorStore = SectorStore()
  59. // 用户信息
  60. import { UserStore } from '@/store/user'
  61. const userStore = UserStore()
  62. const user = computed(() => userStore.user)
  63. // 路由
  64. const router = useRouter()
  65. const searchValue = inject('searchValue')
  66. // 加载中
  67. const loading = ref(false)
  68. const file = ref([bg_1, bg_2, bg_3, bg_4, bg_5, bg_6, bg_7, bg_8, bg_9, bg_1, bg_2, bg_3])
  69. // 列表
  70. const list = ref([])
  71. let skip = 0
  72. let limit = inject('limit')
  73. const total = ref(0)
  74. // 字典表
  75. const moneyList = ref([])
  76. const matureList = ref([])
  77. const sellList = ref([])
  78. const cityList = ref([])
  79. const typeList = ref([])
  80. const plateList = ref([])
  81. // 请求
  82. onMounted(async () => {
  83. loading.value = true
  84. await searchOther()
  85. await search()
  86. loading.value = false
  87. })
  88. const search = async (query = { skip, limit }) => {
  89. skip = query.skip
  90. limit = query.limit
  91. const info = { skip: query.skip, limit: query.limit, status: '1', is_use: '0' }
  92. if (searchValue.value) info.keyword = searchValue.value
  93. const res = await esStore.Sachievement(info)
  94. if (res.errcode == '0') {
  95. list.value = res.data
  96. total.value = res.total
  97. }
  98. }
  99. const searchOther = async () => {
  100. let result
  101. // 技术领域
  102. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  103. if ($checkRes(result)) typeList.value = result.data
  104. // 成熟度
  105. result = await dictDataStore.query({ code: 'mature', is_use: '0' })
  106. if ($checkRes(result)) matureList.value = result.data
  107. // 出让方式
  108. result = await dictDataStore.query({ code: 'sell', is_use: '0' })
  109. if ($checkRes(result)) sellList.value = result.data
  110. // 价格
  111. result = await dictDataStore.query({ code: 'money', is_use: '0' })
  112. if ($checkRes(result)) moneyList.value = result.data
  113. // 处理数据
  114. for (const val of moneyList.value) {
  115. if (val.value == '0') val.is_active = true
  116. }
  117. matureList.value.unshift({ id: '-1', is_active: true, value: '-1', label: '不限' })
  118. sellList.value.unshift({ id: '-1', is_active: true, value: '-1', label: '不限' })
  119. typeList.value.unshift({ id: '-1', is_active: true, value: '-1', label: '不限' })
  120. result = await regionStore.list({ level: 'city', parent_code: 22 })
  121. if (result.errcode == '0') cityList.value = result.data
  122. cityList.value.unshift({ id: '-1', is_active: true, code: '-1', name: '不限' })
  123. result = await sectorStore.query({ is_use: '0' })
  124. if (result.errcode == '0') plateList.value = result.data
  125. plateList.value.unshift({ id: '-1', is_active: true, title: '不限' })
  126. }
  127. // 查看详情
  128. const toView = async (item) => {
  129. if (user.value.id) {
  130. router.push({ path: '/achievement/detail', query: { id: item.id || item._id } })
  131. } else ElMessage({ message: '未登录!', type: 'error' })
  132. }
  133. const currentPage = ref(1)
  134. // 分页
  135. const changePage = (page = currentPage.value) => {
  136. search({ skip: (page - 1) * limit, limit: limit })
  137. }
  138. const sizeChange = (limits) => {
  139. limit = limits
  140. currentPage.value = 1
  141. search({ skip: 0, limit: limit })
  142. }
  143. defineExpose({
  144. search
  145. })
  146. </script>
  147. <style scoped lang="scss">
  148. .main {
  149. .one {
  150. margin: 10px 0;
  151. display: flex;
  152. flex-wrap: wrap;
  153. align-items: center;
  154. .list {
  155. margin-right: 10px;
  156. margin-bottom: 15px;
  157. padding-top: 3px;
  158. width: 317px;
  159. height: 325px;
  160. background-color: #fff;
  161. box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.3);
  162. .list_1 {
  163. position: relative;
  164. .image {
  165. height: 100%;
  166. width: 100%;
  167. }
  168. .box {
  169. display: flex !important;
  170. align-items: center;
  171. position: absolute;
  172. top: 45px;
  173. left: 0;
  174. padding: 15px 10px;
  175. width: 100%;
  176. height: 82px;
  177. background-color: rgba(0, 25, 79, 0.5);
  178. font-size: $global-font-size-18;
  179. line-height: 24px;
  180. color: #fff;
  181. }
  182. }
  183. .list_2 {
  184. margin: 10px 13px 0;
  185. .other {
  186. display: flex;
  187. align-items: center;
  188. margin: 0 0 5px 0;
  189. .image {
  190. width: 25px;
  191. height: 25px;
  192. margin: 0 5px 0 0;
  193. }
  194. .text {
  195. max-width: 260px;
  196. font-size: $global-font-size-16;
  197. line-height: 32px;
  198. color: #404040;
  199. }
  200. }
  201. }
  202. }
  203. .list:nth-child(4n) {
  204. margin-right: 0;
  205. }
  206. .list:hover {
  207. box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.8);
  208. }
  209. }
  210. .two {
  211. display: flex;
  212. justify-content: center;
  213. margin: 20px 0;
  214. }
  215. }
  216. </style>