123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935 |
- <template>
- <div>
- <div
- class="box"
- style="display: flex; flex-direction: row; flex-wrap: wrap"
- >
- <div
- :class="
- item.active
- ? 'box-' + item.status
- : item.flashing && item.status === 5
- ? 'unbox-flashing-' + item.status
- : 'unbox-' + item.status
- "
- :id="item.windturbineId"
- v-for="(item, index) in dataList"
- :key="index"
- @click="onSelectHandler(item)"
- @dblclick="sendMsg(item)"
- style="margin-right: 8px"
- >
- <div
- :class="item.active ? 'left-' + item.status : 'unleft-' + item.status"
- >
- <div>{{ getName(item, 'top') }}</div>
- <div>{{ getName(item, 'bot') }}</div>
- <!-- <div>{{ item.windturbineId.slice(0, 2) }}</div>
- <div>{{ item.code }}</div> -->
- </div>
- <div
- :class="
- item.active ? 'right-' + item.status : 'unright-' + item.status
- "
- >
- <div class="rightrow">{{ item.windSpeed.toFixed(2) }} m/s</div>
- <div class="rightrow">{{ item.power.toFixed(2) }} kw</div>
- <div class="rightrow">
- {{
- item.modelId.indexOf("105") >= 0
- ? (item.rollSpeed * 9.55).toFixed(2)
- : item.rollSpeed.toFixed(2)
- }}
- rpm
- </div>
- </div>
- <div class="duration">
- <el-popover
- placement="bottom-start"
- :width="200"
- trigger="hover"
- class="durationPopover"
- :show-arrow="false"
- @show="handleDeal(item.ts)"
- >
- <template #reference>
- <img
- :class="item.lockValue > 0 ? 'durationImgs' : 'durationImg'"
- src="../assets/img/type/duration.png"
- alt=""
- />
- </template>
- <input
- class="lock_inputs"
- type="text"
- placeholder=""
- :value="showVlaues"
- disabled
- />
- </el-popover>
- </div>
- <div class="locks" v-if="item.lockValue > 0">
- <el-popover
- placement="bottom-start"
- :width="150"
- trigger="hover"
- class="popoverBack"
- :show-arrow="false"
- >
- <template #reference>
- <img class="lock" src="../assets/img/type/lock.png" alt="" />
- </template>
- <input
- class="lock_input"
- type="text"
- placeholder=""
- :value="
- item.lockValue === 9 ? item.lockValues : options[item.lockValue]
- "
- disabled
- />
- </el-popover>
- </div>
- <div class="locks" v-if="item.reasonType">
- <img
- class="lock"
- src="../assets/img/type/electricityRestrictions.png"
- alt=""
- />
- </div>
- </div>
- </div>
- <WindturbineDetailPages
- v-model="dialogVisible"
- :showSvg="showSvg"
- @close="handleClose"
- :windturbine="currentWindturbine"
- ></WindturbineDetailPages>
- </div>
- </template>
- <script>
- import WindturbineDetailPages from "./WindturbineDetailPages.vue";
- import api from "api/index";
- import dayjs from "dayjs";
- export default {
- components: {
- WindturbineDetailPages,
- },
- props: {
- dataList: {
- type: Array,
- default: () => {
- return [];
- },
- },
- area: String,
- },
- mounted() {
- // this.getWindturbineFdc();
- },
- updated() {},
- methods: {
- getName(item, type) {
- // debugger
- let name = ''
- if (type === 'top') {
- if (item.windturbineId) {
- name = item.windturbineId.slice(0, 2)
- }
- } else {
- if (item.windturbineId) {
- name = item.windturbineId.slice(item.windturbineId.indexOf('_')+1)
- }
- }
- return name
- },
- handleDeal(val) {
- let data = dayjs(val).format("YYYY-MM-DD HH:mm:ss");
- this.showVlaues = this.timeFn(data);
- // return `该状态共持续:`
- },
- timeFn(d1) {
- //di作为一个变量传进来
- //如果时间格式是正确的,那下面这一步转化时间格式就可以不用了
- var dateBegin = new Date(d1.replace(/-/g, "/")); //将-转化为/,使用new Date
- var dateEnd = new Date(); //获取当前时间
- var dateDiff = dateEnd.getTime() - dateBegin.getTime(); //时间差的毫秒数
- var dayDiff = Math.floor(dateDiff / (24 * 3600 * 1000)); //计算出相差天数
- var leave1 = dateDiff % (24 * 3600 * 1000); //计算天数后剩余的毫秒数
- var hours = Math.floor(leave1 / (3600 * 1000)); //计算出小时数
- //计算相差分钟数
- var leave2 = leave1 % (3600 * 1000); //计算小时数后剩余的毫秒数
- var minutes = Math.floor(leave2 / (60 * 1000)); //计算相差分钟数
- //计算相差秒数
- var leave3 = leave2 % (60 * 1000); //计算分钟数后剩余的毫秒数
- var seconds = Math.round(leave3 / 1000);
- return `持续时长:${dayDiff !== 0 ? dayDiff + "天" : ""}${
- hours !== 0 ? hours + "小时" : ""
- }${minutes !== 0 ? minutes + "分钟" : ""}${
- seconds !== 0 ? seconds + "秒" : ""
- }`;
- },
- // getWindturbineFdc() {
- // api.getWindturbineFdc().then((res) => {
- // this.station = res.data;
- // });
- // },
- onSelectHandler(values) {
- if (this.area === "problem") {
- this.$emit("problem-click", values);
- } else {
- this.$emit("choose-click", values);
- }
- },
- sendMsg: function (itm) {
- // this.dialogVisible = true;
- this.$emit("on-click", itm);
- // this.currentWindturbine = itm;
- },
- handleClose() {
- this.dialogVisible = false;
- this.showSvg = false;
- },
- },
- data() {
- return {
- dialogVisible: false,
- showSvg: false,
- currentWindturbine: {},
- showVlaues: "",
- // station: [],
- options: {
- 8: "检修",
- 7: "故障维修",
- 2: "场内受累检修",
- 3: "场内受累故障",
- 4: "场外受累电网",
- 5: "场外受累天气",
- },
- };
- },
- };
- </script>
- <style scoped>
- .lock {
- width: 10px;
- height: 10px;
- position: relative;
- right: 2px;
- top: -15px;
- }
- .durationImg {
- width: 15px;
- height: 15px;
- position: relative;
- right: 5px;
- top: -15px;
- }
- .durationImgs {
- width: 15px;
- height: 15px;
- position: relative;
- right: 5px;
- top: -15px;
- }
- .lock-on {
- width: 0px;
- height: 0px;
- opacity: 0;
- }
- .locks:hover .lock-on {
- position: fixed;
- display: flex;
- align-items: center;
- width: 80px;
- height: 30px;
- border: 1px solid #999999;
- background-color: #999999;
- opacity: 1;
- color: #ffffff;
- z-index: 999;
- }
- .duration {
- width: 15px;
- height: 15px;
- position: relative;
- visibility: hidden;
- }
- .unbox-1:hover .duration {
- visibility: visible;
- }
- .unbox-2:hover .duration {
- visibility: visible;
- }
- .unbox-3:hover .duration {
- visibility: visible;
- }
- .unbox-4:hover .duration {
- visibility: visible;
- }
- .unbox-5:hover .duration {
- visibility: visible;
- }
- .unbox-6:hover .duration {
- visibility: visible;
- }
- .unbox-7:hover .duration {
- visibility: visible;
- }
- .lock_input {
- width: 140px;
- background-color: #292929;
- height: 40px;
- color: #ffffff;
- }
- .lock_inputs {
- width: 200px;
- background-color: #292929;
- height: 40px;
- color: #ffffff;
- }
- .box-0 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(255, 255, 255, 1);
- background-color: rgba(255, 255, 255, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #ffffff;
- }
- .unbox-0 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(255, 255, 255, 1);
- background-color: rgba(255, 255, 255, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-0 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(255, 255, 255, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-0 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(255, 255, 255, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-0 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(255, 255, 255, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-0 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(255, 255, 255, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-1 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(197, 48, 200, 1);
- background-color: rgba(197, 48, 200, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #ef3af2;
- }
- .unbox-1 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(197, 48, 200, 1);
- background-color: rgba(197, 48, 200, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-1 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(197, 48, 200, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-1 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(197, 48, 200, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-1 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(197, 48, 200, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-1 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(197, 48, 200, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-2 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(05, 187, 76, 1);
- background-color: rgba(05, 187, 76, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #09e45e;
- }
- .unbox-2 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(05, 187, 76, 1);
- background-color: rgba(05, 187, 76, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-2 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-2 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-2 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-2 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-3 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(05, 187, 76, 1);
- background-color: rgba(05, 187, 76, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #09e45e;
- }
- .unbox-3 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(05, 187, 76, 1);
- background-color: rgba(05, 187, 76, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-3 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-3 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-3 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-3 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(05, 187, 76, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-4 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(75, 85, 174, 1);
- background-color: rgba(75, 85, 174, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #6876f2;
- }
- .unbox-4 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(75, 85, 174, 1);
- background-color: rgba(75, 85, 174, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-4 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(75, 85, 174, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-4 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(75, 85, 174, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-4 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(75, 85, 174, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-4 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(75, 85, 174, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-5 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(186, 50, 55, 1);
- background-color: rgba(186, 50, 55, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #ff1313;
- }
- @keyframes fade {
- from {
- opacity: 1;
- }
- 50% {
- opacity: 0.6;
- }
- to {
- opacity: 1;
- }
- }
- @-webkit-keyframes fade {
- from {
- opacity: 1;
- }
- 50% {
- opacity: 0.6;
- }
- to {
- opacity: 1;
- }
- }
- .unbox-flashing-5 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(186, 50, 55, 1);
- background-color: rgba(186, 50, 55, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- animation: fade 1600ms infinite;
- -webkit-animation: fade 1600ms infinite;
- }
- .unbox-5 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(186, 50, 55, 1);
- background-color: rgba(186, 50, 55, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-5 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(186, 50, 55, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-5 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(186, 50, 55, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-5 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(186, 50, 55, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-5 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(186, 50, 55, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-6 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(225, 125, 36, 1);
- background-color: rgba(225, 125, 36, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #f28627;
- }
- .unbox-6 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(225, 125, 36, 1);
- background-color: rgba(225, 125, 36, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-6 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(225, 125, 36, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-6 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(225, 125, 36, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-6 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(225, 125, 36, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-6 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(225, 125, 36, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .box-7 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(96, 103, 105, 1);
- background-color: rgba(96, 103, 105, 0.05);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- box-shadow: 0px 0px 6px #ffffff;
- }
- .unbox-7 {
- width: 135px;
- height: 50px;
- color: #ffffff;
- border: 1px solid rgba(96, 103, 105, 1);
- background-color: rgba(96, 103, 105, 0.2);
- display: flex;
- flex-direction: row;
- align-items: center;
- margin-right: 5px;
- margin-top: 10px;
- }
- .left-7 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(96, 103, 105, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .unleft-7 {
- width: 35%;
- height: 100%;
- font-size: 12px;
- color: rgba(96, 103, 105, 1);
- font-weight: 600;
- line-height: 20px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .right-7 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(96, 103, 105, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .unright-7 {
- width: 69%;
- height: 100%;
- font-size: 12px;
- color: rgba(96, 103, 105, 1);
- line-height: 15px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- </style>
|