|
@@ -2,23 +2,23 @@
|
|
|
<div class="database_container">
|
|
|
<div class="database_top">
|
|
|
<div class="top-left">
|
|
|
- <el-button v-permission="permissionBtn.edbDataPermission.edbData_addEdb"
|
|
|
- type="primary" @click="addHandler"><!-- 添加指标 -->{{$t('EtaBasePage.add_edb_btn')}}</el-button>
|
|
|
- <el-button v-permission="permissionBtn.edbDataPermission.edbData_calcuEdb"
|
|
|
- type="primary" @click="addComputedHandler"><!-- 计算指标 -->{{$t('EtaBasePage.calculation_edb_btn')}}</el-button>
|
|
|
- <el-button v-permission="permissionBtn.edbDataPermission.edbData_replaceEdb"
|
|
|
- type="primary" @click="replaceEdbHandler"><!-- 替换指标 -->{{$t('EtaBasePage.replace_edb_btn')}}</el-button>
|
|
|
- <el-button v-permission="permissionBtn.edbDataPermission.edbData_codeRun"
|
|
|
- type="primary" @click="$router.push({path: '/codecount'})"><!-- 代码运算 -->{{$t('EtaBasePage.algorithm_btn')}}</el-button>
|
|
|
- <el-button v-permission="permissionBtn.edbDataPermission.edbData_dataAdjust"
|
|
|
- type="primary" @click="$router.push({path: '/adjustdata'})"><!-- 数据调整 -->{{$t('EtaBasePage.adjustment_btn')}}</el-button>
|
|
|
- <!-- <el-button v-permission="permissionBtn.edbDataPermission.edbData_batchUpdate"
|
|
|
- type="primary" plain @click="updateHandler">一键刷新</el-button> -->
|
|
|
+ <template v-if="!isBasicBase">
|
|
|
+ <el-button v-permission="permissionBtn.edbDataPermission.edbData_addEdb"
|
|
|
+ type="primary" @click="addHandler"><!-- 添加指标 -->{{$t('EtaBasePage.add_edb_btn')}}</el-button>
|
|
|
+ <el-button v-permission="permissionBtn.edbDataPermission.edbData_calcuEdb"
|
|
|
+ type="primary" @click="addComputedHandler"><!-- 计算指标 -->{{$t('EtaBasePage.calculation_edb_btn')}}</el-button>
|
|
|
+ <el-button v-permission="permissionBtn.edbDataPermission.edbData_replaceEdb"
|
|
|
+ type="primary" @click="replaceEdbHandler"><!-- 替换指标 -->{{$t('EtaBasePage.replace_edb_btn')}}</el-button>
|
|
|
+ <el-button v-permission="permissionBtn.edbDataPermission.edbData_codeRun"
|
|
|
+ type="primary" @click="$router.push({path: '/codecount'})"><!-- 代码运算 -->{{$t('EtaBasePage.algorithm_btn')}}</el-button>
|
|
|
+ <el-button v-permission="permissionBtn.edbDataPermission.edbData_dataAdjust"
|
|
|
+ type="primary" @click="$router.push({path: '/adjustdata'})"><!-- 数据调整 -->{{$t('EtaBasePage.adjustment_btn')}}</el-button>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
<div class="top-right">
|
|
|
|
|
|
-
|
|
|
<el-select
|
|
|
+ v-if="classifyShowType==='public'"
|
|
|
v-model="search_txt"
|
|
|
v-loadMore="searchLoad"
|
|
|
ref="searchRef"
|
|
@@ -49,9 +49,20 @@
|
|
|
</div>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
+
|
|
|
+ <el-input
|
|
|
+ v-else
|
|
|
+ v-model="search_txt"
|
|
|
+ :placeholder="$t('Edb.InputHolderAll.input_name_orid')"
|
|
|
+ style="width: 260px;"
|
|
|
+ @change="getEdbChartList"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <i slot="prefix" class="el-input__icon el-icon-search"/>
|
|
|
+ </el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="database-label">
|
|
|
+ <!-- <div class="database-label">
|
|
|
<edb-label-list
|
|
|
:currentLang="currentLang"
|
|
|
:labelList="labelList"
|
|
@@ -60,7 +71,7 @@
|
|
|
@deleteLabel="deleteLabel"
|
|
|
@moveLabel="({oldIndex,newIndex})=>{labelList[oldIndex] = labelList.splice(newIndex, 1, labelList[oldIndex])[0];}"
|
|
|
/>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<div class="database_main box" id="box" v-if="showData">
|
|
|
<!-- 展开收起目录按钮 -->
|
|
|
<span
|
|
@@ -72,107 +83,130 @@
|
|
|
</span>
|
|
|
|
|
|
<div class="main-left left" id="left" v-show="isMainLeftShow">
|
|
|
+
|
|
|
<div class="tree-cont">
|
|
|
- <div style="padding-bottom:20px;padding-right:20px;display:flex;justify-content:space-between">
|
|
|
+ <el-radio-group
|
|
|
+ v-model="classifyShowType"
|
|
|
+ @input="handleChangeClassifyType"
|
|
|
+ v-if="isBasicBase"
|
|
|
+ >
|
|
|
+ <el-radio-button label="public">
|
|
|
+ 公共指标库
|
|
|
+ </el-radio-button>
|
|
|
+ <el-radio-button label="own">
|
|
|
+ 个人收藏
|
|
|
+ </el-radio-button>
|
|
|
+ </el-radio-group>
|
|
|
+
|
|
|
+ <div style="padding:20px 0;padding-right:20px;display:flex;justify-content:space-between">
|
|
|
<span><!-- 目录 -->{{$t('EtaBasePage.tab_menu')}}</span>
|
|
|
- <el-checkbox
|
|
|
+ <!-- <el-checkbox
|
|
|
v-model="IsOnlyMe"
|
|
|
@change="onlyMeHandler"
|
|
|
- ><!-- 只看我的 -->{{$t('Edb.only_see_mine')}}</el-checkbox>
|
|
|
+ >{{$t('Edb.only_see_mine')}}</el-checkbox> -->
|
|
|
</div>
|
|
|
<div class="target_tree">
|
|
|
- <el-tree
|
|
|
- ref="menuTree"
|
|
|
- :data="treeData"
|
|
|
- node-key="UniqueCode"
|
|
|
- :props="defaultProp"
|
|
|
- :allow-drag="canDragHandle"
|
|
|
- :allow-drop="canDropHandle"
|
|
|
- :current-node-key="select_node"
|
|
|
- :default-expanded-keys="defaultShowNodes"
|
|
|
- :draggable="isEdbBtnShow('moveCatalog')"
|
|
|
- :expand-on-click-node="false"
|
|
|
- check-strictly
|
|
|
- empty-text="暂无目录"
|
|
|
- lazy
|
|
|
- :load="getLazyTreeData"
|
|
|
- @node-expand="handleNodeExpand"
|
|
|
- @node-collapse="handleNodeCollapse"
|
|
|
- @current-change="nodeChange"
|
|
|
- @node-drop="dropOverHandle"
|
|
|
- @node-drag-end="dropMouseLeave"
|
|
|
- @node-drag-leave="dropMouseLeave"
|
|
|
- @node-drag-enter="dropMouseOver"
|
|
|
- >
|
|
|
- <span
|
|
|
- class="custom-tree-node"
|
|
|
- slot-scope="{ node, data }"
|
|
|
+ <!-- 指标目录 -->
|
|
|
+ <el-tree
|
|
|
+ v-if="classifyShowType==='public'"
|
|
|
+ ref="menuTree"
|
|
|
+ :data="treeData"
|
|
|
+ node-key="UniqueCode"
|
|
|
+ :props="defaultProp"
|
|
|
+ :allow-drag="canDragHandle"
|
|
|
+ :allow-drop="canDropHandle"
|
|
|
+ :current-node-key="select_node"
|
|
|
+ :default-expanded-keys="defaultShowNodes"
|
|
|
+ :draggable="isEdbBtnShow('moveCatalog')"
|
|
|
+ :expand-on-click-node="false"
|
|
|
+ check-strictly
|
|
|
+ empty-text="暂无目录"
|
|
|
+ lazy
|
|
|
+ :load="getLazyTreeData"
|
|
|
+ @node-expand="handleNodeExpand"
|
|
|
+ @node-collapse="handleNodeCollapse"
|
|
|
+ @current-change="nodeChange"
|
|
|
+ @node-drop="dropOverHandle"
|
|
|
+ @node-drag-end="dropMouseLeave"
|
|
|
+ @node-drag-leave="dropMouseLeave"
|
|
|
+ @node-drag-enter="dropMouseOver"
|
|
|
>
|
|
|
- <el-input
|
|
|
- ref="editVal"
|
|
|
- style="width: 90px"
|
|
|
- placeholder="请输入值"
|
|
|
- class="label-input"
|
|
|
- v-model="new_label"
|
|
|
- v-if="data.isEdit&&isEdbBtnShow('editCatalog')"
|
|
|
- @blur="changeValue(node, data)"
|
|
|
- />
|
|
|
- <span
|
|
|
- @dblclick.stop="editNodeLabel(node, data)"
|
|
|
- v-else
|
|
|
- class="text_oneLine node_label"
|
|
|
- :style="`width:${(select_node === data.UniqueCode && node.Nodewidth) || ''}`"
|
|
|
- :id="`node${data.UniqueCode}`"
|
|
|
- >
|
|
|
- <img
|
|
|
- :src="$icons.lock_ico2"
|
|
|
- width="18"
|
|
|
- height="18"
|
|
|
- style="vertical-align:middle"
|
|
|
- v-if="!data.HaveOperaAuth&&data.EdbInfoId"
|
|
|
- />
|
|
|
- <span>{{ currentLang==='en' ? (data.ClassifyNameEn||data.ClassifyName) : data.ClassifyName }}</span>
|
|
|
- </span>
|
|
|
<span
|
|
|
- style="display: flex; align-items: center"
|
|
|
- v-if="select_node===data.UniqueCode&&data.HaveOperaAuth"
|
|
|
+ class="custom-tree-node"
|
|
|
+ slot-scope="{ node, data }"
|
|
|
>
|
|
|
- <!-- <img
|
|
|
- src="~@/assets/img/data_m/move_ico.png"
|
|
|
- alt=""
|
|
|
- style="width: 14px; height: 14px; margin-right: 8px"
|
|
|
- v-if="data.Button.MoveButton&&isEdbBtnShow('moveCatalog')"
|
|
|
- /> -->
|
|
|
- <!-- 添加子项 -->
|
|
|
- <img
|
|
|
- src="~@/assets/img/set_m/add.png"
|
|
|
- alt=""
|
|
|
- style="width: 14px; height: 14px; margin-right: 8px"
|
|
|
- @click.stop="addNode(node,data)"
|
|
|
- v-if="data.Button.AddButton&&isEdbBtnShow('editCatalog')&&node.level<6"
|
|
|
- />
|
|
|
- <!-- 编辑节点 如果是分类,判断data.Button.OpButton不变;如果是指标,不显示(ETA1.0.3) -->
|
|
|
- <img
|
|
|
- src="~@/assets/img/set_m/edit.png"
|
|
|
- alt=""
|
|
|
- style="width: 15px; height: 14px; margin-right: 8px"
|
|
|
- @click.stop="editNode(node,data)"
|
|
|
- v-if="!data.EdbCode&&(data.Button.OpButton)&&isEdbBtnShow('editCatalog')"
|
|
|
+ <el-input
|
|
|
+ ref="editVal"
|
|
|
+ style="width: 90px"
|
|
|
+ placeholder="请输入值"
|
|
|
+ class="label-input"
|
|
|
+ v-model="new_label"
|
|
|
+ v-if="data.isEdit&&isEdbBtnShow('editCatalog')"
|
|
|
+ @blur="changeValue(node, data)"
|
|
|
/>
|
|
|
- <!-- 删除节点 如果是分类,判断data.Button.DeleteButton不变;如果是指标,不显示(ETA1.0.3) -->
|
|
|
- <img
|
|
|
- slot="reference"
|
|
|
- src="~@/assets/img/set_m/del.png"
|
|
|
- alt=""
|
|
|
- style="width: 14px; height: 14px;"
|
|
|
- @click.stop="removeNode(node,data)"
|
|
|
- v-if="!data.EdbCode&&(data.Button.DeleteButton)&&isEdbBtnShow('deleteCatalog')"
|
|
|
- />
|
|
|
-
|
|
|
+ <span
|
|
|
+ @dblclick.stop="editNodeLabel(node, data)"
|
|
|
+ v-else
|
|
|
+ class="text_oneLine node_label"
|
|
|
+ :style="`width:${(select_node === data.UniqueCode && node.Nodewidth) || ''}`"
|
|
|
+ :id="`node${data.UniqueCode}`"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ :src="$icons.lock_ico2"
|
|
|
+ width="18"
|
|
|
+ height="18"
|
|
|
+ style="vertical-align:middle"
|
|
|
+ v-if="!data.HaveOperaAuth&&data.EdbInfoId"
|
|
|
+ />
|
|
|
+ <span>{{ currentLang==='en' ? (data.ClassifyNameEn||data.ClassifyName) : data.ClassifyName }}</span>
|
|
|
+ </span>
|
|
|
+ <span
|
|
|
+ style="display: flex; align-items: center"
|
|
|
+ v-if="select_node===data.UniqueCode&&data.HaveOperaAuth"
|
|
|
+ >
|
|
|
+ <!-- <img
|
|
|
+ src="~@/assets/img/data_m/move_ico.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 14px; height: 14px; margin-right: 8px"
|
|
|
+ v-if="data.Button.MoveButton&&isEdbBtnShow('moveCatalog')"
|
|
|
+ /> -->
|
|
|
+ <!-- 添加子项 -->
|
|
|
+ <img
|
|
|
+ src="~@/assets/img/set_m/add.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 14px; height: 14px; margin-right: 8px"
|
|
|
+ @click.stop="addNode(node,data)"
|
|
|
+ v-if="data.Button.AddButton&&isEdbBtnShow('editCatalog')&&node.level<6"
|
|
|
+ />
|
|
|
+ <!-- 编辑节点 如果是分类,判断data.Button.OpButton不变;如果是指标,不显示(ETA1.0.3) -->
|
|
|
+ <img
|
|
|
+ src="~@/assets/img/set_m/edit.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 15px; height: 14px; margin-right: 8px"
|
|
|
+ @click.stop="editNode(node,data)"
|
|
|
+ v-if="!data.EdbCode&&(data.Button.OpButton)&&isEdbBtnShow('editCatalog')"
|
|
|
+ />
|
|
|
+ <!-- 删除节点 如果是分类,判断data.Button.DeleteButton不变;如果是指标,不显示(ETA1.0.3) -->
|
|
|
+ <img
|
|
|
+ slot="reference"
|
|
|
+ src="~@/assets/img/set_m/del.png"
|
|
|
+ alt=""
|
|
|
+ style="width: 14px; height: 14px;"
|
|
|
+ @click.stop="removeNode(node,data)"
|
|
|
+ v-if="!data.EdbCode&&(data.Button.DeleteButton)&&isEdbBtnShow('deleteCatalog')"
|
|
|
+ />
|
|
|
+
|
|
|
+ </span>
|
|
|
</span>
|
|
|
- </span>
|
|
|
- </el-tree>
|
|
|
+ </el-tree>
|
|
|
+
|
|
|
+ <!-- 收藏目录 -->
|
|
|
+ <collectEdbMenu
|
|
|
+ v-else
|
|
|
+ :data="treeData"
|
|
|
+ />
|
|
|
</div>
|
|
|
+
|
|
|
<div class="noDepart" @click="addLevelOneHandle" v-if="CanOpClassify&&isEdbBtnShow('editCatalog')">
|
|
|
<img
|
|
|
src="~@/assets/img/set_m/add_ico.png"
|
|
@@ -218,6 +252,8 @@
|
|
|
<span v-if="([2,34].includes(item.Source) || item.EdbType==2) && isEdbBtnShow('enableOrDisable')&&item.IsSupplierStop!=1"
|
|
|
class="enable-toggle-btn" :style="{'color': item.NoUpdate==1?'#0052D9':'#D54941'}"
|
|
|
@click="toggleEdbRefreshStatus(item)">{{item.NoUpdate==1?$t('SystemManage.DataRefresh.enable'):$t('SystemManage.DataRefresh.disable') }}</span>
|
|
|
+
|
|
|
+ <span class="deletesty" v-if="classifyShowType==='own'">移出</span>
|
|
|
</div>
|
|
|
<img src="~@/assets/img/icons/edb-stopping.png" class="stop-mark" v-if="([2,34].includes(item.Source) || item.EdbType==2) && ( item.IsSupplierStop==1 || (item.IsSupplierStop==0&&item.NoUpdate==1))" />
|
|
|
</div>
|
|
@@ -239,10 +275,17 @@
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
<div class="edb-tool-icon edb-tool" style="align-items: center;">
|
|
|
- <el-button v-if="([2,34].includes(EdbData.Source) || EdbData.EdbType==2) && isEdbBtnShow('enableOrDisable')&&EdbData.IsSupplierStop!=1"
|
|
|
- type="text" :style="{'color': EdbData.NoUpdate==1?'#0052D9':'#D54941'}"
|
|
|
+ <el-button
|
|
|
+ v-if="([2,34].includes(EdbData.Source) || EdbData.EdbType==2) && isEdbBtnShow('enableOrDisable')&&EdbData.IsSupplierStop!=1"
|
|
|
+ type="text"
|
|
|
+ :style="{'color': EdbData.NoUpdate==1?'#0052D9':'#D54941'}"
|
|
|
@click="toggleEdbRefreshStatus(EdbData,'detail')"
|
|
|
>{{EdbData.NoUpdate==1?$t('SystemManage.DataRefresh.enable'):$t('SystemManage.DataRefresh.disable') }}<!-- 启用/停用 --></el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="EdbData.EdbType===1 && isEdbBtnShow('edbBaseData_collect')"
|
|
|
+ type="text"
|
|
|
+ @click="handleCollectEdb"
|
|
|
+ >{{EdbData.IsCollect?'移出':'收藏'}}</el-button>
|
|
|
<el-button
|
|
|
v-if="isEdbBtnShow('update')"
|
|
|
type="text"
|
|
@@ -570,6 +613,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { dataBaseInterface } from '@/api/api.js';
|
|
|
+import { edbCollectInterface } from '@/api/modules/chartApi';
|
|
|
import { getComputedTypes,getBatchComputedTypes,getFormulaTip } from './databaseComponents/util';
|
|
|
|
|
|
import openDialog from './databaseComponents/openDialog';
|
|
@@ -596,6 +640,8 @@ import SmoothEdbDialog from './databaseComponents/smoothEdbDialog.vue';
|
|
|
import batchComputedV2 from './databaseComponents/batchComputedV2.vue';
|
|
|
import setLangInfoDia from './components/setLangInfo.vue'
|
|
|
import edbHasUsedDia from './components/edbHasUsedDia.vue';
|
|
|
+import collectEdbMenu from './databaseComponents/collectEdbMenu.vue';
|
|
|
+import edbCollectDia from './databaseComponents/edbCollectDia.vue';
|
|
|
export default {
|
|
|
name: '',
|
|
|
components: {
|
|
@@ -622,7 +668,9 @@ export default {
|
|
|
SmoothEdbDialog,
|
|
|
batchComputedV2,
|
|
|
setLangInfoDia,
|
|
|
- edbHasUsedDia
|
|
|
+ edbHasUsedDia,
|
|
|
+ collectEdbMenu,
|
|
|
+ edbCollectDia
|
|
|
},
|
|
|
directives: {
|
|
|
drag(el, bindings,vnode) {
|
|
@@ -759,7 +807,10 @@ export default {
|
|
|
isLangInfoDia: false,
|
|
|
|
|
|
edbHasUsedDiaShow:false,
|
|
|
- hasUsedList:[]
|
|
|
+ hasUsedList:[],
|
|
|
+
|
|
|
+ /* 目录分类 */
|
|
|
+ classifyShowType:'public'
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -802,7 +853,7 @@ export default {
|
|
|
},
|
|
|
computed: {
|
|
|
/* 是否是数据查看库 */
|
|
|
- isBasic() {
|
|
|
+ isBasicBase() {
|
|
|
return this.$route.path === '/edbBasicbase'
|
|
|
},
|
|
|
|
|
@@ -940,14 +991,23 @@ export default {
|
|
|
'checkRelatedEdb':edbDataPermission.edbData_checkRelatedEdb,//查看关联指标
|
|
|
'checkCalcChart':edbDataPermission.edbData_checkCalcChart,//查看计算指标
|
|
|
'enableOrDisable':edbDataPermission.edbData_enableOrDisable,//启用/停用
|
|
|
+
|
|
|
+ 'edbBaseData_collect': edbDataPermission.edbBaseData_collect,//收藏移出
|
|
|
}
|
|
|
return checkPermissionBtn(BtnMap[type])
|
|
|
},
|
|
|
/* 获取树分类数据 */
|
|
|
- getTreeData(params) {
|
|
|
-
|
|
|
- dataBaseInterface.targetCatalog({IsOnlyMe:this.IsOnlyMe,ParentId:0}).then(res=>{
|
|
|
- if(res.Ret===200){
|
|
|
+ async getTreeData(params) {
|
|
|
+ const res = this.classifyShowType==='own'
|
|
|
+ ? await edbCollectInterface.getEdbCollectClassify({ParentId:0})
|
|
|
+ : await dataBaseInterface.targetCatalog({
|
|
|
+ IsOnlyMe:this.IsOnlyMe,
|
|
|
+ ParentId:0,
|
|
|
+ ClassifyType: this.isBasicBase ? 0 : 2
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ if(res.Ret!==200) return
|
|
|
const arr=res.Data.AllNodes || []
|
|
|
this.treeData=arr.map(item=>{
|
|
|
return {
|
|
@@ -955,13 +1015,15 @@ export default {
|
|
|
// isLeaf:item.Children.length?false:true
|
|
|
}
|
|
|
})
|
|
|
+
|
|
|
this.CanOpClassify = res.Data.CanOpClassify;
|
|
|
this.showData = true;
|
|
|
- /* 处理树展开和选中图表 */
|
|
|
- params && this.selectCurrentNode(params);
|
|
|
- !params && this.select_node && this.$refs.menuTree.setCurrentKey(this.select_node);
|
|
|
- }
|
|
|
- })
|
|
|
+
|
|
|
+ if(this.classifyShowType==='public') {
|
|
|
+ /* 处理树展开和选中图表 */
|
|
|
+ params && this.selectCurrentNode(params);
|
|
|
+ !params && this.select_node && this.$refs.menuTree.setCurrentKey(this.select_node);
|
|
|
+ }
|
|
|
},
|
|
|
/* 获取最新的指标 默认展示 */
|
|
|
getNewTargetList: _.throttle(function() {
|
|
@@ -1058,7 +1120,8 @@ export default {
|
|
|
PageSize:this.PageSize,
|
|
|
CurrentIndex:this.CurrentIndex,
|
|
|
ClassifyId:this.select_classifyId,
|
|
|
- IsOnlyMe:this.IsOnlyMe
|
|
|
+ IsOnlyMe:this.IsOnlyMe,
|
|
|
+ EdbType: this.isBasicBase?1:2
|
|
|
}).then(res=>{
|
|
|
if(res.Ret!==200) return
|
|
|
if(res.Data){
|
|
@@ -1066,8 +1129,6 @@ export default {
|
|
|
this.Total = res.Data.Paging.Totals||0
|
|
|
this.IsListEnd = res.Data.Paging.IsEnd
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
})
|
|
|
},
|
|
|
// 切换刷新状态
|
|
@@ -1113,7 +1174,8 @@ export default {
|
|
|
searchApi(query,page=1) {
|
|
|
dataBaseInterface.targetSearchByPage({
|
|
|
KeyWord:query,
|
|
|
- CurrentIndex: page
|
|
|
+ CurrentIndex: page,
|
|
|
+ EdbType: this.isBasicBase?1:2
|
|
|
}).then(res => {
|
|
|
if(res.Ret !== 200) return
|
|
|
|
|
@@ -2068,7 +2130,11 @@ export default {
|
|
|
resolve(this.treeData)
|
|
|
}else{
|
|
|
let arr=[]
|
|
|
- const res=await dataBaseInterface.targetCatalog({ParentId:node.data.ClassifyId,IsOnlyMe:this.IsOnlyMe})
|
|
|
+ const res=await dataBaseInterface.targetCatalog({
|
|
|
+ ParentId:node.data.ClassifyId,
|
|
|
+ IsOnlyMe:this.IsOnlyMe,
|
|
|
+ ClassifyType: this.isBasicBase ? 0 : 2
|
|
|
+ })
|
|
|
if (res.Ret === 200) {
|
|
|
const temarr = res.Data.AllNodes || [];
|
|
|
arr=temarr.map(item=>{
|
|
@@ -2126,6 +2192,20 @@ export default {
|
|
|
this.$nextTick(()=>{//重新打开计算指标选择类型弹窗
|
|
|
this.isOpenComputed=true
|
|
|
})
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 切换分类类型 */
|
|
|
+ handleChangeClassifyType() {
|
|
|
+ this.defaultShowNodes = [];
|
|
|
+ this.selected_edbid = 0;
|
|
|
+ this.select_classifyId = 0;
|
|
|
+ this.getTreeData()
|
|
|
+ this.getEdbChartList()
|
|
|
+ },
|
|
|
+
|
|
|
+ /* 收藏指标 */
|
|
|
+ handleCollectEdb() {
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
//离开页面时保存标签
|
|
@@ -2134,7 +2214,7 @@ export default {
|
|
|
next()
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.getlabelList()
|
|
|
+ // this.getlabelList()
|
|
|
this.getEdbChartList()
|
|
|
this.$route.query.code
|
|
|
? this.getTreeData({code: this.$route.query.code,id: this.$route.query.id,classifyId:this.$route.query.classifyId})
|
|
@@ -2241,7 +2321,7 @@ export default {
|
|
|
}
|
|
|
.target_tree {
|
|
|
color: #333;
|
|
|
- height: calc(100vh - 400px);
|
|
|
+ height: calc(100vh - 420px);
|
|
|
overflow: auto;
|
|
|
.label-input .el-input__inner {
|
|
|
height: 25px;
|