Browse Source

2022-12-03 update-1

1. 同步白色版12-01代码
moccus 2 năm trước cách đây
mục cha
commit
19f153f8bb

+ 3 - 3
src/router/index.js

@@ -41,7 +41,7 @@ const routes = [
         children: [
             {
                 path: 'combine',
-                component: () => import('@/views/dataFilter/combine/index'),
+                component: () => import('@/views/dataAnalysis/combine/index'),
                 name: 'dataFilterCombine',
                 meta: {
                     title: '功率曲线拟合分析',
@@ -50,7 +50,7 @@ const routes = [
             },
             {
                 path: 'rateAnalysis',
-                component: () => import('@/views/curveDeviation/rateAnalysis/index'),
+                component: () => import('@/views/dataAnalysis/rateAnalysis/index'),
                 name: 'dataFilterRateAnalysis',
                 meta: {
                     title: '风资源分析',
@@ -59,7 +59,7 @@ const routes = [
             },
             {
                 path: 'lineAnalysis',
-                component: () => import('@/views/dataFilter/lineAnalysis/index'),
+                component: () => import('@/views/dataAnalysis/lineAnalysis/index'),
                 name: 'dataFilterLineAnalysis',
                 meta: {
                     title: '曲线偏差率分析',

src/views/dataFilter/chartTheme.json → src/views/dataAnalysis/chartTheme.json


src/views/dataFilter/combine/components/current-scatter-chart.vue → src/views/dataAnalysis/combine/components/current-scatter-chart.vue


src/views/dataFilter/combine/components/search.vue → src/views/dataAnalysis/combine/components/search.vue


src/views/dataFilter/combine/components/table.vue → src/views/dataAnalysis/combine/components/table.vue


+ 2 - 0
src/views/dataFilter/combine/index.vue

@@ -175,6 +175,7 @@ const funRepeatMap = (arr) => {
 const funGetTree = async () => {
 	const res = await request.get("/power/process/tree")
 	treeData.value = funRepeatMap(res.data)
+	excelList.value = []
 }
 const funCurrentChange = ({ current, currentNode }) => {
 	excelCheckboxShow.value = true
@@ -216,6 +217,7 @@ const processTreeData = ref([])
 const funGetProcessTree = async () => {
 	const res = await request.get("/power/fitting/tree")
 	processTreeData.value = funRepeatMap(res.data)
+	excelFitList.value = []
 }
 const funProcessCurrentChange = ({ current, currentNode }) => {
 	if (current.childs) {

src/views/dataFilter/lineAnalysis/components/current-scatter-chart.vue → src/views/dataAnalysis/lineAnalysis/components/current-scatter-chart.vue


src/views/dataFilter/lineAnalysis/components/search.vue → src/views/dataAnalysis/lineAnalysis/components/search.vue


src/views/dataFilter/lineAnalysis/components/table.vue → src/views/dataAnalysis/lineAnalysis/components/table.vue


+ 1 - 0
src/views/dataFilter/lineAnalysis/index.vue

@@ -175,6 +175,7 @@ const funRepeatMap = (arr) => {
 const funGetTree = async () => {
 	const res = await request.get("/power/process/tree")
 	treeData.value = funRepeatMap(res.data)
+	excelList.value = []
 }
 const funCurrentChange = ({ current, currentNode }) => {
 	excelCheckboxShow.value = true

src/views/curveDeviation/rateAnalysis/chartTheme.json → src/views/dataAnalysis/rateAnalysis/chartTheme.json


src/views/curveDeviation/rateAnalysis/components/chart.vue → src/views/dataAnalysis/rateAnalysis/components/chart.vue


src/views/curveDeviation/rateAnalysis/components/lineChart.vue → src/views/dataAnalysis/rateAnalysis/components/lineChart.vue


src/views/curveDeviation/rateAnalysis/components/scatterSingleChart.vue → src/views/dataAnalysis/rateAnalysis/components/scatterSingleChart.vue


src/views/curveDeviation/rateAnalysis/components/search.vue → src/views/dataAnalysis/rateAnalysis/components/search.vue


+ 1 - 0
src/views/curveDeviation/rateAnalysis/index.vue

@@ -47,6 +47,7 @@ const funRepeatMap = (arr) => {
 const funGetTree = async () => {
 	const res = await request.get("/power/process/tree")
 	treeData.value = funRepeatMap(res.data)
+	excelList.value = []
 }
 const funTreeCheckChange = ({ current, checkedNodes, checkedKeys, halfCheckedNodes, halfCheckedKeys }) => {  //tree change  -> excel change
 	funCurrentChange({ current, currentNode: '' })

+ 1 - 0
src/views/dataFilter/prepare/index.vue

@@ -48,6 +48,7 @@ const funRepeatMap = (arr) => {
 const funGetTree = async () => {
 	const res = await request.get("/power/prepare/tree")
 	treeData.value = funRepeatMap(res.data)
+	excelList.value = []
 }
 const funCurrentChange = ({ current, currentNode }) => {
 	if (current.childs) {

+ 2 - 0
src/views/dataFilter/process/index.vue

@@ -58,6 +58,7 @@ const funRepeatMap = (arr) => {
 const funGetTree = async () => {
 	const res = await request.get("/power/prepare/tree")
 	treeData.value = funRepeatMap(res.data)
+	excelList.value = []
 }
 const funCurrentChange = ({ current, currentNode }) => {
 	excelCheckboxShow.value = true
@@ -99,6 +100,7 @@ const processTreeData = ref([])
 const funGetProcessTree = async () => {
 	const res = await request.get("/power/process/tree")
 	processTreeData.value = funRepeatMap(res.data)
+	excelList.value = []
 }
 const funProcessCurrentChange = ({ current, currentNode }) => {
 	excelCheckboxShow.value = false