|
@@ -175,36 +175,47 @@ const themeConfigCpt = computed(() => {
|
|
|
const getSearchParam = (item) => {
|
|
|
// es查询参数
|
|
|
const param = {}
|
|
|
- param.indexCode = item.indexTableName
|
|
|
- if (item.indexOrder) {
|
|
|
- const obj = {}
|
|
|
- JSON.parse(item.indexOrder).forEach(s => {
|
|
|
- obj[s.sortParam] = s.sortType
|
|
|
- })
|
|
|
- param.orderBy = obj
|
|
|
- }
|
|
|
- if (item.indexCondition) {
|
|
|
- const arr = []
|
|
|
- JSON.parse(item.indexCondition).forEach(s => {
|
|
|
- arr.push({
|
|
|
- fieldCode: s.indexParam,
|
|
|
- fieldQueryType: s.condition,
|
|
|
- fieldQueryValue: route.query[s.themeParam]
|
|
|
+ if (item.type === 'inner_index') {
|
|
|
+ param.indexCode = item.indexTableName
|
|
|
+ if (item.indexOrder) {
|
|
|
+ const obj = {}
|
|
|
+ JSON.parse(item.indexOrder).forEach(s => {
|
|
|
+ obj[s.sortParam] = s.sortType
|
|
|
})
|
|
|
- })
|
|
|
- param.datas = arr
|
|
|
+ param.orderBy = obj
|
|
|
+ }
|
|
|
+ if (item.indexCondition) {
|
|
|
+ const arr: any = []
|
|
|
+ JSON.parse(item.indexCondition).forEach(s => {
|
|
|
+ arr.push({
|
|
|
+ fieldCode: s.indexParam,
|
|
|
+ fieldQueryType: s.condition,
|
|
|
+ fieldQueryValue: route.query[s.themeParam]
|
|
|
+ })
|
|
|
+ })
|
|
|
+ param.datas = arr
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ param.serviceId = item.indexId
|
|
|
+ if (item.indexCondition) {
|
|
|
+ const obj: any = {}
|
|
|
+ JSON.parse(item.indexCondition).forEach(s => {
|
|
|
+ obj[s.indexParam] = route.query[s.themeParam]
|
|
|
+ })
|
|
|
+ param.serviceMap = obj
|
|
|
+ }
|
|
|
}
|
|
|
return param
|
|
|
}
|
|
|
const getTableHead = (item) => {
|
|
|
- const arr = []
|
|
|
+ const arr: any = []
|
|
|
item.indexFields.forEach(v => {
|
|
|
arr.push({value: v.fieldKey, label: v.fieldName})
|
|
|
})
|
|
|
return arr
|
|
|
}
|
|
|
const res = {
|
|
|
- main: {
|
|
|
+ main: <any>{
|
|
|
indexStyle: {}
|
|
|
},
|
|
|
tabs: new Map(),
|
|
@@ -217,10 +228,12 @@ const themeConfigCpt = computed(() => {
|
|
|
if (v.isMain == 1) {
|
|
|
state.chartData.layout = v.chartLayout
|
|
|
res.main = {
|
|
|
+ type: v.type,
|
|
|
indexTableName: v.indexTableName,
|
|
|
+ indexId: v.indexId,
|
|
|
indexStyle: v.indexStyle ? JSON.parse(v.indexStyle) : '',
|
|
|
searchParam: getSearchParam(v),
|
|
|
- tableHead: getTableHead(v)
|
|
|
+ tableHead: getTableHead(v),
|
|
|
}
|
|
|
res.chart.nodes.unshift({
|
|
|
id: String(v.id),
|
|
@@ -228,9 +241,11 @@ const themeConfigCpt = computed(() => {
|
|
|
weight: v.weight || 100,
|
|
|
num: 0,
|
|
|
name: v.indexNameShort,
|
|
|
+ type: v.type,
|
|
|
indexTableName: v.indexTableName,
|
|
|
+ indexId: v.indexId,
|
|
|
searchParam: getSearchParam(v),
|
|
|
- tableHead: getTableHead(v)
|
|
|
+ tableHead: getTableHead(v),
|
|
|
})
|
|
|
} else if (v.relateIndexId) {
|
|
|
res.chart.nodes.push({
|
|
@@ -239,17 +254,21 @@ const themeConfigCpt = computed(() => {
|
|
|
weight: v.weight,
|
|
|
num: 0,
|
|
|
name: v.indexNameShort,
|
|
|
+ type: v.type,
|
|
|
indexTableName: v.indexTableName,
|
|
|
+ indexId: v.indexId,
|
|
|
searchParam: getSearchParam(v),
|
|
|
- tableHead: getTableHead(v)
|
|
|
+ tableHead: getTableHead(v),
|
|
|
})
|
|
|
res.chart.edges.push({source: String(v.relateIndexId), target: String(v.id), labelText: v.description || '关系描述'})
|
|
|
} else {
|
|
|
res.tabs.set(v.indexTableName, {
|
|
|
+ type: v.type,
|
|
|
indexName: v.indexName,
|
|
|
indexTableName: v.indexTableName,
|
|
|
+ indexId: v.indexId,
|
|
|
searchParam: getSearchParam(v),
|
|
|
- tableHead: getTableHead(v)
|
|
|
+ tableHead: getTableHead(v),
|
|
|
})
|
|
|
}
|
|
|
})
|
|
@@ -509,7 +528,12 @@ const initWS = () => {
|
|
|
const obj = {
|
|
|
edges: [...themeConfigCpt.value.chart.edges],
|
|
|
nodes: themeConfigCpt.value.chart.nodes.map(v => {
|
|
|
- v.num = json.datas.filter(s => s.indexCode === v.indexTableName)?.[0].data || 0
|
|
|
+ console.log(v)
|
|
|
+ if (v.type === 'inner_index') {
|
|
|
+ v.num = json.datas.filter(s => s.indexCode === v.indexTableName)?.[0]?.data || 0
|
|
|
+ } else {
|
|
|
+ v.num = json.datas.filter(s => s.serviceId === v.indexId)?.[0]?.data || 0
|
|
|
+ }
|
|
|
return v
|
|
|
})
|
|
|
}
|