home.js 38.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 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
const trafficOptions = [
    "mall/countData",
    "floor/countData",
    "zone/countData",
    "gate/countData"
]
const faceOptions = [
    "mall/faceSta",
    "floor/faceSta",
    "zone/faceSta",
    "gate/faceSta"
]
// const TAB_API = {
//   featureRevisit: '',
//   featureLibRebuild: [],
// }
new Vue({
    el: "#app",
    data: function() {
        return {
            pickerOpts: {
                disabledDate(time) {
                    return Date.parse(time) > Date.parse(new Date())
                }
            },
            radio: "mall",
            dateFormat: "rerun",
            dateLevelList: [
                {label: 'rerun', name: '数据重跑'},
                {label: 'repair', name: '数据修补'},
                {label: 'revisitFeature', name: '特征重提'},
                {label: 'rebuildFeatureLib', name: '特征库重建'},
                {label: 'rematchPerson', name: '人员重新比对'}
            ],
            UrlType: "trafficRecognition",
            compareType: "custom",
            count: null,
            dateCount: null,
            day: "",
            hour: "",
            min: "",
            startDate: "",
            endDate: "",
            sourceDate: "",
            sourceStartTime: "00:00:00",
            sourceEndTime: "23:59:59",
            aimsDate: "",
            aimsStartTime: "00:00:00",
            aimsEndTime: "23:59:59",
            referenceDate: "",
            repairDate: "",
            accountVal: [],
            mallVal: [],
            mallOpts: [],
            accountId: [],
            accoutOpts: [],
            deviceVal: "",
            gateVal: "",
            channelVal: "",
            showDiv: true,
            loading: "",
            gateOpt: [],
            deviceOpt: [],
            channelOpt: [],
            date: "",
            butShow: false,
            startShow: false,
            tafficShow: false,
            startRange: "0.85",
            endRange: "1.2",
            isMallSelAll: false,
            isAccoutSelAll: false,
            //全选
            checkedTraffic: [],
            checkAllTraffic: false,
            isIndeterminateTraffic: false,
            checkedFace: [],
            checkAllFace: false,
            isIndeterminateFace: false,
            checkTraffic: [
                {
                    name: "",
                    value: "mall/countData"
                },
                {
                    name: "",
                    value: "floor/countData"
                },
                {
                    name: "",
                    value: "zone/countData"
                },
                {
                    name: "",
                    value: "gate/countData"
                }
            ],
            checkFace: [
                {
                    name: "",
                    value: "mall/faceSta"
                },
                {
                    name: "",
                    value: "floor/faceSta"
                },
                {
                    name: "",
                    value: "zone/faceSta"
                },
                {
                    name: "",
                    value: "gate/faceSta"
                }
            ],
            progressName: {
                mallcountData: "商场客流",
                floorcountData: "楼层客流",
                zonecountData: "店铺客流",
                gatecountData: "监控点客流",
                mallfaceSta: "商场人脸",
                floorfaceSta: "楼层人脸",
                zonefaceSta: "店铺人脸",
                gatefaceSta: "监控点人脸"
            },
            startTime: "",
            endTime: "",
            traffStartTime: "00:00:00",
            traffEndTime: "23:59:59",
            webSocketObj: {},
            repairWebSocket: null,
            dateTime: [],
            progressList: [],
            repairProgList: [],
            traProgList: [],
            tipShow: false,
            tipStyle: {},
            lineDate: "",
            lineMallId: "",
            lineMallName: "",
            locationHref: false,
            /// 特征重提
            query: {
                accountVal: [],
                mallVal: [],
                dateVal: null
            },
            featureRevisitType: 0,
            featureLibRebuildType: 1,
            rematchPersonType: 1,
            featureRevisitList: [
                {label: '人脸+全身照特征', value: 0},
                {label: '人脸特征', value: 1},
                {label: '全身照特征', value: 2},
                {label: '店员特征', value: 3}
            ],
            featureLibRebuildList: [
                {label: '店员库重建', value: 1},
                {label: '顾客库重建', value: 2}
            ],
            rematchPersonList: [
                {label: '店员对比', value: 1},
                {label: '顾客对比', value: 2}
            ],
            socket: null,
            results: [],
            startTiming: 0,
            endTiming: 0,
            footerText: ''
        }
    },
    filters: {
        formatTime(val) {
            function autoPrefixZero(num) {
                return num > 10 ? num : '0' + num
            }

            const day = parseInt(val / (24 * 60 * 60 * 1000)) + 1
            const hour = parseInt(val % (24 * 60 * 60 * 1000) / (60 * 60 * 1000))
            const minutes = parseInt(val % (60 * 60 * 1000) / (60 * 1000))
            const seconds = parseInt(val % (60 * 1000) / 1000)
            if (val < 1000 || val < 60 * 1000)
            {
                return `${val % (60 * 1000) / 1000} 秒`
            }
            else if (val < 60 * 60 * 1000)
            {
                return `${autoPrefixZero(minutes)} 分钟 ${autoPrefixZero(seconds)} 秒`
            }
            else if (val < 24 * 60 * 60 * 1000)
            {
                return `${autoPrefixZero(hour)} 小时 ${autoPrefixZero(minutes)} 分钟 ${autoPrefixZero(seconds)} 秒`
            }
            else
            {
                return `${autoPrefixZero(day)}${autoPrefixZero(hour)} 小时 ${autoPrefixZero(minutes)} 分钟 ${autoPrefixZero(seconds)} 秒`
            }
        }
    },
    computed: {
        isResultsShow() {
            return this.dateFormat === 'revisitFeature' ||
                this.dateFormat === 'rebuildFeatureLib' ||
                this.dateFormat === 'rematchPerson'
        },
        isSendDateParam() {
            if (
                (this.dateFormat === 'rebuildFeatureLib'
                    && this.featureLibRebuildType === 1
                ) || (
                    this.dateFormat === 'revisitFeature'
                    && this.featureRevisitType === 3)
            )
            {
                return false
            }
            return true
        },
        totalTime() {
            const {startTiming, endTiming} = this
            return endTiming - startTiming
            // return this.formatDateToStamp(endTiming) - this.formatDateToStamp(startTiming)
        }
    },
    watch: {
        accountVal: {
            handler: function(val) {
                if (val && val.length)
                {
                    this.query.accountVal = val
                }
            },
            deep: true
        },
        mallVal: {
            handler: function(val) {
                if (val && val.length)
                {
                    this.query.mallVal = val
                }
            },
            deep: true
        },
        dateFormat: function(val) {
            var typeHandler = {
                'revisitFeature': this.featureRevisitType,
                'rebuildFeatureLib': this.featureLibRebuildType,
                'rematchPerson': this.rematchPersonType
            }
            this.footerText = val === 'compare' ? '数据对比' : this.dateLevelList.find(item => item.label === val).name
            this.socket && this.socket.close()
            this.results.length && (this.results = [])
            this.startTiming = this.endTiming = 0
            this.query.type = typeof typeHandler[val] === 'undefined'
                ? null
                : typeHandler[val]
        },
        featureRevisitType(val) {
            this.query.type = val
        },
        featureLibRebuildType(val) {
            this.query.type = val
        },
        rematchPersonType(val) {
            this.query.type = val
        }
    },
    created: function() {
        this.locationHref =
            location.href.indexOf("?super") != -1 ? true : false
        this.getAccount()
    },
    mounted: function() {
        this.query.dateVal = this.createDate()
        this.startTime = this.createDate()
        this.endTime = this.createDate()
    },
    methods: {
        createDate() {
            var nowDate = new Date()
            var day = nowDate.getDate()
            var month = nowDate.getMonth() + 1
            var year = nowDate.getFullYear()
            if (month >= 1 && month <= 9)
            {
                month = "0" + month
            }
            if (day >= 0 && day <= 9)
            {
                day = "0" + day
            }
            return year + "-" + month + "-" + day
        },
        getProgressName(val) {
            return this.progressName[val]
        },
        getProgressStyle(stepCount, status, oldStepCount) {
            if (stepCount == "stepType")
            {
                if (status == "gatecountData" || status == "gatefaceSta")
                {
                    return {"margin-left": "448px", "font-size": "18px"}
                }
                else
                {
                    return {"margin-left": "465px", "font-size": "18px"}
                }
            }
            else
            {
                return {
                    width: (stepCount - oldStepCount) * 405 + "px",
                    "background-color": status ? "#409EFF" : "#f56c6c",
                    "margin-left": oldStepCount * 405 + 50 + "px"
                }
            }
        },
        lineOver(tag, dates, mallIds, mallNames) {
            let evt = tag || window.event,
                _top,
                _left
            _top = window.innerHeight - evt.y
            _left = window.innerWidth - evt.x
            this.tipStyle = {
                top: evt.y - 50 + "px",
                left: evt.x + "px"
            }
            this.lineDate = dates
            this.lineMallId = mallIds.join(",")
            this.lineMallName = mallNames
            this.tipShow = true
        },
        lineOut() {
            this.tipShow = false
        },
        handleCheckAllChangeTraffic(val) {
            // console.log('val',val)
            this.checkedTraffic = val ? trafficOptions : []
            // console.log(this.checkedTraffic)
            this.isIndeterminateTraffic = false
        },
        handleCheckAllChangeFace(val) {
            // console.log('val',val)
            this.checkedFace = val ? faceOptions : []
            // console.log(this.checkedFace)
            this.isIndeterminateFace = false
        },
        handleCheckedCitiesChangeTraffic(value) {
            // console.log(this.checkedTraffic)
            let checkedCount = value.length
            this.checkAllTraffic = checkedCount === this.checkTraffic.length
            this.isIndeterminateTraffic =
                checkedCount > 0 && checkedCount < this.checkTraffic.length
        },
        handleCheckedCitiesChangeFace(value) {
            // console.log(this.checkedFace)
            let checkedCount = value.length
            this.checkAllFace = checkedCount === this.checkFace.length
            this.isIndeterminateFace =
                checkedCount > 0 && checkedCount < this.checkFace.length
        },
        accountchange(linkGate) {
            this.isAccoutSelAll = this.isAccoutSelAll
                ? this.accountVal.length < this.accoutOpts.length
                    ? false
                    : true
                : this.accountVal.length < this.accoutOpts.length
                    ? false
                    : true
            if (this.accountVal.length > 0)
            {
                this.getMall(linkGate)
            }
        },
        mallchange(linkGate) {
            this.isMallSelAll = this.isMallSelAll
                ? this.mallVal.length < this.mallOpts.length
                    ? false
                    : true
                : this.mallVal.length < this.mallOpts.length
                    ? false
                    : true
            if (linkGate)
            {
                this.getGate()
            }
        },
        selAllHandle(level) {
            if (level == "accout")
            {
                if (this.isAccoutSelAll)
                {
                    this.accountVal = []
                    this.isAccoutSelAll = false
                    this.getMall()
                }
                else
                {
                    this.accountVal = []
                    this.accoutOpts.forEach(item => {
                        this.accountVal.push(item.id)
                    })
                    this.isAccoutSelAll = true
                    this.getMall()
                }
            }
            else
            {
                if (this.isMallSelAll)
                {
                    this.mallVal = []
                    this.isMallSelAll = false
                }
                else
                {
                    this.mallVal = []
                    this.mallOpts.forEach(item => {
                        this.mallVal.push(item.id)
                    })
                    this.isMallSelAll = true
                }
            }
        },
        getAccount: function() {
            var _this = this
            _this.accoutOpts = []
            get(window._CONF_.apiUrl + API.Accounts).then(function(data) {
                _this.accoutOpts = data
                if (_this.accoutOpts.length > 0)
                {
                    _this.accountVal = [_this.accoutOpts[0].id]
                }
                _this.getMall()
            }).catch(err => {
                console.log('err', err)
            })
        },
        getMall: function() {
            var _this = this
            _this.mallOpts = []
            get(window._CONF_.apiUrl + API.Malls, {
                accountIds: _this.accountVal.join(",")
            }).then(function(data) {
                _this.mallOpts = data
                if (_this.mallOpts.length > 0)
                {
                    _this.mallVal = [_this.mallOpts[0].id]
                }
                _this.isMallSelAll =
                    _this.mallVal.length == _this.mallOpts.length ? true : false
            })
        },
        getGate: function() {
            var _this = this
            get(window._CONF_.apiUrl + API.Gates, {
                accountIds: _this.accountVal.join(","),
                mallIds: _this.mallVal.join(',')
            }).then(function(data) {
                _this.gateOpt = data
                _this.gateVal = _this.gateOpt[0].id
                // _this.getDevice()
                _this.getChannel()
            })
        },
        getDevice: function() {
            var _this = this
            get(window._CONF_.apiUrl + API.Devices, {
                // accountIds: _this.accountVal.join(","),
                // mallIds: _this.mallVal.join(','),
                gateId: this.gateVal
            }).then(function(data) {
                _this.deviceOpt = []
                _this.deviceVal = ""
                for (var i = 0; i < data.length; i++)
                {
                    var temp = {}
                    temp.name = data[i]
                    temp.value = data[i]
                    temp.id = i
                    _this.deviceOpt.push(temp)
                }
                _this.deviceVal = _this.deviceOpt[0].value
            })
        },
        dateLevel: function() {
            if (this.dateFormat == "repair")
            {
                this.getGate()
            }
            else
            {
                // this.getMall();
            }
        },
        getLevel: function() {
        },
        getNumber() {
            this.repairProgList = []
            if (this.UrlType == "trafficRecognition")
            {
                // this.getChannel()
            }
            else
            {
                // this.getChannel()
                // this.getDevice()
            }
        },
        getChannel() {
            var _this = this
            get(window._CONF_.apiUrl + API.Channels, {
                // accountIds: _this.accountVal.join(","),
                // mallIds: _this.mallVal.join(','),
                gateId: this.gateVal
            }).then(function(data) {
                _this.channelOpt = []
                for (var i = 0; i < data.length; i++)
                {
                    var temp = {}
                    temp.name = data[i]
                    temp.value = data[i]
                    temp.id = i
                    _this.channelOpt.push(temp)
                }
                _this.channelVal =
                    _this.channelOpt.length > 0 ? _this.channelOpt[0].value : ""
            })
        },
        clearDiv() {
            $("#showDiv").empty()
        },
        startData: function() {
            this.progressList = []
            if (this.webSocketObj)
            {
                for (var key in this.webSocketObj)
                {
                    this.webSocketObj[key].close()
                }
            }
            let params = {},
                startDate = "",
                endDate = ""
            params = {
                startDate: this.startTime + " 00:00:00",
                endDate: this.endTime + " 00:00:00",
                mallIds: this.mallVal,
                scheduleType: "",
                mark: Date.parse(new Date())
            }
            this.checkedTraffic.forEach((item, index) => {
                let _scheduleType = ""
                let websocket = item.split("/")
                websocket.forEach(item1 => {
                    _scheduleType += item1
                })
                params.scheduleType = _scheduleType
                this.openWebSock(_scheduleType, item, params)
            })
            this.checkedFace.forEach((item, index) => {
                let _scheduleType = ""
                let websocket = item.split("/")
                websocket.forEach(item1 => {
                    _scheduleType += item1
                })
                params.scheduleType = _scheduleType
                this.openWebSock(_scheduleType, item, params)
            })
        },
        openWebSock(wsUrl, url, params, processKey = 'progressList') {
            // browser 兼容
            // var wsHost =  window.location.host;
            var socketUrl = ""
            var webSock_Url = window._CONF_.webSockUrl || window.location.host
            var obj = {
                stepList: []
            }
            obj.stepType = wsUrl
            obj.mark = params.mark
            if (!webSockUrl)
            {
                webSock = window.location.host
            }
            socketUrl = "ws://" + webSock_Url + WSAPI.RecalSchedule + wsUrl
            this[processKey].push(obj)
            var _this = this
            if ("WebSocket" in window)
            {
                _this.webSocketObj[wsUrl] = new WebSocket(socketUrl)
            }
            else if ("MozWebSocket" in window)
            {
                _this.webSocketObj[wsUrl] = new MozWebSocket(socketUrl)
            }
            else
            {
                _this.webSocketObj[wsUrl] = new SockJS(socketUrl)
            }
            var param = JSON.parse(JSON.stringify(params))
            try
            {
                _this.webSocketObj[wsUrl].onopen = function(event) {
                    console.log("WebSocket:已连接")
                    _this.returnData(url, param)
                }
                _this.webSocketObj[wsUrl].onclosed = function() {
                    console.log("WebSocket关闭")
                }

                _this.webSocketObj[wsUrl].onmessage = function(evt) {
                    var msg = JSON.parse(evt.data)
                    _this[processKey].forEach((item, index) => {
                        if (
                            item.stepType == msg.scheduleType &&
                            item.mark == msg.mark
                        )
                        {
                            var stepObj = {}
                            stepObj.dates = msg.dates
                            stepObj.mallIds = msg.mallIds
                            stepObj.mallNames = msg.mallNames
                            stepObj.status = msg.status
                            stepObj.stepCount = msg.stepCount
                            item.stepList.push(stepObj)
                            item.precentsucess = msg.stepCount
                                ? Math.floor(msg.stepCount * 100)
                                : 0
                        }
                    })
                    // console.log('list',_this[processKey])
                }
                _this.webSocketObj[wsUrl].onerror = function(event) {
                    console.log("设备WebSocket:发生错误 ")
                    console.log(event)
                }
            }
            catch (error)
            {
            }
        },
        returnData: function(urls, params) {
            // console.log(urls,params)
            var _this = this
            post(window._CONF_.apiUrl + urls, JSON.stringify(params)).then(function(data) {
                if (data)
                {
                    _this.loading = ""
                    _this.showDiv = true
                    _this.renderResultToHtml(data)
                }
            }).catch(function(err) {
                _this.loading = ""
                alert("Sorry, The requested property could not be found.")
            })
        },
        getDateCount: function() {
            var _this = this
            this.butShow = true
            var params = {
                startTime: this.sourceDate + " " + this.sourceStartTime,
                endTime: this.sourceDate + " " + this.sourceEndTime,
                channelSerialnum: this.channelVal
            }
            get(window._CONF_.apiUrl + API.FaceRecognitionsCount, params).then(function(data) {
                _this.butShow = false
                _this.dateCount = data
            }).catch(function(err) {
                _this.butShow = false
                console.log(err)
            })
            // $.ajax({
            //   type: "get",
            //   dataType: "json",
            //   async: true,
            //   url: window._CONF_.apiUrl + urls,
            //   headers: {
            //     Authorization: Cookies.get('atoken')
            //   },
            //   data: params,
            //   success: function(data) {
            //     _this.butShow = false;
            //     _this.dateCount = data;
            //   },
            //   error: function(res) {
            //     _this.butShow = false;
            //     console.log(res);
            //   }
            // });
        },
        repairParams: function(type) {
            this.repairProgList = []
            if (this.repairWebSocket)
            {
                this.repairWebSocket.close()
            }
            var url = "",
                params = {}
            if (type == "face")
            {
                this.startShow = true
                setTimeout(() => {
                    this.startShow = false
                }, 3000)
                var url = API.SimulationFaceRecognition
                var params = {
                    sourceStartDate: this.sourceDate + " " + this.sourceStartTime,
                    sourceEndDate: this.sourceDate + " " + this.sourceEndTime,
                    targetStartDate: this.aimsDate + " " + this.aimsStartTime,
                    targetEndDate: this.aimsDate + " " + this.aimsEndTime,
                    channelSerialnum: this.channelVal,
                    count: Number(this.count),
                    scheduleType: "simulationfaceRecognition",
                    mark: Date.parse(new Date())
                }
            }
            else
            {
                this.tafficShow = true
                setTimeout(() => {
                    this.tafficShow = false
                }, 3000)
                url = API.SimulationCountData
                params = {
                    sourceStartDate: this.referenceDate + " " + this.traffStartTime,
                    sourceEndDate: this.referenceDate + " " + this.traffEndTime,
                    targetStartDate: this.repairDate + " " + this.traffStartTime,
                    targetEndDate: this.repairDate + " " + this.traffEndTime,
                    channelSerialnum: this.channelVal,
                    minFactor: this.startRange,
                    maxFactor: this.endRange,
                    scheduleType: "simulationcountData",
                    mark: Date.parse(new Date())
                }
            }
            this.openFaceTraffWebSock(url, params)
        },
        compareParams: function(type) {
            params = {
                startDate: this.startTime + " 00:00:00",
                endDate: this.endTime + " 00:00:00",
                mallIds: this.mallVal,
                scheduleType: "",
                mark: Date.parse(new Date())
            }
            var url = API.Mall + this.compareType
            this.returnData(url, params)
        },
        openFaceTraffWebSock(url, params) {
            // browser 兼容
            // var wsHost =  window.location.host;
            var socketUrl = ""
            var webSock_Url = window._CONF_.webSockUrl || window.location.host
            var obj = {
                stepList: []
            }
            obj.stepType = params.scheduleType
            obj.mark = params.mark
            socketUrl =
                "ws://" + webSock_Url + WSAPI.RecalSchedule + params.scheduleType
            this.repairProgList.push(obj)
            var _this = this
            if ("WebSocket" in window)
            {
                _this.repairWebSocket = new WebSocket(socketUrl)
            }
            else if ("MozWebSocket" in window)
            {
                _this.repairWebSocket = new MozWebSocket(socketUrl)
            }
            else
            {
                _this.repairWebSocket = new SockJS(socketUrl)
            }
            var param = JSON.parse(JSON.stringify(params))
            try
            {
                _this.repairWebSocket.onopen = function(event) {
                    console.log("WebSocket:已连接")
                    _this.repairData(url, params)
                }
                _this.repairWebSocket.onclosed = function() {
                    console.log("WebSocket关闭")
                }

                _this.repairWebSocket.onmessage = function(evt) {
                    var msg = JSON.parse(evt.data)
                    _this.repairProgList.forEach((item, index) => {
                        if (
                            item.stepType == msg.scheduleType &&
                            item.mark == msg.mark
                        )
                        {
                            var stepObj = {}
                            stepObj.counttime = msg.counttime
                            stepObj.serialnum = msg.serialnum
                            stepObj.status = msg.status
                            stepObj.stepCount = msg.stepCount
                            item.stepList.push(stepObj)
                            item.precentsucess = msg.stepCount
                                ? Math.floor(msg.stepCount * 100)
                                : 0
                        }
                    })
                }
                _this.webSocketObj[wsUrl].onerror = function(event) {
                    console.log("设备WebSocket:发生错误 ")
                    console.log(event)
                }
            }
            catch (error)
            {
            }
        },
        repairData(url, params) {
            let that = this
            post(window._CONF_.apiUrl + url, JSON.stringify(params)).then(function(data) {
                if (data)
                {
                    that.renderResultToHtml(data)
                }
            })
        },
        repairPreview: function() {
            var params = {
                sourceStartDate: this.referenceDate + " " + this.traffStartTime,
                sourceEndDate: this.referenceDate + " " + this.traffEndTime,
                targetStartDate: this.repairDate + " " + this.traffStartTime,
                targetEndDate: this.repairDate + " " + this.traffEndTime,
                channelSerialnum: this.channelVal,
                minFactor: this.startRange,
                maxFactor: this.endRange,
                scheduleType: "simulationcountData",
                mark: Date.parse(new Date())
            }
            let that = this
            post(window._CONF_.apiUrl + API.PreviewCountData, JSON.stringify(params)).then(function(data) {
                if (data)
                {
                    that.renderResultToHtml(data, true)
                }
            })
        },
        renderResultToHtml(data, hasSccessDetail) {
            let text = "本次共执行job " +
                data.total +
                " 个,成功 " +
                data.success +
                " 个,失败 " +
                data.failed +
                " 个.</br>"
            if (data.failedJob && data.failedJob.length > 0)
            {
                text += "-----失败job详情-----</br>"
                text += data.failedJob.join("</br>")
                if (data.data)
                {
                    text += "</br>" + data.data
                }
            }
            if (data.successJob && data.successJob.length > 0)
            {
                text += "-----成功job详情-----</br>"
                text += data.successJob.join("</br>")
                if (hasSccessDetail)
                {
                    if (data.data)
                    {
                        console.log(data.data)
                        data.data.forEach(item => {
                            text +=
                                "</br>" +
                                " 设备序列号: " +
                                item.deviceSerialnum +
                                " 时间: " +
                                item.counttime +
                                " 进客流: " +
                                item.innum +
                                " 出客流: " +
                                item.outnum
                        })
                    }
                }
            }
            text += "</br>-----------------------------------------------"
            text += "</br>"
            text += "</br>"
            text += "</br>"
            $("#showDiv").append(text)
        },
        onSearchClick: function() {
            /////////////////////////////特征重提////////////////////////////////////////////////
            // '/mall/feature'
            // startDate,endDate,mallIds,scheduleType,featureType
            // featureType==0 提取人体+人脸;featureType==1 提取人脸特征;featureType==2提取人体特征
            /////////////////////////////特征库重建////////////////////////////////////////////////
            // 重新建立顾客池    /mall/customPool
            // 参数 mallIds,startDate,endDate,scheduleType
            // 重建建立店员特征池 /mall/staffPool
            // 参数 mallIds,scheduleType
            /////////////////////////////人员重新对比////////////////////////////////////////////////
            // 重新匹配顾客    /mall/custom
            // 参数 mallIds,startDate,endDate,scheduleType
            // 店员重新比对 /mall/staff
            // 参数 mallIds,startDate,endDate,scheduleType
            if (this.socket)
            {
                this.socket.close()
                this.socket = null
            }
            this.results = []
            this.startTiming = 0
            this.endTiming = 0
            const TAB_API = {
                revisitFeature: (val) => {
                    return val === 3 ? API.mallStaffFeature : API.MallFeature
                },
                rebuildFeatureLib: (val) => {
                    return val === 1 ? API.MallStaffPool : API.MallCustomPool
                },
                rematchPerson: (val) => {
                    return val === 1 ? API.MallStaff : API.MallCustom
                }
            }
            const {dateFormat, query, isSendDateParam} = this
            const {
                dateVal, mallVal, type
            } = query
            var urlPath = TAB_API[dateFormat](type)
            var scheduleType = dateFormat + type
            var parameter = {
                // startDate: dateVal ? dateVal + ' 00:00:00' : null,
                // endDate: dateVal ? dateVal + ' 23:59:59' : null,
                mallIds: mallVal || null,
                scheduleType: scheduleType,
                // featureType: dateFormat === 'revisitFeature' ? type : null
            }
            if (isSendDateParam)
            {
                parameter.startDate = dateVal + ' 00:00:00'
                parameter.endDate = dateVal + ' 23:59:59'
            }
            if (dateFormat === 'revisitFeature')
            {
                parameter.featureType = type
            }
            var socketParameter = {
                scheduleType: scheduleType,
                // callback: 'fetchApi',
                callbackUrlPath: urlPath,
                callbackParam: parameter
            }
            this.onSocketConnect(socketParameter)
        },
        /**
         * websocket 连接
         * @param {string} scheduleType
         * @param {string} wsUrl
         * @param {string} callbackUrlPath
         * @param {object} callbackParam
         */
        onSocketConnect({scheduleType, callbackUrlPath, callbackParam}) {
            var self = this,
                wsUrl = window._CONF_.webSockUrl || window.location.host,
                socketUrl = "ws://" + wsUrl + WSAPI.RecalSchedule + scheduleType
            if ("WebSocket" in window)
            {
                self.socket = new WebSocket(socketUrl)
            }
            else if ("MozWebSocket" in window)
            {
                self.socket = new MozWebSocket(socketUrl)
            }
            else
            {
                self.socket = new SockJS(socketUrl)
            }
            try
            {
                self.socket.onopen = function(ev) {
                    self.startTiming = +new Date()
                    self.fetchApi(callbackUrlPath, callbackParam)
                }
                self.socket.onclosed = function() {
                    console.log('socket:onclose')
                }

                self.socket.onmessage = function(ev) {
                    var msg = JSON.parse(ev.data)
                    console.log('[onmessage]:', msg)
                    self.dealMessage(msg)
                    if (msg.stepCount === 1 && msg.counter.dateMallNum === msg.counter.totalMallDateProduct)
                    {
                        self.endTiming = +new Date()
                        self.socket.close()
                    }
                }
                self.socket.onerror = function(ev) {
                    console.log("设备WebSocket:发生错误 ")
                    console.log(ev)
                }
            }
            catch (error)
            {
                console.log('onSocketConnect:', error)
            }
        },
        fetchApi(urlPath, parameter) {
            const {
                dateVal, mallVal, type
            } = this.query
            var self = this
            post(window._CONF_.apiUrl + urlPath, JSON.stringify(parameter)).then(function(res) {
                console.log(res)
            })
        },
        dealMessage(msg) {
            // scheduleType
            const {dates, mallIds, mallNames, status, stepCount, scheduleType, counter} = msg
            var self = this
            var resObj = {}
            resObj.dates = dates
            resObj.mallIds = mallIds
            resObj.mallNames = mallNames
            resObj.status = status
            resObj.progress = self.floatToPercent(stepCount)
            resObj.totalNum = 0
            resObj.totalPage = 0
            resObj.current = 0
            resObj.curPageSize = 0
            resObj.currentPage = 0
            resObj.scheduleType = scheduleType
            if (counter)
            {
                // dataNum dateMallNum step totalData totalDate totalMall totalMallDateProduct allDataCount
                resObj.totalNum = counter.allDataCount
                resObj.totalPage = counter.totalMallDateProduct
                resObj.current = counter.dataNum
                resObj.curPageSize = counter.totalData
                resObj.currentPage = counter.dateMallNum
            }
            if (self.results.length)
            {
                const isSameScheduleType = self.results.some(item => item.scheduleType === scheduleType)
                isSameScheduleType
                    ? self.results.forEach(item => {
                        //
                        item.progress = self.floatToPercent(stepCount)
                        if (counter)
                        {
                            item.totalNum = counter.allDataCount
                            item.totalPage = counter.totalMallDateProduct
                            item.current = counter.dataNum
                            item.curPageSize = counter.totalData
                            item.currentPage = counter.dateMallNum
                        }
                    })
                    : self.results.push(resObj)
                resObj = {}
            }
            else
            {
                self.results.push(resObj)
                resObj = {}
            }
            // 滚动至底部
            // this.$nextTick(() => {
            //   this.$refs.scrollbarRef.wrap.scrollTop = this.$refs.scrollbarRef.wrap.scrollHeight
            // })
        },
        formatDateToStamp(date) {
            if (!date)
            {
                return false
            }
            typeof date === 'string' && (date = new Date(date.replace(/-/g, '/')))
            return date.getTime()
        },
        floatToPercent(floatNum) {
            if (!floatNum)
            {
                return 0
            }
            var formatNum = Math.floor(floatNum * 100)
            return formatNum >= 100 ? 100 : formatNum
        },
        onClearClick() {
            if (this.dateFormat === 'revisitFeature' ||
                this.dateFormat === 'rebuildFeatureLib' ||
                this.dateFormat === 'rematchPerson')
            {
                this.startTiming = 0
                this.endTiming = 0
                this.results = []
            }
            // else {
            document.getElementById('showDiv').innerHTML = ''
            // }
        }
    }
});