PassengerFlowData.vue 9.5 KB
<template>
    <a-form :model="queryForm" layout="inline">
        <a-form-item label="集团:">
            <a-select v-model:value="queryForm.account_id"
                      style="width: 200px"
                      mode="multiple"
                      :maxTagCount="1"
                      @change="onAccountChange"
            >
                <a-select-option
                    v-for="item in accountList"
                    :value="item.id"
                >
                    {{ item.name }}
                </a-select-option>
            </a-select>
        </a-form-item>
        <a-form-item label="广场:">
            <a-select v-model:value="queryForm.plaza_id"
                      style="width: 200px"
                      mode="multiple"
                      :maxTagCount="1"
                      @change="onPlazaChange"
            >
                <a-select-option
                    v-for="item in plazaList"
                    :value="item.id">
                    {{ item.name }}
                </a-select-option>
            </a-select>
        </a-form-item>
        <a-form-item label="监控点:">
            <a-select v-model:value="queryForm.gate_id"
                      style="width: 200px"
                      mode="multiple"
                      :maxTagCount="1">
                <a-select-option
                    v-for="item in gateList"
                    :value="item.id"
                >
                    {{ item.name }}
                </a-select-option>
            </a-select>
        </a-form-item>
        <a-form-item label="开始日期:">
            <a-date-picker v-model:value="queryForm.startDate"/>
        </a-form-item>
        <a-form-item label="结束日期:">
            <a-date-picker v-model:value="queryForm.endDate"/>
        </a-form-item>
        <a-form-item>
            <a-button type="primary" @click="confirmSearch">开始</a-button>
        </a-form-item>
    </a-form>

</template>

<script>
import {reactive, ref, toRaw} from 'vue'
import moment from 'moment'
import snapshotRecordApi from '@/views/SnapshotCluster/SnapshotRecord/SnapshotRecordApi'
import {isArray} from '@/PublicUtil/Judgment'
import {formatDate, formatTime} from '@/PublicUtil/PublicUtil'
import InformationDisplay from '@/component/InformationDisplay/InformationDisplay'
import dataRerunApi from '@/views/DataRerun/DataRerunApi'
import passengerFlowDataApi from '@/views/DataRepair/PassengerFlowData/PassengerFlowData'

export default {
    components: {
        InformationDisplay,
    },
    setup() {
        const resultList = ref([])
        const informationList = ref([])
        // sequence
        const accountList = ref([])
        const plazaList = ref([])
        const zoneList = ref([])
        const gateList = ref([])
        let webSocketMap = {
            mallcountData: undefined,
            floorcountData: undefined,
            zonecountData: undefined,
            gatecountData: undefined,
            mallfaceSta: undefined,
            floorfaceSta: undefined,
            zonefaceSta: undefined,
            gatefaceSta: undefined,
        }

        // mapping
        const progressMap = {
            mallcountData: "商场客流",
            floorcountData: "楼层客流",
            zonecountData: "店铺客流",
            gatecountData: "监控点客流",
            mallfaceSta: "商场人脸",
            floorfaceSta: "楼层人脸",
            zonefaceSta: "店铺人脸",
            gatefaceSta: "监控点人脸"
        }

        const queryForm = reactive(
            {
                account_id: [],
                plaza_id: [],
                gate_id: [],
                channel: [],
                startDate: moment(moment().format('YYYY-MM-DD'), 'YYYY-MM-DD'),
                endDate: moment(moment().format('YYYY-MM-DD'), 'YYYY-MM-DD'),
            }
        )

        const onAccountChange = function() {
            getPlazaList()
        }

        const onPlazaChange = function() {
            getGateList()
        }

        const getGateList = function() {
            queryForm.gate_id = []
            gateList.value = []
            passengerFlowDataApi.getGateList(
                {
                    accountIds: queryForm.account_id.toString(),
                    mallIds: queryForm.plaza_id.toString(),
                }
            ).then(
                (r) => {
                    if (isArray(r))
                    {
                        gateList.value = r
                    }
                }
            )
        }

        const getPlazaList = function() {
            queryForm.plaza_id = []
            plazaList.value = []
            snapshotRecordApi.getPlazaList(
                {
                    account_id: queryForm.account_id.toString()
                }
            ).then(
                (r) => {
                    if (isArray(r))
                    {
                        plazaList.value = r
                    }
                }
            )
        }

        const getAccountList = function() {
            queryForm.account_id = []
            accountList.value = []
            snapshotRecordApi.getAccountList().then(
                (r) => {
                    if (isArray(r))
                    {
                        accountList.value = r
                    }
                }
            )
        }

        const floatToPercent = function(floatNum) {
            if (!floatNum)
            {
                return 0
            }
            let formatNum = Math.floor(floatNum * 100)
            return formatNum >= 100 ? 100 : formatNum
        }

        const dealMessage = function(message) {
            // scheduleType
            const {dates, mallIds, mallNames, status, stepCount, scheduleType, counter} = message
            let resObj = {}
            resObj.dates = dates
            resObj.mallIds = mallIds
            resObj.mallNames = mallNames
            resObj.status = status
            resObj.progress = 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 (resultList.value.length)
            {
                const isSameScheduleType = resultList.value.some(item => item.scheduleType === scheduleType)
                isSameScheduleType
                    ? resultList.value.forEach(item => {
                        //
                        item.progress = floatToPercent(stepCount)
                        if (counter)
                        {
                            item.totalNum = counter.allDataCount
                            item.totalPage = counter.totalMallDateProduct
                            item.current = counter.dataNum
                            item.curPageSize = counter.totalData
                            item.currentPage = counter.dateMallNum
                        }
                    })
                    : resultList.value.push(resObj)
                resObj = {}
            }
            else
            {
                resultList.value.push(resObj)
                resObj = {}
            }
        }

        const initializeWebSocket = function(scheduleType) {
            if (webSocketMap[scheduleType] !== undefined)
            {
                webSocketMap[scheduleType].close()
            }

            webSocketMap[scheduleType] = new WebSocket(`ws://store.keliuyun.com:9998/recal/schedule/${scheduleType}`)

            webSocketMap[scheduleType].onopen = () => {
                queryData(scheduleType)
            }

            webSocketMap[scheduleType].onmessage = function(event) {
                let message = JSON.parse(event.data)
                dealMessage(message)
                if (message.stepCount === 1)
                {
                    webSocketMap[scheduleType].close()
                }
            }
        }

        const queryData = function(scheduleType) {
            const rawData = toRaw(queryForm)
            const data = {
                mallIds: rawData.plaza_id,
                scheduleType: scheduleType,
                startDate: formatDate(rawData.startDate) + ' ' + '00:00:00',
                endDate: formatDate(rawData.endDate) + ' ' + '00:00:00',
            }
            dataRerunApi.getResult(data, scheduleType).then(
                (r) => {
                    informationList.value.push(r)
                }
            )
        }

        const confirmSearch = function() {
            passengerFlowDataApi.preview()
        }

        const __main = function() {
            getAccountList()
        }

        __main()

        return {
            // sequence
            accountList,
            plazaList,
            zoneList,
            gateList,
            resultList,
            informationList,
            // mapping
            progressMap,
            queryForm,
            onAccountChange,
            initializeWebSocket,
            confirmSearch,
            onPlazaChange,
        }
    }
}
</script>

<style lang="less" scoped>
@import "./PassengerFlowData.less";
</style>