|
@@ -55,7 +55,7 @@
|
|
|
<transition-group name="list" tag="div">
|
|
|
<template v-if="item.__expend">
|
|
|
<template v-for="son in item.children">
|
|
|
- <div class="item-son __hover" :class="{active: son.treeId === state.resultParams.activeIndex}" @click="state.resultParams.activeIndex = son.treeId" v-if="son.__count > 0">
|
|
|
+ <div class="item-son __hover" :class="{active: son.__id === state.resultParams.activeKey}" @click="state.resultParams.activeIndex = son.treeId, state.resultParams.activeKey = son.__id" v-if="son.__count > 0">
|
|
|
{{son.treeName}}<span class="total">({{son.__count}})</span>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -148,7 +148,7 @@
|
|
|
<div class="__hover" @click="state.ws.detail(item.esId)">
|
|
|
<SvgIcon name="detail_1" color="var(--cus-main-color)"/>详情
|
|
|
</div>
|
|
|
- <div class="__hover" v-if="tableConfigCpt.themeMode !== 'no_support'" @click="toArchive(item)">
|
|
|
+ <div class="__hover" v-if="tableConfigCpt.themeMode !== 'no_support' && tableConfigCpt.themeId" @click="toArchive(item)">
|
|
|
<SvgIcon name="archives_1" color="var(--cus-main-color)"/>档案
|
|
|
</div>
|
|
|
</div>
|
|
@@ -181,7 +181,7 @@
|
|
|
<div class="__hover" @click="state.ws.detail(item.esId)">
|
|
|
<SvgIcon name="detail_1" color="var(--cus-main-color)"/>详情
|
|
|
</div>
|
|
|
- <div class="__hover" v-if="tableConfigCpt.themeMode !== 'no_support'" @click="toArchive(item)">
|
|
|
+ <div class="__hover" v-if="tableConfigCpt.themeMode !== 'no_support' && tableConfigCpt.themeId" @click="toArchive(item)">
|
|
|
<SvgIcon name="archives_1" color="var(--cus-main-color)"/>档案
|
|
|
</div>
|
|
|
</div>
|
|
@@ -256,7 +256,8 @@ const state: any = reactive({
|
|
|
tree: [],
|
|
|
activeTab: '',
|
|
|
activeIndex: '',
|
|
|
- indexConfig: {}
|
|
|
+ indexConfig: {},
|
|
|
+ activeKey: ''
|
|
|
},
|
|
|
ws: {
|
|
|
instance: null,
|
|
@@ -326,7 +327,12 @@ const tableConfigCpt = computed(() => {
|
|
|
cardImg: cardImg,
|
|
|
cardConfig: cardConfig,
|
|
|
detailConfig: detailConfig,
|
|
|
- themeMode: state.resultParams.indexConfig.themeMode
|
|
|
+ themeMode: state.resultParams.indexConfig.themeMode,
|
|
|
+ themeId: state.resultParams.indexConfig.themeId,
|
|
|
+ themeField: state.resultParams.indexConfig.themeField,
|
|
|
+ themeType: state.resultParams.indexConfig.themeType,
|
|
|
+ themeUrl: state.resultParams.indexConfig.themeUrl,
|
|
|
+ themeParam: state.resultParams.indexConfig.themeParam,
|
|
|
}
|
|
|
state.tableParams.model = state.resultParams.indexConfig.defModel === 'column_model' ? 'list' : 'card'
|
|
|
console.log(res)
|
|
@@ -370,6 +376,7 @@ const onSearch = () => {
|
|
|
const initResultTree = () => {
|
|
|
state.resultParams.activeTab = ''
|
|
|
state.resultParams.activeIndex = ''
|
|
|
+ state.resultParams.activeKey = ''
|
|
|
const arr = []
|
|
|
WebStore.searchAreaTree.forEach(v => {
|
|
|
const t = {
|
|
@@ -405,19 +412,27 @@ const onPage = (pageNum, pageSize) => {
|
|
|
state.ws.list(false)
|
|
|
}
|
|
|
const toArchive = (item) => {
|
|
|
- switch (tableConfigCpt.value.themeMode) {
|
|
|
- case 'person': {
|
|
|
- const routerUrl = router.resolve({
|
|
|
- name: '2a9583dc-94ed-430e-baa7-b61af9723a0c',
|
|
|
- query: {
|
|
|
- esId: item.esId
|
|
|
+ let url = tableConfigCpt.value.themeUrl
|
|
|
+ switch (String(tableConfigCpt.value.themeType)) {
|
|
|
+ case '2': {
|
|
|
+ if (tableConfigCpt.value.themeField) {
|
|
|
+ let p = []
|
|
|
+ JSON.parse(tableConfigCpt.value.themeField).forEach(v => {
|
|
|
+ p.push(`${v.themeParam}=${item[v.fieldParam].replace(/<em>|<\/em>/g, '')}`)
|
|
|
+ })
|
|
|
+ if (p.length > 0) {
|
|
|
+ url += `?${p.join('&')}`
|
|
|
}
|
|
|
- })
|
|
|
- window.open(routerUrl.href, "_blank")
|
|
|
+ console.log(url)
|
|
|
+ }
|
|
|
} break
|
|
|
- case 'car': {
|
|
|
+ case '3': {
|
|
|
+ if (tableConfigCpt.value.themeParam) {
|
|
|
+ url += tableConfigCpt.value.themeParam
|
|
|
+ }
|
|
|
} break
|
|
|
}
|
|
|
+ window.open(url, "_blank")
|
|
|
}
|
|
|
const initDictionary = () => {
|
|
|
DictionaryStore.initDict('gx_method')
|
|
@@ -586,6 +601,7 @@ const initWS = () => {
|
|
|
const index = type.children[indexI]
|
|
|
if (index.__count > 0 && !state.resultParams.activeIndex) {
|
|
|
state.resultParams.activeIndex = index.treeId
|
|
|
+ state.resultParams.activeKey = index.__id
|
|
|
break
|
|
|
}
|
|
|
}
|