demand.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
  5. <custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" @draftSave="toDraftSave">
  6. <template #is_use>
  7. <el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
  8. </template>
  9. <template #field>
  10. <el-option v-for="i in fieldList" :key="i.id" :label="i.label" :value="i.label"></el-option>
  11. </template>
  12. <template #industry>
  13. <el-option v-for="i in sectorList" :key="i.id" :label="i.title" :value="i.title"></el-option>
  14. </template>
  15. <template #urgent>
  16. <el-option v-for="i in urgentList" :key="i.id" :label="i.label" :value="i.value"></el-option>
  17. </template>
  18. <template #method>
  19. <el-option v-for="i in methodList" :key="i.id" :label="i.label" :value="i.value"></el-option>
  20. </template>
  21. <template #area>
  22. <el-cascader v-model="form.area" :props="{ value: 'name', label: 'name' }" :options="cityList" style="width: 100%" />
  23. </template>
  24. <template #tags>
  25. <el-select v-model="form.tags" multiple filterable allow-create default-first-option :reserve-keyword="false" placeholder="请选择标签" style="width: 100%">
  26. <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
  27. </el-select>
  28. </template>
  29. </custom-form>
  30. </el-col>
  31. </el-row>
  32. <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose" :width="width">
  33. <el-row>
  34. <transition name="why">
  35. <el-col :span="24" v-if="dialog.type == '2'" class="dialog" v-loading="isLoading" element-loading-text="智能推荐中..." :element-loading-svg="svg" element-loading-svg-view-box="-10,-10,50,50">
  36. <el-empty v-if="supplytotal == 0" description="暂无数据" />
  37. <div class="list" v-for="(item, index) in supplyList" :key="index" @click="toView(item)">
  38. <h2 class="name textMore">
  39. <span>{{ item.name || '暂无' }}</span>
  40. </h2>
  41. <div class="other">
  42. <span class="other_1">{{ getDict(item.urgent, 'urgent') || '暂无' }}</span>
  43. <div class="other_2">
  44. <span>应用行业:</span>
  45. {{ item.field || '暂无' }}
  46. </div>
  47. <div class="other_2">
  48. <span>所属产业:</span>
  49. {{ item.industry || '暂无' }}
  50. </div>
  51. <div class="other_2">
  52. <span>来源:</span>
  53. {{ item.source || '暂无' }}
  54. </div>
  55. <div class="other_2">
  56. <span>推荐指数:</span>
  57. <el-rate size="large" v-model="item._recommend" disabled show-score text-color="#ff9900" :score-template="`${item._recommend} 星`" />
  58. </div>
  59. </div>
  60. </div>
  61. <el-col :span="24" class="page">
  62. <el-pagination background layout="prev, pager, next" :total="supplytotal" :page-size="supplylimit" v-model:current-page="scurrentPage" @current-change="schangePage" @size-change="ssizeChange" />
  63. </el-col>
  64. </el-col>
  65. </transition>
  66. </el-row>
  67. </el-dialog>
  68. </div>
  69. </template>
  70. <script setup>
  71. const router = useRouter()
  72. import { cloneDeep, get } from 'lodash-es'
  73. const $checkRes = inject('$checkRes')
  74. import { UserStore } from '@/store/user'
  75. const userStore = UserStore()
  76. const user = computed(() => userStore.user)
  77. // 接口
  78. import { DemandStore } from '@/store/api/platform/demand'
  79. import { DictDataStore } from '@/store/api/system/dictData'
  80. import { TagsStore } from '@/store/api/system/tags'
  81. import { SectorStore } from '@/store/api/platform/sector'
  82. import { RegionStore } from '@/store/api/system/region'
  83. import { EsStore } from '@/store/api/es'
  84. const esStore = EsStore()
  85. const regionStore = RegionStore()
  86. const store = DemandStore()
  87. const dictDataStore = DictDataStore()
  88. const tagsStore = TagsStore()
  89. const sectorStore = SectorStore()
  90. // 加载中
  91. const loading = ref(false)
  92. // 字典表
  93. const isUseList = ref([])
  94. const statusList = ref([])
  95. const methodList = ref([])
  96. const urgentList = ref([])
  97. const fieldList = ref([])
  98. const cityList = ref([])
  99. const demandList = ref([])
  100. const tagsList = ref([])
  101. const sectorList = ref([])
  102. const form = ref({ time: [] })
  103. const formFields = ref([
  104. { label: '需求名称', model: 'name' },
  105. { label: '标签', model: 'tags', custom: true, mark: 'tags' },
  106. { label: '行业', model: 'industry', type: 'select' },
  107. { label: '行业领域', model: 'field', type: 'select' },
  108. { label: '需求紧急度', model: 'urgent', type: 'select', mark: 'dict', code: 'urgent' },
  109. { label: '合作方式', model: 'method', type: 'select', mark: 'dict', code: 'method' },
  110. { label: '价格(万元)', model: 'money' },
  111. { label: '所属企业', model: 'company' },
  112. { label: '企业简况', model: 'company_brief', type: 'textarea' },
  113. { label: '联系人', model: 'contacts' },
  114. { label: '联系电话', model: 'tel' },
  115. { label: '年份', model: 'year', type: 'year' },
  116. { label: '月份', model: 'month', type: 'month' },
  117. { label: '技术需求名称', model: 'tec_name' },
  118. { label: '待解决问题', model: 'question', type: 'textarea' },
  119. { label: '需求地区', model: 'area', custom: true, mark: 'area' },
  120. { label: '发布时间', model: 'time', type: 'datetimerange', mark: 'time' },
  121. { label: '是否公开', model: 'is_use', type: 'radio', mark: 'dict', code: 'isUse' },
  122. { label: '简介', model: 'brief', type: 'textarea' }
  123. ])
  124. const rules = reactive({
  125. name: [{ required: true, message: '请输入需求名称', trigger: 'blur' }],
  126. field: [{ required: true, message: '请输入行业领域', trigger: 'blur' }],
  127. urgent: [{ required: true, message: '请选择需求紧急度', trigger: 'blur' }],
  128. method: [{ required: true, message: '请选择合作方式', trigger: 'blur' }],
  129. money: [{ required: true, message: '请输入价格', trigger: 'blur' }],
  130. company: [{ required: true, message: '请输入所属企业', trigger: 'blur' }],
  131. contacts: [{ required: true, message: '请输入联系人', trigger: 'blur' }],
  132. tel: [{ required: true, message: '请输入联系电话', trigger: 'blur' }],
  133. area: [{ required: true, message: '请选择需求地区', trigger: 'blur' }],
  134. time: [{ required: true, message: '请选择发布时间', trigger: 'blur' }]
  135. })
  136. // 推荐供给列表
  137. const supplyList = ref([])
  138. let supplyskip = 0
  139. let supplylimit = 4
  140. const supplytotal = ref(0)
  141. const key = ref('')
  142. const width = ref('50%')
  143. const isLoading = ref(false)
  144. const svg = ref(`
  145. <path class="path" d="
  146. M 30 15
  147. L 28 17
  148. M 25.61 25.61
  149. A 15 15, 0, 0, 1, 15 30
  150. A 15 15, 0, 1, 1, 27.99 7.5
  151. L 15 15
  152. " style="stroke-width: 4px; fill: rgba(0, 0, 0, 0)"/>
  153. `)
  154. const dialog = ref({ type: '1', show: false, title: '供给智能推荐' })
  155. // 请求
  156. onMounted(async () => {
  157. loading.value = true
  158. await searchOther()
  159. loading.value = false
  160. })
  161. const searchOther = async () => {
  162. let result
  163. // 是否使用
  164. result = await dictDataStore.query({ code: 'isUse', is_use: '0' })
  165. if ($checkRes(result)) isUseList.value = result.data
  166. // 状态
  167. result = await dictDataStore.query({ code: 'examStatus', is_use: '0' })
  168. if ($checkRes(result)) statusList.value = result.data
  169. // 合作方式
  170. result = await dictDataStore.query({ code: 'method', is_use: '0' })
  171. if ($checkRes(result)) methodList.value = result.data
  172. // 需求紧急度
  173. result = await dictDataStore.query({ code: 'urgent', is_use: '0' })
  174. if ($checkRes(result)) urgentList.value = result.data
  175. // 技术领域
  176. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  177. if ($checkRes(result)) fieldList.value = result.data
  178. // 需求状态
  179. result = await dictDataStore.query({ code: 'demandStatus', is_use: '0' })
  180. if ($checkRes(result)) demandList.value = result.data
  181. // 标签
  182. result = await tagsStore.query({ is_use: '0' })
  183. if ($checkRes(result)) tagsList.value = result.data
  184. // 行业
  185. result = await sectorStore.query({ is_use: '0' })
  186. if ($checkRes(result)) sectorList.value = result.data
  187. // 城市
  188. result = await regionStore.area({ level: 'province', code: 22 })
  189. if ($checkRes(result)) cityList.value = result.data
  190. }
  191. const toSave = async () => {
  192. const data = cloneDeep(form.value)
  193. const other = { status: '0', user: user.value.id }
  194. if (data.time && data.time.length > 1) {
  195. data.start_time = data.time[0]
  196. data.end_time = data.time[1]
  197. }
  198. delete data.time
  199. let res
  200. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  201. else res = await store.create({ ...data, ...other })
  202. if (res.errcode == 0) {
  203. ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
  204. key.value = form.value.name
  205. await toClose()
  206. await searchSupply({ supplyskip, supplylimit })
  207. width.value = '90%'
  208. dialog.value = { type: '2', show: true, title: '相关供给推荐' }
  209. }
  210. }
  211. const toDraftSave = async () => {
  212. const data = cloneDeep(form.value)
  213. const other = { status: '-2', user: user.value.id }
  214. if (data.time && data.time.length > 1) {
  215. data.start_time = data.time[0]
  216. data.end_time = data.time[1]
  217. }
  218. delete data.time
  219. let res
  220. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  221. else res = await store.create({ ...data, ...other })
  222. if (res.errcode == 0) {
  223. ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
  224. key.value = form.value.name
  225. await toClose()
  226. await searchSupply({ supplyskip, supplylimit })
  227. width.value = '90%'
  228. dialog.value = { type: '2', show: true, title: '相关供给推荐' }
  229. }
  230. }
  231. // 供给列表查询
  232. const searchSupply = async (query = { supplyskip, supplylimit }) => {
  233. supplyskip = query.supplyskip
  234. supplylimit = query.supplylimit
  235. isLoading.value = true
  236. const info = { skip: supplyskip, limit: supplylimit, keyword: key.value }
  237. const res = await esStore.supply(info)
  238. if (res.errcode == '0') {
  239. supplyList.value = res.data
  240. supplytotal.value = res.total
  241. }
  242. setTimeout(() => {
  243. isLoading.value = false
  244. }, 3000) // 假设3秒后加载完成
  245. }
  246. const scurrentPage = ref(1)
  247. // 分页
  248. const schangePage = (page = scurrentPage.value) => {
  249. searchSupply({ supplyskip: (page - 1) * supplylimit, supplylimit: supplylimit })
  250. }
  251. const ssizeChange = (limits) => {
  252. supplylimit = limits
  253. scurrentPage.value = 1
  254. searchSupply({ supplyskip: 0, supplylimit: supplylimit })
  255. }
  256. // 字典数据转换
  257. const getDict = (data, model) => {
  258. if (data) {
  259. let res
  260. if (model == 'status') res = statusList.value.find((f) => f.value == data)
  261. else if (model == 'urgent') res = urgentList.value.find((f) => f.value == data)
  262. return get(res, 'label')
  263. }
  264. }
  265. // 查看详情
  266. const toView = (item) => {
  267. router.push({ path: '/supply/detail', query: { id: item.id || item._id } })
  268. }
  269. const toClose = () => {
  270. form.value = {}
  271. width.value = '50%'
  272. dialog.value = { show: false }
  273. }
  274. </script>
  275. <style scoped lang="scss">
  276. .why-enter-from,
  277. .why-leave-to {
  278. opacity: 0;
  279. transform: scale(0.6);
  280. }
  281. .why-enter-to,
  282. .why-leave-from {
  283. opacity: 1;
  284. transform: scale(1);
  285. }
  286. .why-enter-active,
  287. .why-leave-active {
  288. transition: all 2s ease;
  289. }
  290. .dialog {
  291. display: flex;
  292. flex-wrap: wrap;
  293. margin-top: 20px;
  294. .list {
  295. position: relative;
  296. margin-right: 10px;
  297. margin-bottom: 10px;
  298. width: 380px;
  299. box-shadow: 0 0 13px 0 rgba(5, 88, 219, 0.18);
  300. .name {
  301. padding: 10px 20px;
  302. width: 380px;
  303. height: 71px;
  304. background-color: #dce5ff;
  305. font-size: 16px;
  306. line-height: 24px;
  307. color: #0d0d0d;
  308. display: flex;
  309. align-items: center;
  310. }
  311. .other {
  312. padding: 10px 20px 20px;
  313. .other_1 {
  314. padding: 0 10px;
  315. height: 25px;
  316. background-color: #e6f2fd;
  317. border-radius: 2px;
  318. border: solid 1px #cae0f5;
  319. font-size: $global-font-size-14;
  320. line-height: 25px;
  321. color: #0085f5;
  322. }
  323. .other_2 {
  324. display: flex;
  325. justify-content: space-between;
  326. align-items: center;
  327. margin-top: 15px;
  328. font-size: $global-font-size-16;
  329. span {
  330. color: #909090;
  331. }
  332. .state {
  333. position: absolute;
  334. right: 20px;
  335. bottom: 15px;
  336. display: inline-block;
  337. vertical-align: middle;
  338. padding: 0 20px;
  339. height: 30px;
  340. line-height: 30px;
  341. background-image: linear-gradient(90deg, #ff8a00 0, #ff5a00 100%), linear-gradient(#ff7800, #ff7800);
  342. background-blend-mode: normal, normal;
  343. border-radius: 14px;
  344. border: solid 1px #e5e5e5;
  345. color: #fff;
  346. }
  347. }
  348. }
  349. }
  350. .list:hover {
  351. box-shadow: 0 0 5px 0 $global-color-107;
  352. .name {
  353. background-color: $global-color-107;
  354. color: $global-color-fff;
  355. }
  356. }
  357. .page {
  358. margin: 10px 0;
  359. display: flex;
  360. justify-content: center;
  361. }
  362. }
  363. </style>