|
@@ -1,5 +1,4 @@
|
|
<script setup>
|
|
<script setup>
|
|
-import { computed } from 'vue';
|
|
|
|
import { useMessage, NNumberAnimation } from 'naive-ui';
|
|
import { useMessage, NNumberAnimation } from 'naive-ui';
|
|
import BaseTitle from './BaseTitle.vue';
|
|
import BaseTitle from './BaseTitle.vue';
|
|
import { SvgIcon } from '@/components';
|
|
import { SvgIcon } from '@/components';
|
|
@@ -10,30 +9,14 @@ const modelSystemStatus = defineModel('system');
|
|
const emit = defineEmits(['on-click', 'on-update']);
|
|
const emit = defineEmits(['on-click', 'on-update']);
|
|
|
|
|
|
const props = defineProps({
|
|
const props = defineProps({
|
|
- // flowNum: {
|
|
|
|
- // type: Number,
|
|
|
|
- // default: 0
|
|
|
|
- // },
|
|
|
|
- // updateNum: {
|
|
|
|
- // type: Number,
|
|
|
|
- // default: 0
|
|
|
|
- // },
|
|
|
|
- // doseNum: {
|
|
|
|
- // type: Number,
|
|
|
|
- // default: 0
|
|
|
|
- // },
|
|
|
|
- // configurationStatus: {
|
|
|
|
- // type: Number,
|
|
|
|
- // default: 1
|
|
|
|
- // },
|
|
|
|
nums: {
|
|
nums: {
|
|
type: Object,
|
|
type: Object,
|
|
default: () => ({})
|
|
default: () => ({})
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
-const emitEvent = () => {
|
|
|
|
- emit('on-click');
|
|
|
|
|
|
+const emitEvent = (type) => {
|
|
|
|
+ emit('on-click', type);
|
|
};
|
|
};
|
|
const emitUpdate = async () => {
|
|
const emitUpdate = async () => {
|
|
emit('on-update');
|
|
emit('on-update');
|
|
@@ -48,7 +31,7 @@ const emitUpdate = async () => {
|
|
<ul class="update-message space-x-[16px]" v-show="isVisibleBtn">
|
|
<ul class="update-message space-x-[16px]" v-show="isVisibleBtn">
|
|
<li class="flex space-x-[4px]">
|
|
<li class="flex space-x-[4px]">
|
|
<SvgIcon name="control-icon-warning" size="16"></SvgIcon>
|
|
<SvgIcon name="control-icon-warning" size="16"></SvgIcon>
|
|
- <span>有新投放方案,1#系统加药量计算为:{{ nums.updateNum1 }}m³/h, 2#系统加药量计算为:{{ nums.updateNum2 }}m³/h,是否更新?</span>
|
|
|
|
|
|
+ <span>有新投放方案,南池加药量计算为:{{ nums.updateNum1 || 0 }}m³/h, 北池加药量计算为:{{ nums.updateNum2 || 0}}m³/h,是否更新?</span>
|
|
</li>
|
|
</li>
|
|
<li class="space-x-[10px]">
|
|
<li class="space-x-[10px]">
|
|
<span class="text-[#ed742f] cursor-pointer" @click="emitUpdate">更新投放量</span>
|
|
<span class="text-[#ed742f] cursor-pointer" @click="emitUpdate">更新投放量</span>
|
|
@@ -59,70 +42,67 @@ const emitUpdate = async () => {
|
|
<div class="result-card">
|
|
<div class="result-card">
|
|
<div class="result-inner space-x-[8px]">
|
|
<div class="result-inner space-x-[8px]">
|
|
<div class="result-card_item">
|
|
<div class="result-card_item">
|
|
- <div class="h-full flex flex-col justify-between">
|
|
|
|
- <h4>
|
|
|
|
- <span>1#瞬时流量</span>
|
|
|
|
- <span class="block w-[12px] h-[3px] mt-[4px] bg-[#1D2129]"></span>
|
|
|
|
- </h4>
|
|
|
|
- <p class="num-group space-x-[4px]">
|
|
|
|
|
|
+ <ul class="board-inner">
|
|
|
|
+ <li class="board-item">
|
|
|
|
+ <span class="label">南池</span>
|
|
|
|
+ <h4>碳源投加瞬时流量(m³/h)</h4>
|
|
<span class="num">
|
|
<span class="num">
|
|
- <NNumberAnimation :from="0" :to="nums.flowNum1" :duration="1000" :precision="nums.flowNum1 < 1 ? 3 : 3"></NNumberAnimation>
|
|
|
|
|
|
+ <NNumberAnimation :from="0" :to="nums.flowNum1" :duration="1000"
|
|
|
|
+ :precision="3"></NNumberAnimation>
|
|
</span>
|
|
</span>
|
|
- <span class="text-[12px] text-[#86909C]">m³/h</span>
|
|
|
|
- </p>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="result-card_item">
|
|
|
|
- <div class="h-full flex flex-col justify-between">
|
|
|
|
- <h4>
|
|
|
|
- <span>2#瞬时流量</span>
|
|
|
|
- <span class="block w-[12px] h-[3px] mt-[4px] bg-[#1D2129]"></span>
|
|
|
|
- </h4>
|
|
|
|
- <p class="num-group space-x-[4px]">
|
|
|
|
|
|
+ </li>
|
|
|
|
+ <li class="line"></li>
|
|
|
|
+ <li class="board-item">
|
|
|
|
+ <h4>系统加药量(m³/h)</h4>
|
|
<span class="num">
|
|
<span class="num">
|
|
- <NNumberAnimation :from="0" :to="nums.flowNum2" :duration="1000" :precision="nums.flowNum2 < 1 ? 3 : 3"></NNumberAnimation>
|
|
|
|
|
|
+ <NNumberAnimation :from="0" :to="nums.doseNum1" :duration="1000"
|
|
|
|
+ :precision="3"></NNumberAnimation>
|
|
</span>
|
|
</span>
|
|
- <span class="text-[12px] text-[#86909C]">m³/h</span>
|
|
|
|
- </p>
|
|
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+
|
|
|
|
+ <div class="btn-card">
|
|
|
|
+ <div :class="['round-btn']" @click="emitEvent('one')">
|
|
|
|
+ <div class="circle1" v-show="modelSystemStatus.activeOne === 1"></div>
|
|
|
|
+ <div class="circle2" v-show="modelSystemStatus.activeOne === 1"></div>
|
|
|
|
+ <div class="circle3" v-show="modelSystemStatus.activeOne === 1"></div>
|
|
|
|
+ <div class="inner space-y-[4px]">
|
|
|
|
+ <SvgIcon name="control-icon-result-btn" size="14" />
|
|
|
|
+ <span>{{ modelSystemStatus.activeOne === 1 ? "投放中" : "未开启" }}</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="result-card_item">
|
|
<div class="result-card_item">
|
|
- <div class="h-full flex flex-col justify-between">
|
|
|
|
- <h4>
|
|
|
|
- <span>1#系统加药量</span>
|
|
|
|
- <span class="block w-[12px] h-[3px] mt-[4px] bg-[#1D2129]"></span>
|
|
|
|
- </h4>
|
|
|
|
- <p class="num-group space-x-[4px]">
|
|
|
|
|
|
+ <ul class="board-inner">
|
|
|
|
+ <li class="board-item">
|
|
|
|
+ <span class="label">北池</span>
|
|
|
|
+ <h4>碳源投加瞬时流量(m³/h)</h4>
|
|
<span class="num">
|
|
<span class="num">
|
|
- <NNumberAnimation :from="0" :to="nums.doseNum1" :duration="1000" :precision="3"></NNumberAnimation>
|
|
|
|
|
|
+ <NNumberAnimation :from="0" :to="nums.flowNum2" :duration="1000"
|
|
|
|
+ :precision="3"></NNumberAnimation>
|
|
</span>
|
|
</span>
|
|
- <span class="text-[12px] text-[#86909C]">m³/h</span>
|
|
|
|
- </p>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="result-card_item">
|
|
|
|
- <div class="h-full flex flex-col justify-between">
|
|
|
|
- <h4>
|
|
|
|
- <span>2#系统加药量</span>
|
|
|
|
- <span class="block w-[12px] h-[3px] mt-[4px] bg-[#1D2129]"></span>
|
|
|
|
- </h4>
|
|
|
|
- <p class="num-group space-x-[4px]">
|
|
|
|
|
|
+ </li>
|
|
|
|
+ <li class="line"></li>
|
|
|
|
+ <li class="board-item">
|
|
|
|
+ <h4>系统加药量(m³/h)</h4>
|
|
<span class="num">
|
|
<span class="num">
|
|
- <NNumberAnimation :from="0" :to="nums.doseNum2" :duration="1000" :precision="3"></NNumberAnimation>
|
|
|
|
|
|
+ <NNumberAnimation :from="0" :to="nums.doseNum2" :duration="1000"
|
|
|
|
+ :precision="3"></NNumberAnimation>
|
|
</span>
|
|
</span>
|
|
- <span class="text-[12px] text-[#86909C]">m³/h</span>
|
|
|
|
- </p>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div class="btn-card">
|
|
|
|
- <div :class="['round-btn', { disable: modelSystemStatus === 0 }]" @click="emitEvent">
|
|
|
|
- <div class="circle1" v-show="modelSystemStatus === 1"></div>
|
|
|
|
- <div class="circle2" v-show="modelSystemStatus === 1"></div>
|
|
|
|
- <div class="circle3" v-show="modelSystemStatus === 1"></div>
|
|
|
|
- <div class="inner space-y-[4px]">
|
|
|
|
- <SvgIcon name="control-icon-result-btn" size="24" />
|
|
|
|
- <span>{{ modelSystemStatus === 1 ? "投放中" : "未启用" }}</span>
|
|
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+
|
|
|
|
+ <div class="btn-card">
|
|
|
|
+ <div :class="['round-btn']" @click="emitEvent('two')">
|
|
|
|
+ <div class="circle1" v-show="modelSystemStatus.activeTwo === 1"></div>
|
|
|
|
+ <div class="circle2" v-show="modelSystemStatus.activeTwo === 1"></div>
|
|
|
|
+ <div class="circle3" v-show="modelSystemStatus.activeTwo === 1"></div>
|
|
|
|
+ <div class="inner space-y-[4px]">
|
|
|
|
+ <SvgIcon name="control-icon-result-btn" size="14" />
|
|
|
|
+ <span>{{ modelSystemStatus.activeTwo === 1 ? "投放中" : "未开启" }}</span>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -134,7 +114,7 @@ const emitUpdate = async () => {
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.result-card_view {
|
|
.result-card_view {
|
|
position: relative;
|
|
position: relative;
|
|
- height: 190px;
|
|
|
|
|
|
+ height: 210px;
|
|
padding: 0px 16px 24px 16px;
|
|
padding: 0px 16px 24px 16px;
|
|
|
|
|
|
.update-message-box {
|
|
.update-message-box {
|
|
@@ -158,52 +138,92 @@ const emitUpdate = async () => {
|
|
|
|
|
|
.result-card {
|
|
.result-card {
|
|
@include flex(x, center, between);
|
|
@include flex(x, center, between);
|
|
- padding: 16px 35px 16px 16px;
|
|
|
|
|
|
+ padding: 16px 16px 16px 16px;
|
|
margin-top: -9px;
|
|
margin-top: -9px;
|
|
border: 1px solid #fff;
|
|
border: 1px solid #fff;
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
background: url('@/assets/images/control/bg-control-top.png') center right no-repeat, linear-gradient(90deg, #E0E8FC 0%, #F2F4FF 100%);
|
|
background: url('@/assets/images/control/bg-control-top.png') center right no-repeat, linear-gradient(90deg, #E0E8FC 0%, #F2F4FF 100%);
|
|
background-size: auto 100%, auto;
|
|
background-size: auto 100%, auto;
|
|
- background-position: 50% 10%;
|
|
|
|
|
|
+ background-position: 450px 10%, 100% 100%;
|
|
|
|
|
|
.result-inner {
|
|
.result-inner {
|
|
- width: 80%;
|
|
|
|
|
|
+ width: 100%;
|
|
|
|
+ width: 100%;
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
@include flex(x, center, start);
|
|
@include flex(x, center, start);
|
|
|
|
|
|
.result-card_item {
|
|
.result-card_item {
|
|
- width: 22%;
|
|
|
|
- height: 104px;
|
|
|
|
- padding: 20px 0 20px 20px;
|
|
|
|
|
|
+ width: 50%;
|
|
|
|
+ height: 124px;
|
|
|
|
+ padding: 12px 0px 12px 24px;
|
|
border-radius: inherit;
|
|
border-radius: inherit;
|
|
- border: 1px solid #FFF;
|
|
|
|
background: #fff;
|
|
background: #fff;
|
|
background: linear-gradient(90deg, #FFF 50%, rgba(255, 255, 255, 0.50) 100%);
|
|
background: linear-gradient(90deg, #FFF 50%, rgba(255, 255, 255, 0.50) 100%);
|
|
|
|
+ // background: url("@/assets/images/control/bg-board-card.png") no-repeat;
|
|
|
|
+ background-size: 100% 100%;
|
|
backdrop-filter: blur(2px);
|
|
backdrop-filter: blur(2px);
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
+ .board-inner {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-flow: column;
|
|
|
|
+ height: 100%;
|
|
|
|
+
|
|
|
|
+ .board-item {
|
|
|
|
+ position: relative;
|
|
|
|
+ @include flex(y, start, between);
|
|
|
|
+ height: 50%;
|
|
|
|
+
|
|
|
|
+ .label {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: -12px;
|
|
|
|
+ right: 0;
|
|
|
|
+ width: 84px;
|
|
|
|
+ height: 24px;
|
|
|
|
+ border-bottom-left-radius: 10px;
|
|
|
|
+ line-height: 24px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ color: #fff;
|
|
|
|
+ background: rgba(121, 105, 245, 1);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ h4 {
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ line-height: 20px;
|
|
|
|
+ color: #5E5E5E;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .line {
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
+ height: 2px;
|
|
|
|
+ margin-bottom: 2px;
|
|
|
|
+ background: linear-gradient(90deg, #EEE 0%, rgba(238, 238, 238, 0.00) 100%);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
.num {
|
|
.num {
|
|
color: #1A2029;
|
|
color: #1A2029;
|
|
font-family: D-DIN-PRO-700-Bold;
|
|
font-family: D-DIN-PRO-700-Bold;
|
|
- font-size: 24px;
|
|
|
|
|
|
+ font-size: 20px;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
- line-height: 0;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
- & .result-card_item:nth-child(2) {
|
|
|
|
- border: 1px solid #FFF;
|
|
|
|
- background: linear-gradient(90deg, #FFF 50%, rgba(255, 255, 255, 0.50) 100%);
|
|
|
|
- backdrop-filter: blur(2px);
|
|
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .btn-card {
|
|
|
|
+ position: absolute;
|
|
|
|
+ bottom: 10px;
|
|
|
|
+ right: 20px;
|
|
}
|
|
}
|
|
|
|
|
|
.round-btn {
|
|
.round-btn {
|
|
position: relative;
|
|
position: relative;
|
|
@include flex(x, center, center);
|
|
@include flex(x, center, center);
|
|
- width: 88px;
|
|
|
|
- height: 88px;
|
|
|
|
|
|
+ width: 60px;
|
|
|
|
+ height: 60px;
|
|
border: 2px solid #E6EFFE;
|
|
border: 2px solid #E6EFFE;
|
|
border-radius: 50%;
|
|
border-radius: 50%;
|
|
background: #898EFE;
|
|
background: #898EFE;
|
|
@@ -217,12 +237,12 @@ const emitUpdate = async () => {
|
|
position: relative;
|
|
position: relative;
|
|
@include flex(x, center, center);
|
|
@include flex(x, center, center);
|
|
flex-flow: column;
|
|
flex-flow: column;
|
|
- width: 74px;
|
|
|
|
- height: 74px;
|
|
|
|
- padding: 14px;
|
|
|
|
|
|
+ width: 48px;
|
|
|
|
+ height: 48px;
|
|
border-radius: 100%;
|
|
border-radius: 100%;
|
|
background: #2454FF;
|
|
background: #2454FF;
|
|
transition: all 0.3s;
|
|
transition: all 0.3s;
|
|
|
|
+ font-size: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -230,21 +250,12 @@ const emitUpdate = async () => {
|
|
cursor: not-allowed;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
|
|
- // .active {
|
|
|
|
- // transition: all 0.5s;
|
|
|
|
- // background: #898EFE;
|
|
|
|
-
|
|
|
|
- // .inner {
|
|
|
|
- // background: #2454FF;
|
|
|
|
- // }
|
|
|
|
- // }
|
|
|
|
-
|
|
|
|
.circle1,
|
|
.circle1,
|
|
.circle2,
|
|
.circle2,
|
|
.circle3 {
|
|
.circle3 {
|
|
position: absolute;
|
|
position: absolute;
|
|
- width: 40px;
|
|
|
|
- height: 40px;
|
|
|
|
|
|
+ width: 30px;
|
|
|
|
+ height: 30px;
|
|
background: rgba(137, 142, 254, 1);
|
|
background: rgba(137, 142, 254, 1);
|
|
border: 1px solid rgba(137, 142, 254, 0.85);
|
|
border: 1px solid rgba(137, 142, 254, 0.85);
|
|
border-radius: 999px;
|
|
border-radius: 999px;
|
|
@@ -273,7 +284,7 @@ const emitUpdate = async () => {
|
|
|
|
|
|
@keyframes circleChange {
|
|
@keyframes circleChange {
|
|
0% {
|
|
0% {
|
|
- transform: scale(2);
|
|
|
|
|
|
+ transform: scale(1.2);
|
|
opacity: 0.95;
|
|
opacity: 0.95;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -293,7 +304,7 @@ const emitUpdate = async () => {
|
|
// }
|
|
// }
|
|
|
|
|
|
100% {
|
|
100% {
|
|
- transform: scale(3);
|
|
|
|
|
|
+ transform: scale(2.5);
|
|
opacity: 0.05;
|
|
opacity: 0.05;
|
|
}
|
|
}
|
|
}
|
|
}
|