123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <template>
- <div class="health-tab-1">
- <div class="power-info mg-b-16">
- <div class="info-tab">
- <div
- class="tab"
- v-for="(item, index) in infoList"
- :key="index"
- :class="item.active ? 'active' : ''"
- @click="onClickInfo(item)"
- >
- <i class="svg-icon svg-icon svg-icon-sm">
- <svg-icon :svgid="item.svgid" />
- </i>
- <span> {{ item.title }} </span>
- </div>
- <div class="empty"></div>
- </div>
- <div class="info-chart">
- <panel class="info-chart-panel" :title="'健康趋势'">
- <vertival-bar-line-chart
- :height="'310px'"
- :bardata="bardata"
- :lineData="lineData"
- />
- </panel>
- </div>
- </div>
- <div class="health-report">
- <panel class="health-report-panel" :title="'推荐检修风机'" :showLine="false">
- <div class="actions mg-b-16">
- <div class="item green" @click="onClickRecommon(1)">当日内推荐</div>
- <div class="item purple" @click="onClickRecommon(2)">三日内推荐</div>
- <div class="item gray" @click="onClickRecommon(3)">超三日推荐</div>
- <div style="margin-left:450px">
- <button class="btn" @click="onClickCofirmAll()">全部确认</button>
- <button class="btn" @click="onClickIgnoreAll()">全部忽略</button>
- </div>
- </div>
- <div class="report-items scroll">
- <div class="item" v-for="(item, index) in recommenList" :key="index">
- <div class="title">
- <div>风机编号:{{ item.wtid }}</div>
- <span @click="onClickReport(item)">健康报告</span>
- </div>
- <div class="info">
- <p>推荐理由:{{ item.reason }}</p>
- <p>推荐检修时间:{{new Date(item.recodedate).formatDate("yyyy-MM-dd hh:mm:ss")}}</p>
- <p>推荐时间对应风速:{{ item.speed }} m/s</p>
- <p>判断时间:{{new Date(item.createdate).formatDate("yyyy-MM-dd hh:mm:ss")}}</p>
- <div class="actions mg-t-16">
- <button class="btn success" @click="onClickCofirm(item)">
- <i class="fa fa-check"></i>
- 提交
- </button>
- <button class="btn" @click="onClickIgnore(item)">
- <i class="fa fa-close"></i>
- 取消
- </button>
- </div>
- </div>
- </div>
- </div>
- </panel>
- </div>
- <health-report :show="reportshow" :params="reportparams" @closed="closed"/>
- </div>
- </template>
- <script>
- import VertivalBarLineChart from "../../components/chart/combination/vertival-bar-line-chart.vue";
- import SvgIcon from "../../components/coms/icon/svg-icon.vue";
- import Panel from "../../components/coms/panel/panel.vue";
- import HealthReport from "../../components/other/healthReport/index.vue"
- export default {
- components: { SvgIcon, Panel, VertivalBarLineChart, HealthReport},
- data() {
- return {
- infoList: [
- // {title: '24小时健康趋势', svgid: 'svg-24-houre', active: false, type: 'houre'},
- { title: "7日健康趋势", svgid: "svg-h-day", active: true, type: "day" },
- { title: "30日健康趋势", svgid: "svg-h-month", active: false, type: "month"},
- ],
- bardata: { area: [], legend: [], data: [] }, // 损失电量分析echart数值
- lineData: [],
- recommenList: [], // 健康报告推荐
- recommenIndex: 1, // 记录当前是那个推荐
- reportshow: false, //是否显示健康报告
- reportparams: undefined
- };
- },
- created() {
- this.requestCoulometry(2);
- this.requestRecommen("recommen/getRecommenmainDay1");
- },
- methods: {
- // 未确认缺陷按钮下的健康趋势选项
- onClickInfo(item) {
- this.infoList.forEach((element) => {
- if (item.type == element.type) {
- item.active = true;
- switch (item.type) {
- case "day":
- this.requestCoulometry(2);
- break;
- case "month":
- this.requestCoulometry(3);
- }
- } else {
- element.active = false;
- }
- });
- },
- // 健康报告推荐
- onClickRecommon(day) {
- this.recommenIndex = day;
- switch (day) {
- case 1:
- this.requestRecommen("recommen/getRecommenmainDay1");
- break;
- case 2:
- this.requestRecommen("recommen/getRecommenmainDay3");
- break;
- case 3:
- this.requestRecommen("recommen/getRecommenmainDay7");
- break;
- }
- },
- // 查看健康报告
- onClickReport(item){
- this.reportshow = true
- this.reportparams = {wtId: item.wtid, recorddate: new Date(item.recodedate).formatDate("yyyy-MM-dd")}
- },
- // 关闭健康报告
- closed(){
- this.reportshow = false
- },
- // 健康推荐提交
- onClickCofirm(item) {
- let that = this;
- that.$confirm('确认提交?').then(_=> {
- that.requestOption("recommen/confirpush", item.rid);
- }).catch(_=>{})
- },
- // 健康推荐取消
- onClickIgnore(item) {
- this.requestOption("recommen/ignorepush", item.rid);
- },
- // 健康推荐提交全部
- onClickCofirmAll() {
- let that = this;
- that.$confirm('确认全部提交?').then(_=> {
- that.requestOptionAll("recommen/confirpushAll");
- }).catch(_=>{})
- },
- // 健康推荐取消全部
- onClickIgnoreAll() {
- let that = this;
- that.$confirm('确认全部取消?').then(_=> {
- that.requestOptionAll("recommen/ignorepushAll");
- }).catch(_=>{})
- },
- // 健康报告推荐
- requestRecommen(url) {
- let that = this;
- that.API.requestData({
- method: "POST",
- subUrl: url,
- success(res) {
- if (res.code == 200) that.recommenList = res.data;
- },
- });
- },
- // 操作推荐内容(提交/取消)
- requestOption(url, rid) {
- let that = this;
- that.API.requestData({
- method: "POST",
- subUrl: url,
- data: { rid: rid },
- success(res) {
- if (res.code == 200) that.onClickRecommon(that.recommenIndex);
- },
- });
- },
- // 操作推荐内容全部(提交/取消)
- requestOptionAll(url) {
- let that = this;
- that.API.requestData({
- method: "POST",
- subUrl: url,
- data: { typeid: that.recommenIndex },
- success(res) {
- if (res.code == 200) that.onClickRecommon(that.recommenIndex);
- },
- });
- },
- // 损失电量分析 type:1 表示24小时健康趋势,2 表示七天健康趋势 3 表示30天健康趋势
- requestCoulometry(type) {
- let that = this;
- that.API.requestData({
- method: "POST",
- subUrl: "recommen/findAllChartjz",
- data: { wpId: 0, type: type },
- success(res) {
- if (res.code == 200) {
- that.bardata.legend = ["优数量", "良数量", "差数量"];
- that.lineData = res.data.lvchart;
- that.bardata.area = res.data.datechart;
- that.bardata.data[2] = res.data.cslchart;
- that.bardata.data[1] = res.data.lslchart;
- that.bardata.data[0] = res.data.yslchart;
- }
- },
- });
- },
- },
- };
- </script>
- <style lang="less" scope>
- .health-tab-1 {
- .power-info {
- display: flex;
- .info-tab {
- flex: 0 0 156px;
- display: flex;
- flex-direction: column;
- height: 350px;
- margin-right: 1.4815vh;
- .tab {
- position: relative;
- flex: 0 0 auto;
- text-align: center;
- line-height: 33px;
- margin-right: 8px;
- color: @gray-l;
- font-size: 12px;
- background: fade(@gray, 20);
- border: 1px solid fade(@gray, 20);
- display: flex;
- align-items: center;
- i {
- margin: 0 1.4815vh;
- svg use {
- fill: @gray-l;
- }
- }
- &:hover,
- &.active {
- background: fade(@green, 20);
- border: 1px solid @green;
- color: @green;
- cursor: pointer;
- i svg use {
- fill: @green;
- }
- }
- &.active::after {
- box-sizing: content-box;
- width: 0px;
- height: 0px;
- position: absolute;
- right: -19px;
- padding: 0;
- border-bottom: 9px solid @green;
- border-top: 9px solid transparent;
- border-left: 9px solid transparent;
- border-right: 9px solid transparent;
- display: block;
- content: "";
- z-index: 10;
- transform: rotate(90deg);
- }
- &.active::before {
- box-sizing: content-box;
- width: 0px;
- height: 0px;
- position: absolute;
- right: -17px;
- padding: 0;
- border-bottom: 9px solid #063319;
- border-top: 9px solid transparent;
- border-left: 9px solid transparent;
- border-right: 9px solid transparent;
- display: block;
- content: "";
- z-index: 12;
- transform: rotate(90deg);
- }
- & + .tab {
- margin-top: 0.7407vh;
- }
- &:last-child {
- text-align: center;
- justify-content: center;
- }
- }
- .empty {
- flex: 1 0 auto;
- }
- }
- .info-chart {
- flex: 1 0 auto;
- }
- }
- .health-report {
- // 健康报告 按钮样式
- .actions {
- display: flex;
- .item {
- flex: 0 0 102px;
- text-align: center;
- line-height: 33px;
- margin-right: 8px;
- color: fade(@white, 75);
- font-size: @fontsize-s;
- cursor: pointer;
- &.green {
- background: @green;
- }
- &.purple {
- background: @purple;
- }
- &.gray {
- background: @gray;
- }
- }
- }
- .report-items {
- display: flex;
- flex-wrap: wrap;
- height: calc(100vh - 592px);
- .item {
- flex: 0 0 calc(100% / 6 - 16px);
- margin-bottom: 16px;
- & + .item {
- margin-left: 16px;
- }
- &:nth-child(6n + 1) {
- margin-left: 0px;
- }
- .title {
- background: fade(@gray, 40);
- // color: fade(@white, 75);
- color: @gray-l;
- line-height: 37px;
- padding-left: 16px;
- padding-right: 16px;
- font-size: @fontsize-s;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- span {
- cursor: pointer;
- }
- }
- .info {
- background: fade(@gray, 20);
- padding: 16px;
- font-size: @fontsize-s;
- color: @font-color;
- line-height: 1.5;
- p {
- margin: 0;
- line-height: 2;
- overflow:hidden;
- text-overflow:ellipsis;
- display:-webkit-box;
- -webkit-box-orient:vertical;
- -webkit-line-clamp:2;
- }
- .actions {
- display: flex;
- align-items: center;
- justify-content: center;
- .success {
- border-color: #05bb4c;
- color: #05bb4c;
- background: rgba(5, 187, 76, 0.2);
- }
- }
- }
- }
- }
- }
- }
- </style>
|