123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644 |
- <!--
- * @Author: your name
- * @Date: 2024-05-29 09:14:23
- * @LastEditTime: 2024-05-31 15:33:18
- * @LastEditors: bogon
- * @Description: In User Settings Edit
- * @FilePath: /performance-test/src/views/performance/components/EditAnalysis.vue
- -->
- <template>
- <div>
- <el-form ref="form" :model="form" label-width="120px">
- <el-row type="flex" justify="end">
- <el-col :span="5">
- <el-form-item class="searchFrom">
- <el-button type="primary" @click="onSubmit" size="small"
- >查询</el-button
- >
- <el-button size="small">重置</el-button>
- <i @click="drawer = true" class="el-icon-setting"></i>
- </el-form-item>
- </el-col>
- </el-row>
- <el-collapse v-model="activeNames">
- <el-collapse-item title="基础筛选:" name="1">
- <el-row class="flex-wrap-row" :gutter="5">
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="5">
- <el-form-item
- label="分析类型"
- v-if="checkedCities.find((item) => item === '分析类型')"
- >
- <el-select
- v-model="form.region"
- placeholder="请选择分析类型"
- size="small"
- >
- <el-option label="类型一" value="shanghai"></el-option>
- <el-option label="类型二" value="beijing"></el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="5">
- <el-form-item
- label="机组编号"
- v-if="checkedCities.find((item) => item === '机组编号')"
- >
- <el-select
- multiple
- v-model="form.region"
- placeholder="请选择机组编号"
- size="small"
- >
- <el-option label="类型一" value="shanghai"></el-option>
- <el-option label="类型二" value="beijing"></el-option>
- </el-select> </el-form-item
- ></el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="5">
- <el-form-item
- label="滤除月份"
- v-if="checkedCities.find((item) => item === '滤除月份')"
- >
- <el-date-picker
- width="200"
- size="small"
- type="dates"
- v-model="value4"
- placeholder="选择一个或多个日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="12" :xl="9">
- <el-form-item
- label="分析时间"
- v-if="checkedCities.find((item) => item === '分析时间')"
- >
- <el-date-picker
- size="small"
- v-model="value1"
- type="daterange"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- >
- </el-date-picker> </el-form-item
- ></el-col>
- </el-row>
- </el-collapse-item>
- <el-collapse-item
- title="SACAD数据测点过滤设置:"
- name="2"
- v-if="checkedCities.find((item) => item === 'SCADA数据过滤')"
- >
- <el-row :gutter="5">
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="风速过滤">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="桨距角过滤">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="有功功率过滤">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="发电机转速过滤">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- </el-row>
- </el-collapse-item>
- <el-collapse-item
- title="图像轴系设置:"
- name="3"
- v-if="checkedCities.find((item) => item === '图像设置')"
- >
- <el-row :gutter="5">
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="发电机转矩">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="步长"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input2"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="风能利用系数">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="步长"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input2"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="叶尖转速比">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="步长"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input2"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="有功功率">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="步长"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input2"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="12" :lg="8" :xl="6">
- <el-form-item label="桨距角">
- <div class="demo-input-suffix">
- <el-input
- type="number"
- size="small"
- placeholder="步长"
- v-model="input1"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最小值"
- v-model="input2"
- >
- </el-input>
- <el-input
- type="number"
- size="small"
- placeholder="最大值"
- v-model="input2"
- >
- </el-input>
- </div>
- </el-form-item>
- </el-col>
- </el-row>
- </el-collapse-item>
- </el-collapse>
- </el-form>
- <el-card shadow="always" class="box-card">
- <el-row>
- <el-col :span="12"
- ><div class="left">
- <div>
- <span>机组编号:</span>
- <el-select v-model="value" placeholder="请选择" size="small">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </div>
- <div>1.额定功率(Rated Power):指发电机组在标准工况下</div>
- <div>2.发电机类型(Generator Type):</div>
- <div>3.经度(Longitude):</div>
- <div>4.维度(Dimensionality):</div>
- <div>5.海拔高度(Altitude):</div>
- <div>6.并网时间(Grid connection time):</div>
- <div>7.是否标杆(Benchmarking or not):</div>
- <div>8.地理位置(Location):不同地理位置的气候条件</div>
- <div>
- 9.供应商信息(Manufacturer
- Information):制造商的信誉、技术水平和售后
- </div>
- <div>
- 10.维护需求(Maintenance Requirements):风力发电机组需要定期
- </div>
- <div>11.预期寿命(Expected Lifetime):风力发电机组的设计寿命</div>
- </div>
- </el-col>
- <el-col :span="12"><div class="right">右</div></el-col>
- </el-row>
- </el-card>
- <div class="abalysisType">
- <el-tabs
- v-model="editableTabsValue"
- type="card"
- editable
- @edit="handleTabsEdit"
- >
- <el-tab-pane
- :key="item.name"
- v-for="(item, index) in editableTabs"
- :label="item.title"
- :name="item.name"
- >
- {{ item.content }}
- <tinymce-editor
- ref="editor"
- v-model="msg"
- :disabled="disabled"
- @onClick="onClick"
- >
- </tinymce-editor>
- </el-tab-pane>
- </el-tabs>
- </div>
- <el-drawer
- title="偏好设置"
- :visible.sync="drawer"
- :direction="direction"
- :before-close="handleClose"
- class="drawerOption"
- >
- <el-row>
- <el-col :span="12"
- ><div class="drawerLeft">
- <div style="text-align: center; font-size: 16px">常用功能设置</div>
- <el-checkbox
- :indeterminate="isIndeterminate"
- v-model="checkAll"
- @change="handleCheckAllChange"
- >全选</el-checkbox
- >
- <div style="margin: 15px 0"></div>
- <el-checkbox-group
- v-model="checkedCities"
- @change="handleCheckedCitiesChange"
- >
- <el-checkbox v-for="city in cities" :label="city" :key="city">{{
- city
- }}</el-checkbox>
- <el-checkbox
- label="SCADA数据过滤"
- key="SCADA数据过滤"
- ></el-checkbox>
- <div class="checkFromRow">
- <el-row>
- <el-col :span="12">发电机转速测点</el-col>
- <el-col :span="12">桨距角值测点</el-col>
- <el-col :span="12">有功功率测点</el-col>
- <el-col :span="12">风速速度测点</el-col>
- </el-row>
- </div>
- <el-checkbox label="图像设置" key="图像设置"></el-checkbox>
- <div class="checkFromRow">
- <el-row>
- <el-col :span="12">发电机转矩轴系</el-col>
- <el-col :span="12">桨距角轴系</el-col>
- <el-col :span="12">叶尖速比轴系</el-col>
- <el-col :span="12">有功功率轴系</el-col>
- <el-col :span="12">发电机转矩轴系</el-col>
- </el-row>
- </div>
- </el-checkbox-group>
- </div></el-col
- >
- <el-col :span="12">
- <div class="drawerRight">
- <div style="text-align: center; font-size: 16px">已选中功能</div>
- <ul>
- <li v-for="func in checkedCities" :key="func">
- {{ func }}
- <el-button
- type="text"
- icon="el-icon-delete"
- @click="removeFunction(func)"
- ></el-button>
- </li>
- </ul></div
- ></el-col>
- </el-row>
- <div class="demo-drawer__footer">
- <el-button @click="handleClose">取 消</el-button>
- <el-button type="primary" @click="handleClose">{{ "确 定" }}</el-button>
- </div>
- </el-drawer>
- </div>
- </template>
- <script>
- import TinymceEditor from "@/components/Tinymce.vue";
- export default {
- components: {
- TinymceEditor,
- },
- data() {
- return {
- value4: "",
- value1: "",
- form: {},
- activeNames: ["1", "2", "3"],
- msg: "",
- disabled: false,
- checkAll: false,
- checkedCities: ["分析类型", "分析时间", "滤除月份", "机组编号"],
- cities: ["分析类型", "分析时间", "滤除月份", "机组编号"],
- isIndeterminate: true,
- drawer: false,
- direction: "rtl",
- value: "",
- options: [],
- editableTabsValue: "2",
- editableTabs: [
- {
- title: "Tab 1",
- name: "1",
- content: "Tab 1 content",
- },
- {
- title: "Tab 2",
- name: "2",
- content: "Tab 2 content",
- },
- ],
- formData: { content: "<p>Hello, Tinymce!</p>" },
- tabIndex: 2,
- };
- },
- methods: {
- handleCheckAllChange(val) {
- this.checkedCities = val
- ? [...this.cities, "SCADA数据过滤", "图像设置"]
- : [];
- this.isIndeterminate = false;
- },
- handleCheckedCitiesChange(value) {
- let checkedCount = value.length;
- this.checkAll = checkedCount === this.cities.length + 2;
- this.isIndeterminate =
- checkedCount > 0 && checkedCount < this.cities.length + 2;
- },
- removeFunction(item) {
- this.checkedCities = this.checkedCities.filter((fuc) => fuc !== item);
- },
- handleClose(done) {
- this.$confirm("确认关闭?")
- .then((_) => {
- // done();
- this.drawer = false;
- })
- .catch((_) => {});
- },
- // 鼠标单击的事件
- onClick(e, editor) {
- console.log("Element clicked");
- console.log(e);
- console.log(editor);
- },
- onSubmit() {
- console.log("submit!");
- },
- // 清空内容
- clear() {
- this.$refs.editor.clear();
- },
- handleTabsEdit(targetName, action) {
- if (action === "add") {
- let newTabName = ++this.tabIndex + "";
- this.editableTabs.push({
- title: "New Tab",
- name: newTabName,
- content: "New Tab content",
- });
- this.editableTabsValue = newTabName;
- }
- if (action === "remove") {
- let tabs = this.editableTabs;
- let activeName = this.editableTabsValue;
- if (activeName === targetName) {
- tabs.forEach((tab, index) => {
- if (tab.name === targetName) {
- let nextTab = tabs[index + 1] || tabs[index - 1];
- if (nextTab) {
- activeName = nextTab.name;
- }
- }
- });
- }
- this.editableTabsValue = activeName;
- this.editableTabs = tabs.filter((tab) => tab.name !== targetName);
- }
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .box-card {
- margin: 10px 0;
- // box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
- width: 100%;
- font-size: 14px;
- .el-card__body {
- width: 100%;
- .left {
- > div {
- line-height: 3;
- }
- }
- }
- }
- ::v-deep .searchFrom {
- .el-form-item__content {
- display: flex !important;
- justify-content: end !important;
- align-items: center !important;
- i {
- margin-left: 10px;
- font-size: 20px;
- }
- }
- }
- .drawerOption {
- .el-checkbox-group {
- line-height: 40px !important;
- }
- .drawerLeft {
- margin-left: 20px;
- color: #606266 !important;
- }
- .checkFromRow {
- .el-col-12 {
- color: #606266 !important;
- font-size: 14px;
- }
- .el-col-12:nth-child(even) {
- text-align: end !important;
- }
- }
- .drawerRight {
- margin-right: 20px;
- color: #606266 !important;
- font-size: 14px;
- ul {
- list-style-type: none;
- padding: 0;
- color: #606266 !important;
- li {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0px 10px;
- line-height: 40px !important;
- }
- }
- }
- .demo-drawer__footer {
- display: flex;
- margin-top: 50px;
- justify-content: center;
- }
- }
- ::v-deep.el-input--small .el-input__inner {
- width: 200px !important;
- }
- .demo-input-suffix {
- display: flex !important;
- }
- ::v-deep.demo-input-suffix .el-input--small {
- width: 100px !important;
- }
- ::v-deep.demo-input-suffix .el-input--small .el-input__inner {
- width: 90px !important;
- }
- .abalysisType {
- margin-top: 30px;
- }
- </style>
|