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

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
if (newLocation !== 'baotou' && newLocation !== 'xihaian') {
whoShow.itShowQingDao = true
if (newLocation == 'zhanTingDev' || newLocation == 'dev') {
whoShow.itShowZhanTingDev = true
}
infrastructure.deptName = '青岛市大数据发展管理局'
infrastructure.deptId = '1067246875800000066'
navListManagement.navList = [
@ -527,4 +531,4 @@ else if (newLocation === 'xihaian') {
},
],
}
}
}

View File

@ -450,17 +450,6 @@ import {
} from './constantData/showData.js'
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) {
console.log('to---DetailsPageconetent--beforeRouteLeave------->', to)
console.log('from---DetailsPageconetent--beforeRouteLeave------->', from)
@ -473,7 +462,7 @@ export default defineComponent({
setup() {
//6
const flag = ref('')
let componentTypeArray = ['组件类型', '应用领域']
const handleAdd = (value) => {
flag.value = value
}
@ -642,19 +631,41 @@ export default defineComponent({
paramsGetResources.pageNum = 1
currentPage.value = 1
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) => {
if (!val) {
return;
}
if (val.name === name) {
paramsGetResources.infoList = paramsGetResources.infoList.filter(
(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]
paramsGetResources.infoList.push({
attrType: name,
attrValue: tag.dict_label,
})
} 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) => {
console.log('selectDicStoreAll============>', res)
const { data } = res.data
ListContent.records = []
ListContent.records = data
const { data } = res.data;
let dataCopy = data
tecHnosphere = router.currentRoute.value.query.tecHnosphere
appLiCation = router.currentRoute.value.query.appLiCation
mybus.emit('getDeptList')
ListContent.records.forEach((val) => {
dataCopy.forEach((val) => {
val.selectedTags = []
if (val.name == '应用领域' && appLiCation) {
val.selectedTags[0] = []
@ -720,16 +730,27 @@ export default defineComponent({
val.shrinkFlag = true
}
// todo--
if (storageSearchInfo) {
// name
let obj =
(storageSearchInfo.infoList || []).find(
(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++
listKey2.value++
})
@ -739,6 +760,7 @@ export default defineComponent({
let ListContent = reactive({
records: [],
})
let ListContentCopy = ref([])
const resourceList = reactive({ data: [] })
const videoList = reactive({ data: [] })
const resourceTotal = ref('')
@ -870,32 +892,18 @@ export default defineComponent({
pageSize: paramsGetResources.pageSize, //
}
getDataResource(dataResourceParams).then((res) => {
loading.value = false
console.log('res.data.data----874-------->', res.data.data);
if (whoShow1.value.itShowQingDao) {
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 || ''
loading.value = false
if (whoShow1.value.itShowZhanTingDev) {
// itShowZhanTingDev: 西
console.log('999----->', res.data.data.list)
getXiHaiAn(res)
} else {
getQingDao(res)
}
} else if (whoShow1.value.itShowXiHaiAn) {
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 || ''
loading.value = false
getXiHaiAn(res)
}
})
} else if (
@ -958,31 +966,16 @@ export default defineComponent({
pageSize: paramsGetResources.pageSize, //
}
getDataResource(dataResourceParams).then((res) => {
loading.value = false
console.log('res.data.data----982-------->', res.data.data);
if (whoShow1.value.itShowQingDao) {
(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 || ''
loading.value = false
if (whoShow1.value.itShowZhanTingDev) {
getXiHaiAn(res)
} else {
getQingDao(res)
}
} else if (whoShow1.value.itShowXiHaiAn) {
(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 || ''
getXiHaiAn(res)
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([])
//
const getShoppingCartList = (list) => {
@ -1274,7 +1296,6 @@ export default defineComponent({
saveSearchCodition,
searchResultListDom,
handleSetSearchData, // todo
// refreshList,
}
},
components: {
@ -1645,7 +1666,7 @@ export default defineComponent({
margin-top: 0.05rem;
.ant-tag-checkable {
width: 0.83rem;
width: 1rem;
height: 0.25rem;
display: flex;
justify-content: center;
@ -1670,7 +1691,8 @@ export default defineComponent({
.ant-tag-checkable:active,
.ant-tag-checkable-checked {
width: 0.85rem;
// width: 0.85rem;
width: 1rem;
font-family: 'Alibaba PuHuiTi';
font-weight: 500;
background-color: #0087ff;
@ -1855,14 +1877,14 @@ export default defineComponent({
}
.leixingsum {
width: 0.93rem;
// width: 1rem;
display: inline-block;
cursor: pointer;
text-align: center;
margin-top: 0.05rem;
.ant-tag-checkable {
width: 0.85rem;
width: 1rem;
height: 0.25rem;
display: flex;
justify-content: center;