index.vue 30.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
<!--
 * 功能:通道列表
 * 作者:曹晓桐
 * 日期:2023-11-7
-->
<template>
  <div>
    <a-card class="content">
      <!-- 查询条件 start-->
      <a-row>
        <a-col :flex="1" style="margin-top: 4px;">
          <a-form :model="searchModel" :label-col-props="{ span: 6 }" :wrapper-col-props="{ span: 18 }"
                  label-align="left" auto-label-width>
            <a-row :gutter="16">
              <a-col :span="8">
                <a-form-item field="channelName" :label="$t('manage.channel.list.channelName')">
                  <a-input v-model="searchModel.channelName" :placeholder="$t('manage.channel.list.fuzzyQuery')"
                           allow-clear/>
                </a-form-item>
              </a-col>
              <a-col :span="8">
                <a-form-item field="registrationCode" :label="$t('manage.channel.list.registrationCode')">
                  <a-input v-model="searchModel.registrationCode" :placeholder="$t('manage.channel.list.fuzzyQuery')"
                           allow-clear/>
                </a-form-item>
              </a-col>
              <!-- <a-col :span="8">
                <a-form-item label="分类状态">
                  <a-select v-model="searchModel.stopFlag" placeholder="请选择分类状态" allow-clear>
                    <a-option v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.label"
                      :value="dict.value" />
                  </a-select>
                </a-form-item>
              </a-col> -->
            </a-row>
          </a-form>
        </a-col>
        <a-divider style="height: 35px" direction="vertical"/>
        <a-col :flex="'86px'" style="text-align: right">
          <a-space :size="18">
            <a-button type="primary" @click="search">
              <template #icon>
                <icon-search/>
              </template>
              {{ $t('global.search') }}
            </a-button>
          </a-space>
        </a-col>
      </a-row>
      <!-- 查询条件 end-->

      <!-- 分割线 -->
      <a-divider style="margin-top: 0"/>

      <!-- 按钮 -->
      <a-row style="margin-bottom: 16px">
        <a-col :span="12">
          <a-space>
            <a-button type="primary" @click="handleAdd">
              <template #icon>
                <icon-plus/>
              </template>
              {{ $t('manage.channel.list.addChannel') }}
            </a-button>
          </a-space>
        </a-col>
      </a-row>

      <!-- 表格内容 start-->
      <a-table row-key="id" ref="tableRef" :loading="loading" :pagination="pagination" :scroll="{ x: 1350 }"
               :bordered="{ wrapper: true, cell: true }" :columns="(columns as TableColumnData[])" :data="renderData">
        <!-- 电站类型 -->
        <template #stationType="{ record }">
          <dict-tag :options="sys_station_type" :value="record.stationType"/>
        </template>
        <!-- 接入方式 -->
        <template #accessType="{ record }">
          <dict-tag :options="sys_channel_type" :value="record.accessType"/>
        </template>
        <!-- 注册码/IP -->
        <template #registrationCode="{ record }">
          {{ record.accessType == 1 ? record.registrationCode : record.connIp }}
        </template>
        <!-- 通道状态 -->
        <template #isActive="{ record }">
          <span v-if="record.isActive === 0" class="circle-device"></span>
          <span v-else class="circle-device pass"></span>
        </template>
        <!-- 上/下线时间 -->
        <template #time="{ record }">
          {{ record.stopFlag == 0 ? record.onlineTime : record.offlineTime }}
        </template>
        <template #operate="{ record }">
          <a-button size="small" type="text" @click="handleStopFlag(record)"
                    :status="record.stopFlag == 1 ? 'normal' : 'warning'">
            {{ record.stopFlag == 0 ? $t('global.forbidden') : $t('global.enable') }}
          </a-button>
          <a-button size="small" type="text" status="success" @click="handleUpdate(record.id)">{{ $t('global.edit') }}
          </a-button>
          <a-button size="small" type="text" status="success" @click="handleDetail(record.id)">{{ $t('global.detail') }}
          </a-button>
          <a-button size="small" type="text" status="success" @click="handleToDevice(record.id)">
            {{ $t('manage.channel.list.equipment') }}
          </a-button>
          <a-button size="small" type="text" status="success" @click="handleRealTime(record)">实时
          </a-button>
          <a-button size="small" type="text" status="danger" @click="handleDelete(record)">{{ $t('global.delete') }}
          </a-button>
        </template>
      </a-table>
      <!-- 表格内容 end-->

      <!-- 操作弹框 start -->
      <a-modal width="450px" v-model:visible="operateModalModel.visible" class="modal-box">
        <template #title>
          <icon-close-circle v-if="operateModalModel.type == 1" size="18"
                             style="color: rgb(var(--red-6)); margin-right: 5px"/>
          <icon-exclamation-circle v-else size="18" style="color: rgb(var(--orange-6)); margin-right: 5px"/>
          {{ $t('global.confirmTip') }}
        </template>
        <a-spin :loading="operateModalModel.loading" style="width: 100%;height: 100%">
          <div style="text-align: center;">是否确认{{ operateModalModel.title }}名称为【{{
              operateModalModel.name
            }}】的数据项?
          </div>
        </a-spin>
        <template #footer>
          <div style="text-align: center">
            <a-space>
              <a-button type="primary" status="danger" @click="handleOperateModelCancle">{{ $t('global.cancel') }}
              </a-button>
              <a-button type="primary" :loading="operateModalModel.loading" @click="handleOperateModelOk">
                {{ $t('global.confirm') }}
              </a-button>
            </a-space>
          </div>
        </template>
      </a-modal>
      <!-- 操作弹框 end -->

      <!-- 添加/编辑 右弹层 start -->
      <a-drawer :width="750" :visible="formDrawer.visible" :ok-loading="formDrawer.loading" @ok="handleSubmitForm"
                @cancel="handleFormCancel"
                :mask-closable="false">
        <template #title>
          {{ formDrawer.formModel.id ? $t('manage.channel.list.editGrouping') : $t('manage.channel.list.addGroup') }}
        </template>
        <a-spin style="width:100%;height:100%" :loading="formDrawer.loading">
          <a-row :gutter="24">
            <a-col :span="24">
              <a-form ref="formRef" auto-label-width :model="formDrawer.formModel" label-align="right"
                      :rules="formDrawer.rules">

                <!-- 通道名称 -->
                <a-form-item field="channelName" :label="$t('manage.channel.list.channelName')"
                             :validate-trigger="['change', 'blur']">
                  <a-input v-model="formDrawer.formModel.channelName" allow-clear/>
                </a-form-item>

                <!--  通道编码 -->
                <a-form-item field="channelSn" class="star-from-item" :label="$t('manage.channel.list.channelCoding')">
                  <a-input v-model="formDrawer.formModel.channelSn" disabled/>
                </a-form-item>

                <!-- 接入方式 -->
                <a-form-item field="accessType" :label="$t('manage.channel.list.accessMode')"
                             :validate-trigger="['change', 'blur']">
                  <a-radio-group v-model="formDrawer.formModel.accessType">
                    <a-radio v-for="dict in sys_channel_type" :key="dict.value" :value="Number(dict.value)">{{
                        dict.label
                      }}
                    </a-radio>
                  </a-radio-group>
                </a-form-item>

                <!-- TCP -->
                <div v-if="formDrawer.formModel.accessType == 1">
                  <!-- 通讯注册码 -->
                  <a-form-item field="registrationCode" :label="$t('manage.channel.list.communicationCode')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.registrationCode" allow-clear/>
                    <template #extra>
                    <span>
                      <i class="icon" :style="{ color: 'rgb(var(--primary-6))' }"><icon-exclamation-circle-fill/></i>
                      {{ $t('manage.channel.list.codeRule') }}
                    </span>
                    </template>
                  </a-form-item>

                  <!-- 起始位置 -->
                  <!-- <a-form-item field="codeStart" label="起始位置" :validate-trigger="['change', 'blur']">
                    <a-input-number :min="0" :precision="0" v-model="formDrawer.formModel.codeStart" allow-clear />
                  </a-form-item> -->

                  <!-- 注册码长度 -->
                  <!-- <a-form-item field="codeLength" label="注册码长度" :validate-trigger="['change', 'blur']">
                    <a-input-number :min="0" :precision="0" v-model="formDrawer.formModel.codeLength" allow-clear />
                  </a-form-item> -->

                  <!-- 注册回应码 -->
                  <a-form-item field="registrationRsp" :label="$t('manage.channel.list.responseCode')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.registrationRsp" allow-clear/>
                  </a-form-item>
                </div>

                <!-- MQTT -->
                <div v-if="formDrawer.formModel.accessType == 2">

                  <!-- 连接地址 -->
                  <a-form-item field="connIp" :label="$t('manage.channel.list.connectionAddress')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.connIp" allow-clear/>
                  </a-form-item>

                  <!-- 连接端口 -->
                  <a-form-item field="connPort" :label="$t('manage.channel.list.connectingPort')"
                               :validate-trigger="['change', 'blur']">
                    <a-input-number :min="0" :max="65535" :precision="0" v-model="formDrawer.formModel.connPort"
                                    allow-clear/>
                  </a-form-item>

                  <!-- 连接帐号 -->
                  <a-form-item field="connUsername" :label="$t('manage.channel.list.connectionAccount')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.connUsername" allow-clear/>
                  </a-form-item>

                  <!-- 连接密码 -->
                  <a-form-item field="connPwd" :label="$t('manage.channel.list.connectionPassword')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.connPwd" allow-clear/>
                  </a-form-item>

                  <!-- 订阅主题 -->
                  <a-form-item field="subscribeTopic" :label="$t('manage.channel.list.topic')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.subscribeTopic" allow-clear/>
                  </a-form-item>

                  <!-- 发布主题 -->
                  <a-form-item field="publishTopic" :label="$t('manage.channel.list.releaseTopic')"
                               :validate-trigger="['change', 'blur']">
                    <a-input v-model="formDrawer.formModel.publishTopic" allow-clear/>
                  </a-form-item>
                </div>

                <!-- 上报地址 -->
                <a-form-item field="ipAddress" :label="$t('manage.channel.list.reportAddress')"
                             :validate-trigger="['change', 'blur']">
                  <a-input v-model="formDrawer.formModel.ipAddress" allow-clear/>
                </a-form-item>

                <!-- 上报端口 -->
                <a-form-item field="port" :label="$t('manage.channel.list.reportingPort')"
                             :validate-trigger="['change', 'blur']">
                  <a-input-number :min="0" :max="65535" :precision="0" v-model="formDrawer.formModel.port" allow-clear/>
                </a-form-item>

                <!-- 连接超时 -->
                <a-form-item field="timeout" :label="$t('manage.channel.list.connectionTimeout')"
                             :validate-trigger="['change', 'blur']">
                  <a-input-number :precision="0" v-model="formDrawer.formModel.timeout" allow-clear>
                    <template
                        #append>{{ $t('manage.channel.list.seconds') }}
                    </template>
                  </a-input-number>
                </a-form-item>

                <!-- 调度周期 -->
                <a-form-item field="scheduleInterval" :label="$t('manage.channel.list.schedulingCycle')"
                             :validate-trigger="['change', 'blur']">
                  <a-input-number :precision="0" v-model="formDrawer.formModel.scheduleInterval" allow-clear>
                    <template
                        #append>{{ $t('manage.channel.list.ms') }}
                    </template>
                  </a-input-number>
                </a-form-item>

                <!-- 连接报警 -->
                <a-form-item field="connectAlarm" :label="$t('manage.channel.list.connectionAlarm')"
                             :validate-trigger="['change', 'blur']">
                  <a-switch :checked-value="1" :unchecked-value="0"
                            v-model="formDrawer.formModel.connectAlarm">
                    <template #checked>{{ $t('global.on') }}</template>
                    <template
                        #unchecked>{{ $t('global.off') }}
                    </template>
                  </a-switch>
                </a-form-item>

                <!-- 启用状态 -->
                <a-form-item field="stopFlag" :label="$t('manage.channel.list.enabledState')">
                  <a-switch :checked-value="0" :unchecked-value="1"
                            v-model="formDrawer.formModel.stopFlag">
                    <template #checked>{{ $t('global.enable') }}</template>
                    <template
                        #unchecked>{{ $t('global.forbidden') }}
                    </template>
                  </a-switch>
                </a-form-item>
              </a-form>
            </a-col>
          </a-row>
        </a-spin>
      </a-drawer>
      <!-- 添加/编辑 右弹层 end -->

      <!-- 详情 右弹层 start  -->
      <a-drawer :width="1150" :title="detailDataList.title" :visible="formDrawer.visibleDetail" hide-cancel
                @cancel="handleFormCancel" @ok="handleFormCancel" unmountOnClose :mask-closable="false">
        <a-row :gutter="24" style="padding: 10px;">
          <a-col :span="12">
            <a-descriptions :align="{ label: 'right' }" :label-style="{
          color: 'rgb(var(--color-neutral-10))',
        }" :data="detailDataList.leftData" :column="1" size="large">
              <template #value="{ value }">
                <a-skeleton v-if="formDrawer.loading" :animation="true">
                  <a-skeleton-line :rows="1"/>
                </a-skeleton>
                <span v-else>{{ value }}</span>
              </template>
            </a-descriptions>
          </a-col>
          <a-col :span="12">
            <a-descriptions :align="{ label: 'right' }" :label-style="{
          color: 'rgb(var(--color-neutral-10))',
        }" :data="detailDataList.rightDataOne" :column="1" size="large">
              <template #value="{ value, index, data }">
                <a-skeleton v-if="formDrawer.loading" :animation="true">
                  <a-skeleton-line :rows="1"/>
                </a-skeleton>
                <span v-else class="span-status">
                  <template v-if="data.field == 'isActive'">
                    <span v-if="value === 0" class="circle-device"></span>
                    <span v-else class="circle-device pass"></span>
                  </template>
                   <template v-else-if="data.field == 'stopFlag'">
                      <stop-flag :value="value"/>
                  </template>
                  <template v-else-if="data.field == 'connectAlarm'">
                    <a-tag v-if="value == 1" color="rgb(var(--primary-6))">{{ $t('global.enable') }}</a-tag>
                    <a-tag v-else color="rgb(var(--red-6))">{{ $t('global.forbidden') }}</a-tag>
                  </template>
                  <template v-else>{{ value }}</template>
                </span>
              </template>
            </a-descriptions>
            <a-divider orientation="left">系统信息</a-divider>
            <a-descriptions :align="{ label: 'right' }" :label-style="{
          color: 'rgb(var(--color-neutral-10))',
        }" :data="detailDataList.rightDataTwo" :column="1" size="large">
              <template #value="{ value }">
                <a-skeleton v-if="formDrawer.loading" :animation="true">
                  <a-skeleton-line :rows="1"/>
                </a-skeleton>
                <span v-else>{{ value }}</span>
              </template>
            </a-descriptions>
          </a-col>
        </a-row>
      </a-drawer>
      <!-- 详情 右弹层 end  -->
    </a-card>
  </div>
</template>

<script setup lang="ts">
import {computed, getCurrentInstance, onMounted, reactive, ref} from 'vue';
import {TableInstance} from "@arco-design/web-vue";
import {BasePagination} from '@/api/common';
import {notification} from "@/hooks/my-design";
import {FormInstance} from '@arco-design/web-vue/es/form';
import {
  addChannel,
  changeChannelStatus,
  delChannel,
  getChannel,
  listChannel,
  updateChannel
} from '@/api/system/channel';
import useLoading from '@/hooks/loading';
import {getDictLabel} from '@/utils/dict';
import {useRouter} from 'vue-router';

/*************************** 变量区域 begin ***************************/

//******* 这里编写动态获取下拉列表 start ******
const proxy = getCurrentInstance()?.appContext.config.globalProperties;
const {sys_station_type, sys_channel_type} = proxy?.useDict("sys_station_type", "sys_channel_type");
//******* 这里编写动态获取下拉列表 end ******

//路由
const router = useRouter();
//生成查询条件对象
const generateSearchModel = () => {
  return {
    //通道名称
    channelName: "",
    //注册码
    registrationCode: "",
    //所属站点
    stationOwing: "",
  };
};

//查询表单对象
const searchModel = ref(generateSearchModel());
//加载中
const {loading, setLoading} = useLoading(true);
//表格分页参数
const pagination: any = reactive({...BasePagination()});
//表格实例
const tableRef = ref<TableInstance>();
//设置表格列
const columns = computed<any[]>(() => [
  {
    title: "编号",
    dataIndex: "id",
    align: 'center',
    width: 80,
    fixed: 'left'
  },
  {
    title: "通道名称",
    dataIndex: "channelName",
    fixed: 'left',
    width: 200,
    ellipsis: true,
    tooltip: {position: 'top'},
  },
  // TODO:缺字段
  {
    title: "所属站点",
    dataIndex: "stationName",
    width: 200,
    ellipsis: true,
    tooltip: {position: 'top'},
  },
  {
    title: "站点类型",
    dataIndex: "stationType",
    slotName: "stationType",
    align: 'center',
    width: 120
  },
  {
    title: "接入方式",
    dataIndex: "accessType",
    slotName: "accessType",
    align: 'left',
    width: 120
  },
  {
    title: "注册码/IP",
    dataIndex: "registrationCode",
    slotName: "registrationCode",
    align: 'left',
    width: 120
  },
  {
    title: "上/下线时间",
    dataIndex: "time",
    slotName: "time",
    width: 180,
    align: 'center'
  },
  {
    title: "通道状态",
    dataIndex: "isActive",
    slotName: "isActive",
    align: 'center',
    width: 100,
    fixed: 'right'
  },
  {
    title: "操作",
    dataIndex: "operations",
    width: 270,
    slotName: 'operate',
    align: 'center',
    fixed: 'right'
  },
]);

//表格数据
const renderData = ref<any[]>([]);
//操作弹框
const generateOperateModalModel = () => {
  return {
    //0 状态 1删除
    type: 0,
    visible: false,
    title: "",
    id: 0,
    value: 0,
    name: "",
    loading: false,
  };
};
//操作弹框模型
const operateModalModel = ref(generateOperateModalModel());
//表格示例
const formRef = ref<FormInstance>();
//生成表单模型
const generateFormDrawerModel = () => {
  return {
    loading: false,
    visible: false,
    visibleDetail: false,
    rules: {
      channelName: [{required: true, message: "请输入通道名称"}],
      accessType: [{required: true, message: "请选择接入方式"}],
      registrationCode: [{required: true, message: "请输入通讯注册码"}, {
        validator: (value: any, cb: any) => {
          if (!isStartWith66(value)) {
            cb('注册码必须以“66”开头')
          } else {
            cb()
          }
        }
      }],
      codeStart: [{required: true, message: "请输入起始位置"}],
      codeLength: [{required: true, message: "请输入注册码长度"}],
      // registrationRsp: [{ required: true, message: "请输入注册回应码" }],
      connIp: [{required: true, message: "请输入连接地址"}, {type: 'ip', message: "请输入的连接地址"}],
      connPort: [{required: true, message: "请输入连接端口"}],
      connUsername: [{required: true, message: "请输入连接帐号"}],
      connPwd: [{required: true, message: "请输入连接密码"}],
      subscribeTopic: [{required: true, message: "请输入订阅主题"}],
      publishTopic: [{required: true, message: "请输入发布主题"}],
      ipAddress: [{required: true, message: "请输入上报地址"}, {type: 'ip', message: "请输入正确的上报地址"}],
      port: [{required: true, message: "请输入上报端口"}],
      timeout: [{required: true, message: "请输入连接超时"}],
      scheduleInterval: [{required: true, message: "请输入调度周期"}],
    },
    formModel: {
      id: 0,
      stationName: '',
      accessType: 1,
      activeUpdateTime: '',
      channelName: '',
      channelSn: '',
      codeLength: undefined,
      codeStart: 0,
      connIp: '',
      connPort: 0,
      connPwd: '',
      connUsername: '',
      connectAlarm: 0,
      ipAddress: '',
      isActive: 0,
      offlineTime: '',
      onlineTime: '',
      port: undefined,
      publishTopic: '',
      registrationCode: undefined,
      registrationRsp: '',
      remark: '',
      scheduleInterval: 300,
      stationType: undefined,
      stopFlag: 0,
      subscribeTopic: '',
      timeout: 300,
      createBy: undefined,
      createTime: undefined,
      updateBy: undefined,
      updateTime: undefined,
    }
  };
};
//表单模型
const formDrawer = ref(generateFormDrawerModel());
//switch选中值
const checkedValue = ref<number>(0);
//switch未选中值
const unCheckedValue = ref<number>(1);
//详情
const detailDataList = ref<any>({});

/*************************** 变量区域 end ***************************/


/*************************** 方法区域 begin ***************************/

const isStartWith66 = (s: any) => {
  const pattern = /^66/;
  return pattern.test(s);
}

//重置查询条件
const search = async () => {
  pagination.current = 1;
  await fetchData();
}

/**
 * 新增数据
 * @param row 数据行
 */
const handleAdd = async () => {
  formDrawer.value.visible = true;
}

/**
 * 删除空数据
 * @param data
 */
const removeEmptyChildren = (data: any) => {
  data.forEach((item: any, index: number) => {
    if (item.children && item.children.length === 0) {
      delete data[index].children;
    } else if (item.children) {
      removeEmptyChildren(item.children);
    }
  });
}

/**
 * 编辑数据
 * @param row 数据行
 */
const handleUpdate = async (id: any) => {
  let result = await getChannel(id);
  if (result.code == 200) {
    formDrawer.value.formModel = result.data;
    formDrawer.value.visible = true;
  }
}


/**
 * 查看详情
 * @param id
 */
const handleDetail = async (id: any) => {
  formDrawer.value.visibleDetail = true;
  formDrawer.value.loading = true;
  try {
    let res = await getChannel(id);
    if (res.code == 200) {
      formDrawer.value.formModel = res.data;
      detailDataList.value = getDatail();
    }
  } catch (error) {

  } finally {
    formDrawer.value.loading = false;
  }
}

/**
 * 获取详情
 */
const getDatail = () => {
  const result = {
    title: formDrawer.value.formModel.channelName,
    leftData: [
      {
        label: '所属站点:',
        value: formDrawer.value.formModel.stationName || '-',
      },
      {
        label: '电站类型:',
        value: getDictLabel('sys_station_type', formDrawer.value.formModel.stationType) || '-',
      },
      {
        label: '通道名称:',
        value: formDrawer.value.formModel.channelName || '-',
      },
      {
        label: '通道编码:',
        value: formDrawer.value.formModel.channelSn || '-',
      },
      {
        label: '接入方式:',
        value: getDictLabel('sys_channel_type', formDrawer.value.formModel.accessType) || '-',
      },
      {
        label: '通道注册码:',
        value: formDrawer.value.formModel.registrationCode || '-',
      },
      {
        label: '起始位置:',
        value: formDrawer.value.formModel.codeStart || '-',
      },
      {
        label: '注册码长度:',
        value: formDrawer.value.formModel.codeLength || '-',
      },
      {
        label: '注册回应码:',
        value: formDrawer.value.formModel.registrationRsp || '-',
      },
      {
        label: '连接地址:',
        value: formDrawer.value.formModel.connIp || '-',
      },
      {
        label: '连接端口:',
        value: formDrawer.value.formModel.connPort || '-',
      },
      {
        label: '连接帐号:',
        value: formDrawer.value.formModel.connUsername || '-',
      },
      {
        label: '连接密码:',
        value: formDrawer.value.formModel.connPwd || '-',
      },
      {
        label: '订阅主题:',
        value: formDrawer.value.formModel.subscribeTopic || '-',
      },
      {
        label: '发布主题:',
        value: formDrawer.value.formModel.publishTopic || '-',
      }, {
        label: '上报地址:',
        value: formDrawer.value.formModel.ipAddress || '-',
      }, {
        label: '上报端口:',
        value: formDrawer.value.formModel.port || '-',
      }, {
        label: '连接超时(s):',
        value: formDrawer.value.formModel.timeout || '-',
      }, {
        label: '调度周期(ms):',
        value: formDrawer.value.formModel.scheduleInterval || '-',
      },
    ],
    rightDataOne: [{
      label: '通道状态:',
      value: formDrawer.value.formModel.isActive,
      field: 'isActive'
    }, {
      label: '激活时间:',
      value: formDrawer.value.formModel.activeUpdateTime || '-',
    }, {
      label: '上线时间:',
      value: formDrawer.value.formModel.onlineTime || '-',
    }, {
      label: '下线时间:',
      value: formDrawer.value.formModel.offlineTime || '-',
    }, {
      label: '连接报警:',
      value: formDrawer.value.formModel.connectAlarm || '-',
      field: 'connectAlarm'
    }, {
      label: '启用状态:',
      value: formDrawer.value.formModel.stopFlag,
      field: 'stopFlag'
    }],
    rightDataTwo: [{
      label: '创建人员:',
      value: formDrawer.value.formModel.createBy || '-',
    }, {
      label: '创建时间:',
      value: formDrawer.value.formModel.createTime || '-',
    }, {
      label: '更新人员:',
      value: formDrawer.value.formModel.updateBy || '-',
    }, {
      label: '更新时间:',
      value: formDrawer.value.formModel.updateTime || '-',
    }]
  }
  return result;
}

/**
 * 跳转到通道设备
 * @param id
 */
const handleToDevice = (id: any) => {
  router.push({
    path: "/setting/channel/device",
    query: {
      channelId: id,
    }
  });
}

/**
 * 跳转到实时
 * @param id
 */
const handleRealTime = (record: any) => {
  router.push({
    path: "/setting/channel/real-time",
    query: {
      channelSn: record.channelSn,
    }
  });
}

/**
 * 删除数据
 * @param record 数据行
 */
const handleDelete = (record: any) => {
  operateModalModel.value.visible = true;
  operateModalModel.value.id = record.id;
  operateModalModel.value.title = '删除';
  operateModalModel.value.name = record.channelName;
  operateModalModel.value.type = 1;
}


/**
 * 停用
 * @param record
 */
const handleStopFlag = (record: any) => {
  operateModalModel.value = {
    visible: true,
    type: 0,
    title: record.stopFlag == 0 ? "停用" : "启用",
    id: record.id,
    value: record.stopFlag == 0 ? 1 : 0,
    name: record.channelName
  }

}


/**
 * 删除提示弹框取消
 */
const handleOperateModelCancle = () => {
  operateModalModel.value = generateOperateModalModel();
}

/**
 * 删除提示弹框确认
 */
const handleOperateModelOk = async () => {
  let result: any = {};
  operateModalModel.value.visible = false;
  setLoading(true);
  try {
    if (operateModalModel.value.type == 1) {
      result = await delChannel(operateModalModel.value.id);
    } else {
      result = await changeChannelStatus(operateModalModel.value.id, operateModalModel.value.value);
    }
    notification(result);
    if (result.code == 200) {
      handleOperateModelCancle();
      await fetchData();
    }
  } catch (e) {
    console.error(e);
  } finally {
    setLoading(false);
  }
}

/**
 * 提交表单
 */
const handleSubmitForm = async () => {
  const validate = await formRef.value?.validate();
  if (!validate) {
    formDrawer.value.loading = true;

    try {
      let result: any = {};
      if (formDrawer.value.formModel.id == 0) {
        result = await addChannel(formDrawer.value.formModel);
      } else {
        result = await updateChannel(formDrawer.value.formModel);
      }
      notification(result);
      if (result.code == 200) {
        handleFormCancel();
        await fetchData();
      }
    } catch (e) {
      console.error(e);
    } finally {
      formDrawer.value.loading = false;
    }


  } else {
    formRef.value?.scrollToField(validate[Object.keys(validate)[0]].field);
  }
}

/**
 * 表单取消
 */
const handleFormCancel = () => {
  formDrawer.value = generateFormDrawerModel();
  formRef.value?.resetFields();
}

/**
 * 查询表格数据
 */
const fetchData = async () => {
  setLoading(true);
  try {
    const res = await listChannel({
      ...searchModel.value,
    });
    renderData.value = res.rows;
    pagination.total = res.total;
  } catch (err) {
    // you can report use errorHandler or other
  } finally {
    setLoading(false);
  }
};

/*************************** 方法区域 end ***************************/

onMounted(async () => {
  await fetchData();
})
</script>

<style lang="less" scoped>

.star-from-item {
  :deep(.arco-form-item-label)::before {
    content: '*';
    color: red;
    position: relative;
    left: -2px;
    top: 2px;
    font-weight: bold;
  }
}
</style>