123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771 |
- <template>
- <div class="stationControl">
- <div class="stationControl_top">
- <el-select
- size="mini"
- v-model="tabIndex"
- placeholder="请选择"
- clearable
- @change="getTableData"
- >
- <el-option
- v-for="item in tabOptions"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- >
- </el-option>
- </el-select>
- <div class="station">
- 时间:
- <div class="">
- <el-date-picker
- size="mini"
- v-model="pickerTime"
- type="month"
- value-format="YYYY-MM"
- placeholder="选择年月"
- popper-class="date-select"
- >
- </el-date-picker>
- </div>
- </div>
- <div class="but">
- <el-button round size="mini" class="buttons" @click="getTableData"
- >搜 索</el-button
- >
- <el-button round size="mini" class="buttons" @click="downXlsxFn"
- >导出</el-button
- >
- </div>
- </div>
- <div
- style="
- background: rgba(0, 0, 0, 0.4);
- height: calc(100% - 43px);
- padding-bottom: 15px;
- "
- >
- <div class="stationControl_title clearfix">
- <div class="leftContent floatLeft">
- <span>{{ tabIndex == -1 ? "风场" : "电站" }}管控KPI</span>
- </div>
- </div>
- <div class="economicTable1">
- <el-table
- :data="stationControlData"
- stripe
- size="mini"
- height="calc(100% - 40px - 20px)"
- ref="stationControl_table"
- style="width: 100%"
- border
- >
- <el-table-column
- prop="stationName"
- label="场站"
- align="center"
- show-overflow-tooltip
- />
- <el-table-column
- prop="years"
- label="年份"
- align="center"
- width="58"
- show-overflow-tooltip
- />
- <el-table-column
- prop="month"
- label="月份"
- align="center"
- width="58"
- show-overflow-tooltip
- />
- <el-table-column
- v-for="(item, index) in tableHeader"
- :key="index"
- :label="item.title"
- align="center"
- >
- <el-table-column
- v-for="(subItem, subIndex) in tabIndex == -1
- ? item.children
- : item.childrenG
- ? item.childrenG
- : item.children"
- :key="subIndex"
- :prop="subItem.code"
- :label="subItem.title"
- align="right"
- header-align="center"
- show-overflow-tooltip
- >
- <el-table-column
- v-for="(thiItem, thiIndex) in subItem.children"
- :key="thiIndex"
- sortable
- width="45"
- :prop="thiItem.code"
- :label="thiItem.title"
- align="right"
- header-align="center"
- show-overflow-tooltip
- >
- </el-table-column>
- </el-table-column>
- </el-table-column>
- <el-table-column
- prop="remark"
- label="总评分"
- align="center"
- width="100"
- show-overflow-tooltip
- />
- </el-table>
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="page.currentPage"
- :page-size="page.pagesize"
- :page-sizes="[21, 50, 100, 500]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="page.total"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- import utils from "@/utills/downXlsx";
- import dayjs from "dayjs";
- import { stationKPI, stationXklKPI } from "@/api/kpiApi/index.js";
- export default {
- name: "stationControl", //场站管控KPI
- components: {},
- data() {
- return {
- stationVal: "",
- stationOptions: [],
- pickerTime: "",
- stationControlData: [],
- tabIndex: -1,
- tabOptions: [
- { id: -1, name: "风电" },
- { id: -2, name: "光伏" },
- ],
- tableHeader: [
- {
- title: "安全指标",
- children: [
- {
- title: "人身、设备事故",
- children: [
- { title: "值(次)", code: "rssbsg_value" },
- { title: "评分", code: "rssbsg_mark" },
- ],
- },
- {
- title: "设备一类障碍",
- children: [
- { title: "值(次)", code: "sbylza_value" },
- { title: "评分", code: "sbylza_mark" },
- ],
- },
- ],
- },
- {
- title: "生产效率指标",
- children: [
- {
- title: "风能利用率",
- children: [
- { title: "值(%)", code: "fnlyl_value" },
- { title: "评分", code: "fnlyl_mark" },
- ],
- },
- {
- title: "计划检修损失率",
- children: [
- { title: "值(%)", code: "jhjxssl_value" },
- { title: "评分", code: "jhjxssl_mark" },
- ],
- },
- {
- title: "非计划检修损失率",
- children: [
- { title: "值(%)", code: "fjhjxssl_value" },
- { title: "评分", code: "fjhjxssl_mark" },
- ],
- },
- {
- title: "限电损失率",
- children: [
- { title: "值(%)", code: "xdssl_value" },
- { title: "评分", code: "xdssl_mark" },
- ],
- },
- {
- title: "性能损失率",
- children: [
- { title: "值(%)", code: "xnssl_value" },
- { title: "评分", code: "xnssl_mark" },
- ],
- },
- {
- title: "复位及时率",
- children: [
- { title: "值(%)", code: "fwjsl_value" },
- { title: "评分", code: "fwjsl_mark" },
- ],
- },
- {
- title: "状态转换及时率",
- children: [
- { title: "值(%)", code: "ztzhjsl_value" },
- { title: "评分", code: "ztzhjsl_mark" },
- ],
- },
- {
- title: "故障处理及时率",
- children: [
- { title: "值(%)", code: "gzcljsl_value" },
- { title: "评分", code: "gzcljsl_mark" },
- ],
- },
- {
- title: "MTBF",
- children: [
- { title: "值(小时)", code: "mtbf_value" },
- { title: "评分", code: "mtbf_mark" },
- ],
- },
- {
- title: "MTTF",
- children: [
- { title: "值(小时)", code: "mttf_value" },
- { title: "评分", code: "mttf_mark" },
- ],
- },
- {
- title: "MTTR",
- children: [
- { title: "值(小时)", code: "mttr_value" },
- { title: "评分", code: "mttr_mark" },
- ],
- },
- ],
- childrenG: [
- {
- title: "光能利用率",
- children: [
- { title: "值(%)", code: "gnlyl_value" },
- { title: "评分", code: "gnlyl_mark" },
- ],
- },
- {
- title: "计划检修损失率",
- children: [
- { title: "值(%)", code: "jhjxssl_value" },
- { title: "评分", code: "jhjxssl_mark" },
- ],
- },
- {
- title: "非计划检修损失率",
- children: [
- { title: "值(%)", code: "fjhjxssl_value" },
- { title: "评分", code: "fjhjxssl_mark" },
- ],
- },
- {
- title: "限电损失率",
- children: [
- { title: "值(%)", code: "xdssl_value" },
- { title: "评分", code: "xdssl_mark" },
- ],
- },
- {
- title: "性能损失率",
- children: [
- { title: "值(%)", code: "xnssl_value" },
- { title: "评分", code: "xnssl_mark" },
- ],
- },
- {
- title: "复位及时率",
- children: [
- { title: "值(%)", code: "fwjsl_value" },
- { title: "评分", code: "fwjsl_mark" },
- ],
- },
- {
- title: "状态转换及时率",
- children: [
- { title: "值(%)", code: "ztzhjsl_value" },
- { title: "评分", code: "ztzhjsl_mark" },
- ],
- },
- {
- title: "故障处理及时率",
- children: [
- { title: "值(%)", code: "gzcljsl_value" },
- { title: "评分", code: "gzcljsl_mark" },
- ],
- },
- {
- title: "MTBF",
- children: [
- { title: "值(小时)", code: "mtbf_value" },
- { title: "评分", code: "mtbf_mark" },
- ],
- },
- {
- title: "MTTF",
- children: [
- { title: "值(小时)", code: "mttf_value" },
- { title: "评分", code: "mttf_mark" },
- ],
- },
- {
- title: "MTTR",
- children: [
- { title: "值(小时)", code: "mttr_value" },
- { title: "评分", code: "mttr_mark" },
- ],
- },
- ],
- },
- {
- title: "综合分析指标",
- children: [
- {
- title: "设备利用小时",
- children: [
- { title: "值(小时)", code: "sblyxs_value" },
- { title: "评分", code: "sblyxs_mark" },
- ],
- },
- {
- title: "综合厂用电率",
- children: [
- { title: "值(%)", code: "zhcydl_value" },
- { title: "评分", code: "zhcydl_mark" },
- ],
- },
- {
- title: "设备可利用率",
- children: [
- { title: "值(%)", code: "sbklyl_value" },
- { title: "评分", code: "sbklyl_mark" },
- ],
- },
- {
- title: "等效可用系数",
- children: [
- { title: "值(%)", code: "dxkyxs_value" },
- { title: "评分", code: "dxkyxs_mark" },
- ],
- },
- {
- title: "隐患发现准确率",
- children: [
- { title: "值(%)", code: "yhfxzql_value" },
- { title: "评分", code: "yhfxzql_mark" },
- ],
- },
- {
- title: "风功率预测准确率",
- children: [
- { title: "值(%)", code: "fglyczql_value" },
- { title: "评分", code: "fglyczql_mark" },
- ],
- },
- ],
- childrenG: [
- {
- title: "设备利用小时",
- children: [
- { title: "值(小时)", code: "sblyxs_value" },
- { title: "评分", code: "sblyxs_mark" },
- ],
- },
- {
- title: "综合厂用电率",
- children: [
- { title: "值(%)", code: "zhcydl_value" },
- { title: "评分", code: "zhcydl_mark" },
- ],
- },
- {
- title: "设备可利用率",
- children: [
- { title: "值(%)", code: "sbklyl_value" },
- { title: "评分", code: "sbklyl_mark" },
- ],
- },
- {
- title: "等效可用系数",
- children: [
- { title: "值(%)", code: "dxkyxs_value" },
- { title: "评分", code: "dxkyxs_mark" },
- ],
- },
- {
- title: "隐患发现准确率",
- children: [
- { title: "值(%)", code: "yhfxzql_value" },
- { title: "评分", code: "yhfxzql_mark" },
- ],
- },
- {
- title: "光功率预测准确率",
- children: [
- { title: "值(%)", code: "gglyczql_value" },
- { title: "评分", code: "gglyczql_mark" },
- ],
- },
- ],
- },
- {
- title: "自然环境影响指标",
- children: [
- {
- title: "平均风速",
- children: [
- { title: "值(m/s)", code: "pjfs_value" },
- { title: "评分", code: "pjfs_mark" },
- ],
- },
- {
- title: "静风频率",
- children: [
- { title: "值(%)", code: "jfpl_value" },
- { title: "评分", code: "jfpl_mark" },
- ],
- },
- {
- title: "有效风时率",
- children: [
- { title: "值(%)", code: "yxfsl_value" },
- { title: "评分", code: "yxfsl_mark" },
- ],
- },
- ],
- childrenG: [
- {
- title: "累计辐射总量",
- children: [
- { title: "值(兆焦/平米)", code: "ljfszl_value" },
- { title: "评分", code: "ljfszl_mark" },
- ],
- },
- ],
- },
- ],
- page: {
- pagesize: 21,
- currentPage: 1,
- total: 0,
- },
- };
- },
- created() {
- this.pickerTime = dayjs().format("YYYY-MM");
- },
- mounted() {},
- computed: {},
- methods: {
- handleSizeChange(val) {
- this.page.currentPage = 1;
- this.page.pagesize = val;
- this.getTableData();
- },
- handleCurrentChange(val) {
- this.page.currentPage = val;
- this.getTableData();
- },
- getTableData() {
- let that = this;
- let params = {
- pageNum: that.page.currentPage,
- pageSize: that.page.pagesize,
- years: that.pickerTime
- ? this.pickerTime.substring(0, this.pickerTime.indexOf("-")) * 1
- : null,
- month: that.pickerTime
- ? this.pickerTime.substring(
- this.pickerTime.indexOf("-") + 1,
- this.pickerTime.length
- ) * 1
- : null,
- };
- if (that.tabIndex == -1) {
- stationKPI(params).then((res) => {
- if (res) {
- that.stationControlData = res.data.records;
- that.page.total = res.data.total;
- }
- });
- } else {
- stationXklKPI(params).then((res) => {
- if (res) {
- that.stationControlData = res.data.records;
- that.page.total = res.data.total;
- }
- });
- }
- },
- downXlsxFn() {
- let header = [];
- this.tableHeader.forEach((it) => {
- if (it.title !== "操作") {
- header.push(it.title);
- }
- });
- if (this.stationControlData.length > 0) {
- utils.exportExcel(
- this.$refs["stationControl_table"].$el,
- header,
- `${this.pickerTime}${
- this.tabIndex == -1 ? "风场" : "电站"
- }综合评价KPI`
- );
- }
- },
- },
- };
- </script>
- <style lang="less" scoped>
- .stationControl {
- padding: 0 20px;
- height: 100%;
- .stationControl_title {
- .leftContent {
- width: 242px;
- height: 41px;
- line-height: 41px;
- background: url("~@/assets/imgs/title_left_bg1.png") no-repeat;
- span {
- font-size: 16px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #05bb4c;
- margin-left: 25px;
- }
- }
- .floatLeft {
- float: left;
- }
- .floatRight {
- float: right;
- }
- .rightContent {
- width: 212px;
- height: 28px;
- margin-top: 13px;
- background: url("../../../../assets/imgs/title_right_bg.png");
- }
- }
- .clearfix::after {
- content: "";
- clear: both;
- height: 0;
- line-height: 0;
- visibility: hidden;
- display: block;
- }
- .clearfix {
- zoom: 1;
- }
- .stationControl_top {
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-top: 10px;
- margin-bottom: 10px;
- .station {
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #b3b3b3;
- margin-right: 10px;
- margin-left: 10px;
- }
- .tabCut {
- display: inline-block;
- margin: 0 10px;
- div {
- display: inline-block;
- width: 60px;
- height: 27px;
- border: 1px solid #274934;
- text-align: center;
- line-height: 25px;
- cursor: pointer;
- }
- div:nth-child(1) {
- border-radius: 13px 0px 0px 13px;
- }
- div:nth-child(2) {
- border-radius: 0px 13px 13px 0px;
- cursor: not-allowed;
- }
- .active {
- background-color: rgba(5, 187, 76, 0.9);
- color: #fff;
- }
- }
- .search-input {
- margin-left: 10px;
- .el-input__inner {
- width: 175px;
- }
- .el-input__suffix {
- right: -50px;
- }
- }
- .but {
- display: flex;
- flex-direction: row;
- align-content: center;
- margin-left: 20px;
- .buttons {
- background-color: rgba(5, 187, 76, 0.2);
- border: 1px solid #3b6c53;
- color: #b3b3b3;
- font-size: 14px;
- &:hover,
- &.active {
- background-color: rgba(5, 187, 76, 0.5);
- color: #ffffff;
- }
- }
- }
- }
- .economicTable1 {
- height: calc(100% - 42px);
- .el-table ::v-deep {
- .el-table__header {
- border-collapse: collapse;
- }
- .el-table__body-wrapper {
- .el-table__body {
- font-size: 13px;
- // border: 1px solid #eceef5;
- // border-collapse: collapse;
- }
- }
- th {
- height: 20px;
- line-height: 20px;
- font-size: 14px;
- &.el-table__cell {
- border: 1px solid rgba(255, 255, 255, 0.8) !important;
- &:nth-child(1) {
- border-left-width: 0 !important;
- // border-left-width: 0 !important;
- }
- &.is-leaf {
- // border-bottom-width: 1px !important;
- }
- }
- }
- td {
- height: 25px;
- line-height: 25px;
- font-size: 14px;
- &.el-table__cell {
- border-bottom: 1px solid #434141 !important;
- &:nth-child(1) {
- border-left-width: 0 !important;
- // border-left-width: 0 !important;
- }
- &.is-leaf {
- // border-bottom-width: 1px !important;
- }
- }
- }
- }
- .el-pagination {
- display: flex;
- justify-content: flex-end;
- padding-right: 40px;
- padding-top: 20px;
- .el-pagination__total,
- .el-pagination__jump {
- color: #fff;
- }
- }
- .el-table__fixed,
- .el-table__fixed-right {
- background: rgba(0, 0, 0, 1);
- border-left: 2px solid #000;
- height: calc(100% - 15px) !important;
- }
- .el-table__fixed::before {
- background-color: #2a2a2a;
- }
- .el-table__fixed-right::before {
- background-color: #2a2a2a;
- }
- }
- .el-overlay {
- .el-overlay-dialog {
- overflow-y: hidden !important;
- .el-dialog {
- margin-top: 0 !important;
- .el-dialog__body {
- height: calc(100% - 51px - 32px);
- }
- }
- }
- }
- .el-picker__popper .el-date-range-picker__header .el-picker-panel__icon-btn {
- color: #fff;
- }
- .el-picker__popper .el-date-table .in-range div {
- background: #43516b;
- }
- }
- .historyBtn1 {
- cursor: pointer;
- color: #05bb4c;
- }
- </style>
|