123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- <!--
- * @Author: your name
- * @Date: 2025-01-10 09:11:34
- * @LastEditTime: 2025-01-14 17:23:27
- * @LastEditors: bogon
- * @Description: In User Settings Edit
- * @FilePath: /performance-test/src/views/overview/components/wind_speed_frequency/index.vue
- -->
- <template>
- <div class="type-variable">
- <!-- 风速频率分析 -->
- <div class="left">
- <FilterChart
- :windList="windEngineGroupList"
- @getEnfineList="getEnfineList"
- @handlePrevious="handlePrevious"
- @handleNext="handleNext"
- ></FilterChart>
- <BarChart></BarChart>
- <el-tabs value="first">
- <el-tab-pane label="意见描述" name="first">
- <TinymceEditor
- ref="editor"
- v-model="comment"
- @input="handleEditorInput($event)"
- @onClick="onClick"
- >
- </TinymceEditor>
- </el-tab-pane>
- </el-tabs>
- <el-row type="flex" class="row-bg" justify="end">
- <el-col :span="2" style="margin: 20px">
- <el-button type="primary" size="small">提交评论</el-button>
- </el-col>
- </el-row>
- </div>
- <div class="right">
- <DicCard></DicCard>
- </div>
- </div>
- </template>
- <script>
- import DicCard from "@/views/overview/components/dicCard/index.vue";
- import FilterChart from "@/views/overview/components/filterChart/index.vue";
- import BarChart from "@/views/performance/components/chartsCom/BarChart.vue";
- import TinymceEditor from "@/components/Tinymce.vue";
- import { analysisDetail, queryAnalysisedEngine } from "@/api/performance";
- export default {
- name: "windSpeedFrequency",
- components: {
- DicCard,
- FilterChart,
- BarChart,
- TinymceEditor,
- },
- props: {
- initBatchCode: {
- default: "",
- type: String,
- },
- analysisTypeCode: {
- default: "",
- type: String,
- },
- batchCodeList: {
- default: "",
- type: Array,
- },
- },
- data() {
- return {
- form: {
- value2: "",
- },
- comment: "",
- options: [],
- windEngineGroupList: [], //批次风机列表
- fieldEngineCodes: [], //选中风机
- generalFilesDatas: [], //总图
- diagramRelationsDatas: [], //分图
- };
- },
- watch: {
- initBatchCode(newVal) {
- if (newVal) {
- this.fetchData(); // 调用合并后的函数
- }
- },
- analysisTypeCode(newVal) {
- if (newVal) {
- this.fetchData(); // 调用合并后的函数
- }
- },
- },
- mounted() {
- if (this.initBatchCode && this.analysisTypeCode) {
- this.fetchData(); // 调用合并后的函数
- }
- },
- methods: {
- onSubmit() {
- console.log("submit!");
- },
- // 合并后的函数,处理数据请求
- async fetchData() {
- try {
- console.log(
- this.initBatchCode,
- this.analysisTypeCode,
- "请求详情 分钟级"
- );
- // 获取分析详情
- await this.getAnalysisDetail();
- // 获取风机列表
- await this.getWindEnfineList(this.initBatchCode, this.analysisTypeCode);
- } catch (err) {
- console.error("Failed to fetch data:", err);
- }
- },
- // 获取分析详情接口
- async getAnalysisDetail() {
- try {
- const result = await analysisDetail({
- batchCode: this.initBatchCode,
- analysisTypeCode: this.analysisTypeCode,
- fieldEngineCodes:
- this.fieldEngineCodes.length === 0
- ? undefined
- : this.fieldEngineCodes.join(","),
- });
- this.generalFilesDatas =
- result.data && result.data[0] && result.data[0].generalFiles; //总图数据
- this.diagramRelationsDatas =
- result.data && result.data[0] && result.data[0].diagramRelations;
- } catch (err) {
- console.error("Failed to fetch analysis details:", err);
- }
- },
- // 请求风机列表
- async getWindEnfineList(batchCode, analysisTypeCode) {
- // console.log("请求风机列表 分钟级");
- const resEngineList = await queryAnalysisedEngine({
- batchCode: batchCode,
- analysisTypeCode,
- });
- this.windEngineGroupList = resEngineList.data;
- },
- handleEditorInput(index, newVal) {
- // 更新对应的 comment 值
- // 如果该功能没有实现,可以删除这个方法
- },
- //获取选中风机list
- getEnfineList(data) {
- this.fieldEngineCodes = data;
- this.getAnalysisDetail();
- },
- //下一条
- handleNext() {
- const index = this.batchCodeList.findIndex(
- (item) => item === this.initBatchCode
- );
- if (index === this.batchCodeList.length - 1) {
- this.$message.warning("已经是最后一个分析结果了");
- return;
- }
- this.$emit("setInitBathCode", this.batchCodeList[index + 1]);
- },
- //上一条
- handlePrevious() {
- const index = this.batchCodeList.findIndex(
- (item) => item === this.initBatchCode
- );
- if (index === 0) {
- this.$message.warning("没有上一条了");
- return;
- }
- this.$emit("setInitBathCode", this.batchCodeList[index - 1]);
- },
- onClick() {},
- },
- };
- </script>
- <style scoped lang="scss">
- .type-variable {
- display: flex;
- height: 90%;
- overflow: hidden;
- .left {
- width: 30%;
- height: 100%;
- overflow: auto;
- padding: 20px;
- flex: 1;
- }
- .right {
- width: 250px;
- height: 100%;
- overflow: hidden;
- }
- }
- </style>
|