Karsa 6 月之前
父节点
当前提交
ccb4ab344b

+ 9 - 0
src/routes/modules/chartRoutes.js

@@ -61,6 +61,15 @@ export default [
 					name_en:'Indics'
 				},
 			},
+			{
+				path: 'edbBasicbase',
+				component: () => import('@/views/dataEntry_manage/databaseList.vue'),
+				name: '指标库',
+				hidden: false,
+				meta:{
+					name_en:'Indics'
+				},
+			},
 			{
 				path: 'codecount',
 				component: () => import('@/views/dataEntry_manage/codecount/index.vue'),

+ 1 - 0
src/views/dataEntry_manage/databaseComponents/chartTrendRender.vue

@@ -227,6 +227,7 @@ export default {
 		
 		getDataByPath() {
 			const apiMap = {
+				'/edbBasicbase': this.getEdbData,
 				'/database': this.getEdbData,
 				'/analyseVariety': this.getPlantEdbData
 			}

+ 5 - 0
src/views/dataEntry_manage/databaseList.vue

@@ -801,6 +801,11 @@ export default {
 		},
 	},
 	computed: {
+		/* 是否是数据查看库 */
+		isBasic() {
+			return this.$route.path === '/edbBasicbase'
+		},
+
 		/* 计算弹窗控制 */
 		computedShowTypes() {
 			return this.computed_source===1 ? getComputedTypes() : getBatchComputedTypes();

+ 4 - 2
src/views/system_manage/dataOperaAuth.vue

@@ -303,8 +303,10 @@ export default {
       const tabs = [
         { label: this.$t('SystemManage.OperateAuth.tab01'), key: 1 },
         { label: this.$t('SystemManage.OperateAuth.tab02'), key: 2 },
-        { label: this.$t('SystemManage.OperateAuth.tab03'), key: 3 },
-        { label: this.$t('SystemManage.OperateAuth.tab04'), key: 4 },
+        // { label: this.$t('SystemManage.OperateAuth.tab03'), key: 3 },
+        { label: '数据查看', key: 3 },
+        { label: '指标加工', key: 3 },
+        { label: '衍生指标', key: 4 },
         { label: this.$t('SystemManage.OperateAuth.tab05'), key: 5 },
         { label: this.$t('SystemManage.OperateAuth.tab06'), key: 6 },
       ]