能力集市-组件服务:智能算法支持类型选择
This commit is contained in:
parent
de605dd446
commit
253b9f511a
|
@ -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') {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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.name为undefined
|
|
||||||
// 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;
|
||||||
|
|
Loading…
Reference in New Issue