Przeglądaj źródła

统计分析-拟合方程曲线

jwyu 1 rok temu
rodzic
commit
78760ddb6b

+ 8 - 0
src/lang/modules/EtaChart/commonLang.js

@@ -95,6 +95,14 @@ export default {
     zh:'选择我的分类',
     en:'Select My Category Add New category'
   },
+  add_chart_btn:{
+    zh:'添加图表',
+    en:'Add chart'
+  },
+  only_see_mine:{
+    zh:'只看我的',
+    en:'Just look at mine'
+  },
 
   //操作提示文案
   OptMsg:{

+ 26 - 0
src/lang/modules/StatisticAnalysis/FittingEquationChart.js

@@ -0,0 +1,26 @@
+/**
+ * 统计分析-拟合方程曲线
+ */
+
+/* 英文 */
+export const FittingEquationChartEn = {
+    x_edb:'X-value index',
+    y_edb:'Y-value index',
+    msg01:'Please select an indicator',
+    msg02:'The number of indicators shall not be less than 2 groups',
+    msg03:'The number of indicators on the X-axis and Y-axis is inconsistent',
+};
+  
+/* 中文 */
+export const FittingEquationChartZh = {
+    x_edb:'X值指标',
+    y_edb:'Y轴指标',
+    msg01:'请先选择指标',
+    msg02:'指标数量不得少于2组',
+    msg03:'X轴与Y轴指标数量不一致',
+
+};
+  
+/**
+* $t('StatisticAnalysis.FittingEquationChart.XXX')
+*/

+ 3 - 1
src/lang/modules/StatisticAnalysis/IndexEn.js

@@ -1,9 +1,11 @@
 
 import { ChartRelevanceEn } from "./ChartRelevance";
+import { FittingEquationChartEn } from "./FittingEquationChart";
 
 export default {
   // 统计分析
   StatisticAnalysis: {
-    ChartRelevance:ChartRelevanceEn
+    ChartRelevance:ChartRelevanceEn,
+    FittingEquationChart:FittingEquationChartEn
   },
 };

+ 4 - 1
src/lang/modules/StatisticAnalysis/IndexZh.js

@@ -1,8 +1,11 @@
 import { ChartRelevanceZh } from "./ChartRelevance";
+import { FittingEquationChartZh } from "./FittingEquationChart";
+
 
 export default {
     // 统计分析
     StatisticAnalysis: {
-      ChartRelevance:ChartRelevanceZh
+      ChartRelevance:ChartRelevanceZh,
+      FittingEquationChart:FittingEquationChartZh
     },
   };

+ 6 - 0
src/views/chartRelevance_manage/components/explainText.js

@@ -41,6 +41,12 @@ export const fittingEquationListTextArr = [
     <p>2、对两组在选定时间范围内的每一个时间节点,生成拟合方程Y=aX+b以及相关系数R²</p>
     <p>3、分别画出弹性系数a,截距b,相关系数R²,在选定时间范围内的曲线图</p>`,
 ]
+export const fittingEquationListTextArrEn = [
+    `<p style='font-weight:bold;'>Curve processing logic:</p>
+    <p>1、select two groups of relevant indicators</p>
+    <p>2、generate the fitting equation Y=aX+b and correlation coefficient R² for each time node in the selected time range of the two groups</p>
+    <p>3、and draw the curves of the elastic coefficient a, intercept b, and correlation coefficient R² within the selected time range respectively</p>`,
+]
 
 export const statisticFeatureListTextArr = [
     `<p style='font-weight:bold;'>标准差处理逻辑:</p>

+ 23 - 17
src/views/chartRelevance_manage/fittingEquation/fittingEquationChartEditor.vue

@@ -9,11 +9,11 @@
     </span>
     <div class="left-cont" v-show="!isSlideLeft" id="left">
       <div class="left-top">
-        <el-button type="primary" @click="saveHandle">保存</el-button>
+        <el-button type="primary" @click="saveHandle">{{$t('Dialog.confirm_save_btn')}}</el-button>
         <el-button style="margin-right:20px" type="primary" plain @click="$router.replace({
 					path: '/fittingEquationList',
 					query: $route.query
-				})">取消</el-button>
+				})">{{$t('Dialog.cancel_btn')}}</el-button>
 				<!-- <span style="color: #666;">
 						使用说明
 					<el-tooltip
@@ -29,12 +29,12 @@
 				</span> -->
 				<div style="color:#409EFF;font-size: 16px;cursor: pointer;" @click="showExplain = true">
 					<i class="el-icon-document" style="font-size:22px;"></i>
-					操作说明
+					{{$t('StatisticAnalysis.ChartRelevance.opt_tip_btn')}}
 				</div>
       </div>
 			<div class="left-min">
 				<div class="section-item">
-					<label style="display: block">时间:</label>
+					<label style="display: block">{{$t('StatisticAnalysis.ChartRelevance.time')}}:</label>
 					<el-select
 							style="width: 120px;margin: 10px 0"
 							v-model="leftOption.DateType"
@@ -65,7 +65,7 @@
             :name="0"
           >
             <template slot="title">
-              <el-button type="text" size="small" style="font-size: 15px;">X值指标</el-button>
+              <el-button type="text" size="small" style="font-size: 15px;">{{$t('StatisticAnalysis.FittingEquationChart.x_edb')}}</el-button>
             </template>
             <div class="setting-wrapper">
               <selectTarget
@@ -97,7 +97,7 @@
             :name="1"
           >
             <template slot="title">
-              <el-button type="text" size="small" style="font-size: 15px;">Y轴指标</el-button>
+              <el-button type="text" size="small" style="font-size: 15px;">{{$t('StatisticAnalysis.FittingEquationChart.y_edb')}}</el-button>
             </template>
             <div class="setting-wrapper">
               <selectTarget
@@ -126,7 +126,7 @@
           </el-collapse-item>
         </el-collapse>
         
-        <el-button type="primary" @click="getPreviewData">确定</el-button>
+        <el-button type="primary" @click="getPreviewData">{{$t('Dialog.confirm_btn')}}</el-button>
 			</div>
       <span
         class="move-btn resize"
@@ -209,6 +209,12 @@ export default {
 	computed: {
 		roleName() {
 			return localStorage.getItem('userName');
+		},
+		yearSelector(){
+			return [
+				...yearSelector,
+				{ name: this.$i18n.locale == 'zh'?'自定义':'custom',value: 5 }
+			]
 		}
 	},
   data() {
@@ -218,10 +224,10 @@ export default {
 			activeNames:[0],
 
 			chartBatchData: [],
-			yearSelector: [
-        ...yearSelector,
-        { name: '自定义',value: 5 }
-      ],
+	// 		yearSelector: [
+    //     ...yearSelector,
+    //     { name: '自定义',value: 5 }
+    //   ],
 			dateSelector: [
 				{ name: '过去1年',value: 1 },
 				{ name: '过去2年',value: 2 },
@@ -278,9 +284,9 @@ export default {
 
     /* 获取数据 */
 		getPreviewData() {
-			if(!this.leftOption.xEdbs.length || !this.leftOption.yEdbs.length) return this.$message.warning('请先选择指标');
-			if(this.leftOption.xEdbs.length < 2 || this.leftOption.yEdbs.length < 2) return this.$message.warning('指标数量不得少于2组')
-			if(this.leftOption.yEdbs.length !== this.leftOption.xEdbs.length) return this.$message.warning('X轴与Y轴指标数量不一致');
+			if(!this.leftOption.xEdbs.length || !this.leftOption.yEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg01'));
+			if(this.leftOption.xEdbs.length < 2 || this.leftOption.yEdbs.length < 2) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg02'))
+			if(this.leftOption.yEdbs.length !== this.leftOption.xEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg03'));
 
 			const { DateType,date,xEdbs,yEdbs } = this.leftOption;
 			let params = {
@@ -353,9 +359,9 @@ export default {
 
 		/* 保存 */
 		async saveHandle() {
-			if(!this.leftOption.xEdbs.length || !this.leftOption.yEdbs.length) return this.$message.warning('请先选择指标');
-			if(this.leftOption.xEdbs.length < 2 || this.leftOption.yEdbs.length < 2) return this.$message.warning('指标数量不得少于2组')
-			if(this.leftOption.yEdbs.length !== this.leftOption.xEdbs.length) return this.$message.warning('X轴与Y轴指标数量不一致');
+			if(!this.leftOption.xEdbs.length || !this.leftOption.yEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg01'));
+			if(this.leftOption.xEdbs.length < 2 || this.leftOption.yEdbs.length < 2) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg02'))
+			if(this.leftOption.yEdbs.length !== this.leftOption.xEdbs.length) return this.$message.warning(this.$t('StatisticAnalysis.FittingEquationChart.msg03'));
       this.isSaveDialog = true;
 
 		},

+ 15 - 15
src/views/chartRelevance_manage/fittingEquation/fittingEquationList.vue

@@ -12,7 +12,7 @@
       <div class="main-left left" id="left" v-show="!isSlideLeft">
 				<div class="datasheet_top">
 						<el-button v-permission="permissionBtn.statisticPermission.fittingEq_addChart"
-							type="primary" @click="goAddChart">添加图表</el-button>
+							type="primary" @click="goAddChart">{{$t('Chart.add_chart_btn')}}</el-button>
 						<!-- <div style="color: #666">
 							 使用说明
 							<el-tooltip
@@ -31,14 +31,14 @@
 				<div class="search-cont">
 					<el-checkbox v-model="isShowMe"  
 						v-permission="permissionBtn.statisticPermission.fittingEq_onlyMine"
-						@change="() => { getTreeData();getPublicList() }">只看我的</el-checkbox>
+						@change="() => { getTreeData();getPublicList() }">{{$t('Chart.only_see_mine')}}</el-checkbox>
 					<el-select
 						v-model="search_txt"
 						v-loadMore="searchLoad"
 						:filterable="!search_txt"
 						remote
 						clearable
-						placeholder="请输入图表名称"
+						:placeholder="$t('Chart.search_chart_placeholder')"
 						style="width: 100%; margin-top: 20px"
 						:remote-method="searchHandle"
 						@click.native="inputFocusHandle"
@@ -133,7 +133,7 @@
 							alt=""
 							style="width: 16px; height: 16px; margin-right: 10px"
 						/>
-						<span>添加图表分类</span>
+						<span>{{$t('StatisticAnalysis.ChartRelevance.add_chart_classify')}}</span>
 					</div>
 				</div>
 				<span
@@ -168,7 +168,7 @@
 											ref="chartRef"
 										/>
                   </div>
-                  <span class="chart-author">作者:{{ chartInfo.SysUserRealName}}</span>
+                  <span class="chart-author">{{$t('MsgPrompt.author')}}:{{ chartInfo.SysUserRealName}}</span>
                 </div>
 
                 <!-- 异常显示 -->
@@ -396,7 +396,7 @@ export default {
 
 		/* 添加一级目录 */
 		addLevelOneHandle() {
-			this.dialog_title = '添加图表分类';
+			this.dialog_title = this.$t('StatisticAnalysis.ChartRelevance.add_chart_classify')||'添加图表分类';
 			this.classifyForm = {
 				classify_name: '',
 			}
@@ -406,7 +406,7 @@ export default {
     /* 编辑节点 */
     editNode(node, { ChartClassifyName,ChartClassifyId }) {
 
-      this.dialog_title = '编辑图表分类';
+      this.dialog_title = this.$t('StatisticAnalysis.ChartRelevance.edit_chart_classify')||'编辑图表分类';
       /* 编辑目录 */
       this.classifyForm = {
         classify_name: ChartClassifyName,
@@ -423,14 +423,14 @@ export default {
 			const { DeleteStatus } = Data;
 
 			DeleteStatus === 1 
-			? this.$confirm('该分类下关联表图表不可删除', '删除失败', {
-				confirmButtonText: '知道了',
+			? this.$confirm(this.$t('Chart.OptMsg.classify_del_fail'), this.$t('Chart.OptMsg.del_fail_tag'), {
+				confirmButtonText: this.$t('MsgPrompt.known'),
 				showCancelButton: false,
 				type: 'error',
 			}) : DeleteStatus === 0
-			?  this.$confirm('确定删除当前分类吗?', '提示', {
-				confirmButtonText: '确定',
-				cancelButtonText: '取消',
+			?  this.$confirm(this.$t('Chart.OptMsg.classify_del_confirm'), this.$t('Confirm.prompt'), {
+				// confirmButtonText: '确定',
+				// cancelButtonText: '取消',
 				type: 'warning',
 			}).then(() => {
 				this.delApi(ChartClassifyId,ChartInfoId)
@@ -538,9 +538,9 @@ export default {
 		/* 删除图表 */
 		delChartHandle() {
 			const { ChartClassifyId,ChartInfoId } = this.chartInfo;
-			this.$confirm('删除后该图表将不能再引用,确认删除吗?', '提示', {
-        confirmButtonText: '确定',
-        cancelButtonText: '取消',
+			this.$confirm(this.$t('Chart.OptMsg.chart_del_confirm'), this.$t('Confirm.prompt'), {
+        // confirmButtonText: '确定',
+        // cancelButtonText: '取消',
         type: 'warning',
       })
         .then(() => {