能力集市-组件服务:智能算法支持类型选择

This commit is contained in:
guoyue 2022-09-19 19:18:49 +08:00
parent de605dd446
commit 253b9f511a
2 changed files with 101 additions and 75 deletions

View File

@ -26,6 +26,10 @@ const footerDataList = {}
// qingdao // qingdao
if (newLocation !== 'baotou' && newLocation !== 'xihaian') { if (newLocation !== 'baotou' && newLocation !== 'xihaian') {
whoShow.itShowQingDao = true whoShow.itShowQingDao = true
if (newLocation == 'zhanTingDev' || newLocation == 'dev') {
whoShow.itShowZhanTingDev = true
}
infrastructure.deptName = '青岛市大数据发展管理局' infrastructure.deptName = '青岛市大数据发展管理局'
infrastructure.deptId = '1067246875800000066' infrastructure.deptId = '1067246875800000066'
navListManagement.navList = [ navListManagement.navList = [
@ -527,4 +531,4 @@ else if (newLocation === 'xihaian') {
}, },
], ],
} }
} }

View File

@ -450,17 +450,6 @@ import {
} from './constantData/showData.js' } from './constantData/showData.js'
export default defineComponent({ export default defineComponent({
beforeRouteEnter(to, from, next) {
console.log('to---DetailsPageconetent--beforeRouteEnter------->', to)
console.log('from---DetailsPageconetent--beforeRouteEnter------->', from)
console.log('next---DetailsPageconetent--beforeRouteEnter------->', next)
// from.nameundefined
// if (from.name || from.name !== 'details') {
// console.log('------------>')
// localStorage.removeItem('DetailsPageconetent')
// }
next()
},
beforeRouteLeave(to, from, next) { beforeRouteLeave(to, from, next) {
console.log('to---DetailsPageconetent--beforeRouteLeave------->', to) console.log('to---DetailsPageconetent--beforeRouteLeave------->', to)
console.log('from---DetailsPageconetent--beforeRouteLeave------->', from) console.log('from---DetailsPageconetent--beforeRouteLeave------->', from)
@ -473,7 +462,7 @@ export default defineComponent({
setup() { setup() {
//6 //6
const flag = ref('') const flag = ref('')
let componentTypeArray = ['组件类型', '应用领域']
const handleAdd = (value) => { const handleAdd = (value) => {
flag.value = value flag.value = value
} }
@ -642,19 +631,41 @@ export default defineComponent({
paramsGetResources.pageNum = 1 paramsGetResources.pageNum = 1
currentPage.value = 1 currentPage.value = 1
console.log('点击筛选条件=================>', tag, checked, name) console.log('点击筛选条件=================>', tag, checked, name)
//
if (tag.dict_label == '智能算法' && checked) {
ListContent.records.splice(2, 1, ListContentCopy.value[2])
} else {
if (name == '组件类型') {
ListContent.records.splice(2, 1)
paramsGetResources.infoList = paramsGetResources.infoList.filter(
(item) => componentTypeArray.includes(item.attrType)
)
}
}
ListContent.records.forEach((val) => { ListContent.records.forEach((val) => {
if (!val) {
return;
}
if (val.name === name) { if (val.name === name) {
paramsGetResources.infoList = paramsGetResources.infoList.filter( paramsGetResources.infoList = paramsGetResources.infoList.filter(
(item) => item.attrType !== name (item) => item.attrType !== name
) )
if (val.selectedTags.indexOf(tag.dict_label) == -1) { if (val.selectedTags && val.selectedTags.indexOf(tag.dict_label) == -1) {
val.selectedTags = [tag.dict_label] val.selectedTags = [tag.dict_label]
paramsGetResources.infoList.push({ paramsGetResources.infoList.push({
attrType: name, attrType: name,
attrValue: tag.dict_label, attrValue: tag.dict_label,
}) })
} else { } else {
val.selectedTags.splice(val.selectedTags.indexOf(tag.dict_label), 1) val.selectedTags && val.selectedTags.splice(val.selectedTags.indexOf(tag.dict_label), 1)
}
//
if ((val.selectedTags.length == 0 && tag.dict_label == '智能算法' && !checked) || (tag.dict_label !== '智能算法' && name == '组件类型')) {
if (ListContentCopy.value[2]) {
ListContentCopy.value[2].selectedTags = []
}
} }
} }
}) })
@ -670,13 +681,12 @@ export default defineComponent({
} }
selectDicStoreAll(params).then((res) => { selectDicStoreAll(params).then((res) => {
console.log('selectDicStoreAll============>', res) console.log('selectDicStoreAll============>', res)
const { data } = res.data const { data } = res.data;
ListContent.records = [] let dataCopy = data
ListContent.records = data
tecHnosphere = router.currentRoute.value.query.tecHnosphere tecHnosphere = router.currentRoute.value.query.tecHnosphere
appLiCation = router.currentRoute.value.query.appLiCation appLiCation = router.currentRoute.value.query.appLiCation
mybus.emit('getDeptList') mybus.emit('getDeptList')
ListContent.records.forEach((val) => { dataCopy.forEach((val) => {
val.selectedTags = [] val.selectedTags = []
if (val.name == '应用领域' && appLiCation) { if (val.name == '应用领域' && appLiCation) {
val.selectedTags[0] = [] val.selectedTags[0] = []
@ -720,16 +730,27 @@ export default defineComponent({
val.shrinkFlag = true val.shrinkFlag = true
} }
// todo--
if (storageSearchInfo) { if (storageSearchInfo) {
// name
let obj = let obj =
(storageSearchInfo.infoList || []).find( (storageSearchInfo.infoList || []).find(
(x) => x.attrType === val.name (x) => x.attrType === val.name
) || {} );
val.selectedTags = obj.attrValue || [] if (obj) {
val.selectedTags = [obj.attrValue] || []
}
} }
}) })
ListContentCopy.value = []
ListContentCopy.value = JSON.parse(JSON.stringify(dataCopy));
ListContent.records = []
ListContent.records = JSON.parse(JSON.stringify(dataCopy));
// -
if (!storageSearchInfo) {
let _tag_list = dataCopy.filter(v => componentTypeArray.includes(v.name))
ListContent.records = _tag_list
}
listKey.value++ listKey.value++
listKey2.value++ listKey2.value++
}) })
@ -739,6 +760,7 @@ export default defineComponent({
let ListContent = reactive({ let ListContent = reactive({
records: [], records: [],
}) })
let ListContentCopy = ref([])
const resourceList = reactive({ data: [] }) const resourceList = reactive({ data: [] })
const videoList = reactive({ data: [] }) const videoList = reactive({ data: [] })
const resourceTotal = ref('') const resourceTotal = ref('')
@ -870,32 +892,18 @@ export default defineComponent({
pageSize: paramsGetResources.pageSize, // pageSize: paramsGetResources.pageSize, //
} }
getDataResource(dataResourceParams).then((res) => { getDataResource(dataResourceParams).then((res) => {
loading.value = false
console.log('res.data.data----874-------->', res.data.data);
if (whoShow1.value.itShowQingDao) { if (whoShow1.value.itShowQingDao) {
res.data.data.data.forEach((val) => { if (whoShow1.value.itShowZhanTingDev) {
val.id = val.guid // id // itShowZhanTingDev: 西
val.name = val.zyname // console.log('999----->', res.data.data.list)
val.sjlCount = val.sjcczl // getXiHaiAn(res)
val.applyCount = val.syqk // } else {
val.deptName = val.TGBM // getQingDao(res)
val.createDate = val.fbrq // }
val.description = val.xgxt //
})
resourceList.data = res.data.data.data || []
resourceTotal.value = res.data.data.rows || ''
loading.value = false
} else if (whoShow1.value.itShowXiHaiAn) { } else if (whoShow1.value.itShowXiHaiAn) {
res.data.data.list.forEach((val) => { getXiHaiAn(res)
val.id = val.serviceId // id
val.name = val.serviceName //
val.sjlCount = val.requestQuantity //
val.applyCount = val.requestCount //
val.deptName = val.departmentName //
val.createTime = val.createTime.split('.')[0]
val.createDate = val.createTime //
})
resourceList.data = res.data.data.list || []
resourceTotal.value = res.data.data.total || ''
loading.value = false
} }
}) })
} else if ( } else if (
@ -958,31 +966,16 @@ export default defineComponent({
pageSize: paramsGetResources.pageSize, // pageSize: paramsGetResources.pageSize, //
} }
getDataResource(dataResourceParams).then((res) => { getDataResource(dataResourceParams).then((res) => {
loading.value = false
console.log('res.data.data----982-------->', res.data.data);
if (whoShow1.value.itShowQingDao) { if (whoShow1.value.itShowQingDao) {
(res.data && res.data.data && res.data.data.data || []).forEach((val) => { if (whoShow1.value.itShowZhanTingDev) {
val.id = val.guid // id getXiHaiAn(res)
val.name = val.zyname // } else {
val.sjlCount = val.sjcczl // getQingDao(res)
val.applyCount = val.syqk // }
val.deptName = val.TGBM //
val.createDate = val.fbrq //
val.description = val.xgxt //
})
resourceList.data = res.data.data.data || []
resourceTotal.value = res.data.data.rows || ''
loading.value = false
} else if (whoShow1.value.itShowXiHaiAn) { } else if (whoShow1.value.itShowXiHaiAn) {
(res.data && res.data.data && res.data.data.list || []).forEach((val) => { getXiHaiAn(res)
val.id = val.serviceId // id
val.name = val.serviceName //
val.sjlCount = val.requestQuantity //
val.applyCount = val.requestCount //
val.deptName = val.departmentName //
val.createTime = val.createTime.split('.')[0]
val.createDate = val.createTime //
})
resourceList.data = res.data.data.list || []
resourceTotal.value = res.data.data.total || ''
loading.value = false loading.value = false
} }
}) })
@ -1020,6 +1013,35 @@ export default defineComponent({
} }
} }
// -
const getQingDao = (res) => {
(res.data && res.data.data && res.data.data.data || []).forEach((val) => {
val.id = val.guid // id
val.name = val.zyname //
val.sjlCount = val.sjcczl //
val.applyCount = val.syqk //
val.deptName = val.TGBM //
val.createDate = val.fbrq //
val.description = val.xgxt //
})
resourceList.data = res.data.data.data || []
resourceTotal.value = res.data.data.rows || ''
}
// -西
const getXiHaiAn = (res) => {
(res.data && res.data.data && res.data.data.list || []).forEach((val) => {
val.id = val.serviceId // id
val.name = val.serviceName //
val.sjlCount = val.requestQuantity //
val.applyCount = val.requestCount //
val.deptName = val.departmentName //
val.createTime = val.createTime.split('.')[0]
val.createDate = val.createTime //
})
resourceList.data = res.data.data.list || []
resourceTotal.value = res.data.data.total || ''
}
let shoppingCartList = ref([]) let shoppingCartList = ref([])
// //
const getShoppingCartList = (list) => { const getShoppingCartList = (list) => {
@ -1274,7 +1296,6 @@ export default defineComponent({
saveSearchCodition, saveSearchCodition,
searchResultListDom, searchResultListDom,
handleSetSearchData, // todo handleSetSearchData, // todo
// refreshList,
} }
}, },
components: { components: {
@ -1645,7 +1666,7 @@ export default defineComponent({
margin-top: 0.05rem; margin-top: 0.05rem;
.ant-tag-checkable { .ant-tag-checkable {
width: 0.83rem; width: 1rem;
height: 0.25rem; height: 0.25rem;
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -1670,7 +1691,8 @@ export default defineComponent({
.ant-tag-checkable:active, .ant-tag-checkable:active,
.ant-tag-checkable-checked { .ant-tag-checkable-checked {
width: 0.85rem; // width: 0.85rem;
width: 1rem;
font-family: 'Alibaba PuHuiTi'; font-family: 'Alibaba PuHuiTi';
font-weight: 500; font-weight: 500;
background-color: #0087ff; background-color: #0087ff;
@ -1855,14 +1877,14 @@ export default defineComponent({
} }
.leixingsum { .leixingsum {
width: 0.93rem; // width: 1rem;
display: inline-block; display: inline-block;
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
margin-top: 0.05rem; margin-top: 0.05rem;
.ant-tag-checkable { .ant-tag-checkable {
width: 0.85rem; width: 1rem;
height: 0.25rem; height: 0.25rem;
display: flex; display: flex;
justify-content: center; justify-content: center;