123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- <template>
- <BasicModal
- @register="register"
- title="智能排放瓦斯"
- :maskStyle="{ backgroundColor: '#000000aa', backdropFilter: 'blur(3px)' }"
- width="1600px"
- style="height: 60%"
- v-bind="$attrs"
- @ok="onSubmit"
- :canFullscreen="false"
- :destroyOnClose="true"
- :footer="null"
- :maskClosable="false"
- >
- <div class="modal-box">
- <div class="left-box" style="width: 900px; height: 400px"> </div>
- <div class="right-box">
- <!-- <div ref="ChartRef" class="line-chart" style="height: 400px; width: 100%"></div> -->
- <BarAndLine
- class="echarts-line"
- xAxisPropType="readTime"
- height="400px"
- :dataSource="echartsData"
- :chartsColumns="chartsColumnListGas"
- :option="echatsOption1"
- />
- </div>
- </div>
- <div class="setting-box">
- <div class="right-inputs">
- <div class="vent-flex-row">
- <div class="input-title">出风口风量(m³/min):</div>
- <span class="input-box" size="large">{{ data.ductOutletAirVolume_merge }}</span>
- <div class="input-title">局扇供风量(m³/min):</div>
- <span class="input-box" size="large">{{ data.inletAirVolume_merge }}</span>
- <div class="input-title">瓦斯超限浓度(%):</div>
- <span class="input-box" size="large">{{ props.gasMax }}</span>
- <div class="btn btn1" @click="onHide">隐 藏</div>
- <div class="btn btn1" @click="stop">紧急停止</div>
- </div>
- </div>
- </div>
- <a-modal v-model:visible="modalIsShow" :title="modalTitle" :maskStyle="{ backgroundColor: '#000000aa', backdropFilter: 'blur(3px)' }">
- <template #footer>
- <div>
- <a-button key="back" @click="cancel">返回</a-button>
- <a-button key="submit" type="primary" @click="handleOk">确定</a-button>
- </div>
- </template>
- <div class="modal-container">
- <div class="vent-flex-row">
- <ExclamationCircleFilled style="color: #ffb700; font-size: 30px" />
- <div class="warning-text">您是否要进行紧急停止操作?</div>
- </div>
- <div class="vent-flex-row input-box">
- <div class="label">操作密码:</div>
- <a-input size="small" type="password" v-model:value="passWord" style="width: 50%" />
- </div>
- </div>
- </a-modal>
- </BasicModal>
- </template>
- <script lang="ts" setup>
- import { BasicModal, useModalInner } from '/@/components/Modal';
- import { ref, nextTick, onMounted, watch } from 'vue';
- import { option, chartsColumnListGas, echatsOption1 } from '../fanLocal.data';
- import BarAndLine from '/@/components/chart/BarAndLine.vue';
- import { autoAdjust } from '../fanLocal.api';
- import { message } from 'ant-design-vue';
- const props = defineProps({
- data: {
- type: Object,
- default: () => {},
- },
- gasMax: {
- type: Number,
- },
- fanlocalId: {
- type: Number,
- },
- });
- const emit = defineEmits(['close', 'register', 'openModal']);
- // 注册 modal
- const [register, { closeModal }] = useModalInner((data) => {
- nextTick(() => {
- if (option['xAxis']) option['xAxis']['data'] = xData;
- option['series'] = yDataList;
- initEcharts();
- });
- });
- const ChartRef = ref();
- const myChart = ref();
- const refresh = ref(true);
- const xData: any[] = [];
- const yDataList: [] = [];
- const echartsData = ref<Record<string, any>[]>([]);
- const monitorData = ref<Record<string, any>>({});
- const modalIsShow = ref<boolean>(false); // 是否显示模态框
- const modalTitle = ref('');
- const passWord = ref('');
- watch(
- () => props.data,
- (newVal) => {
- // 创建新对象,合并 newVal 和 targetVolume
- const combinedData = {
- gasT1: newVal.gasT1,
- gasT2: newVal.gasT2,
- gasT3: newVal.gasT3,
- gasT4: newVal.gasT4,
- readTime: newVal.readTime || new Date().toISOString(), // 确保有时间字段
- };
- monitorData.value = combinedData;
- if (echartsData.value.length > 20) {
- echartsData.value.shift();
- }
- echartsData.value = [...echartsData.value, combinedData];
- }
- );
- function initEcharts() {
- if (ChartRef.value) {
- myChart.value = echarts.init(ChartRef.value);
- option && myChart.value.setOption(option);
- refresh.value = false;
- nextTick(() => {
- setTimeout(() => {
- refresh.value = true;
- }, 0);
- });
- }
- }
- function onHide() {
- closeModal();
- }
- function stop() {
- modalIsShow.value = true;
- passWord.value == '';
- }
- function cancel() {
- modalIsShow.value = false;
- }
- function handleOk() {
- if (passWord.value == '') {
- message.warning('请输入密码!');
- return;
- }
- handerFn();
- }
- function handerFn() {
- if (passWord.value != '123456') {
- message.error('密码错误,请重新输入!');
- return;
- }
- const params = { auto: 0, fanlocalId: props.fanlocalId };
- autoAdjust(params)
- .then(() => {
- message.success('指令已下发成功!');
- modalIsShow.value = false;
- passWord.value == '';
- })
- .catch(() => {
- message.error('指令下发失败');
- });
- }
- onMounted(() => {});
- function onSubmit() {
- emit('close');
- closeModal();
- }
- </script>
- <style scoped lang="less">
- .modal-box {
- display: flex;
- flex-direction: row;
- background-color: #ffffff05;
- padding: 10px 8px 0 8px;
- border: 1px solid #00d8ff22;
- position: relative;
- // min-height: 600px;
- .left-box {
- flex: 1; /* 占据 3/4 的空间 */
- background-image: url(../../../../../assets/images/dischargeGas.svg);
- background-repeat: no-repeat;
- background-size: contain; /* 确保背景图片完整显示 */
- background-position: center; /* 确保背景图片居中 */
- }
- .right-box {
- flex: 1; /* 占据 3/4 的空间 */
- height: 400px;
- width: 100%;
- }
- }
- .setting-box {
- width: 100%;
- height: 70px;
- margin: 10px 0;
- background-color: #ffffff05;
- border: 1px solid #00d8ff22;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .right-inputs {
- width: 100%;
- display: flex;
- height: 40px;
- margin: 0 10px;
- justify-content: space-between;
- }
- .left-buttons {
- display: flex;
- height: 40px;
- .btn {
- margin: 0 10px;
- }
- }
- .border-clip {
- width: 1px;
- height: 25px;
- border-right: 1px solid #8b8b8b77;
- }
- .input-title {
- max-width: 150px;
- }
- .input-box {
- width: 120px !important;
- background: transparent !important;
- border-color: #00d8ff44 !important;
- margin-right: 20px;
- color: #fff !important;
- }
- .btn {
- padding: 8px 20px;
- position: relative;
- margin: 10px;
- border-radius: 2px;
- color: #fff;
- width: fit-content;
- cursor: pointer;
- float: right;
- &::before {
- position: absolute;
- display: block;
- content: '';
- width: calc(100% - 4px);
- height: calc(100% - 4px);
- top: 2px;
- left: 2px;
- border-radius: 2px;
- z-index: -1;
- }
- }
- .btn1 {
- border: 1px solid #5cfaff;
- &::before {
- background-image: linear-gradient(#2effee92, #0cb1d592);
- }
- &:hover {
- border: 1px solid #5cfaffaa;
- &::before {
- background-image: linear-gradient(#2effee72, #0cb1d572);
- }
- }
- }
- }
- @keyframes open {
- 0% {
- height: 0px;
- }
- 100% {
- height: fit-content;
- }
- }
- @keyframes close {
- 0% {
- height: fit-content;
- }
- 100% {
- height: 0px;
- }
- }
- :deep(.zxm-divider-inner-text) {
- color: #cacaca88 !important;
- }
- :deep(.zxm-form-item) {
- margin-bottom: 10px;
- }
- </style>
|