123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- <template>
- <div class="history-table" v-if="loading">
- <BasicTable ref="historyTable" @register="registerTable" >
- <template #bodyCell="{ column, record }">
- <slot name="filterCell" v-bind="{ column, record }"></slot>
- </template>
- </BasicTable>
- </div>
- </template>
- <script lang="ts" name="system-user" setup>
- //ts语法
- import { watchEffect, ref, watch, defineExpose, inject } from 'vue';
- import { FormSchema } from '/@/components/Form/index';
- import { BasicTable } from '/@/components/Table';
- import { useListPage } from '/@/hooks/system/useListPage';
- import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
- import { defHttp } from '/@/utils/http/axios';
- import dayjs from 'dayjs';
- import { getAutoScrollContainer } from '/@/utils/common/compUtils';
- import { onMounted } from 'vue';
- const globalConfig = inject('globalConfig');
-
- const historyTable = ref();
- const dataSource = ref([])
- const loading = ref(false)
- const list = (params) => {
- if(globalConfig.History_Type == 'vent') {
- return defHttp.get({ url: '/safety/ventanalyMonitorData/list', params })
- } else {
- return defHttp.post({ url: '/ventanaly-device/history/getHistoryData', params })
- }
- };
- const emit = defineEmits(['change']);
- const props = defineProps({
- columnsType: {
- type: String,
- },
- columns: {
- type: Array,
- // required: true,
- default: () => [],
- },
- deviceType: {
- type: String,
- required: true,
- },
- deviceListApi: {
- type: Function,
- },
- designScope: {
- type: String,
- },
- sysId: {
- type: String,
- },
- scroll: {
- type: Object,
- default: { y: 0 }
- },
- formSchemas: {
- type: Array<FormSchema>,
- default: () => []
- }
- });
- const historyType = ref('')
- const columns = ref([])
- const tableScroll = props.scroll.y ? ref({ y: props.scroll.y - 100 }) : ref({})
- let deviceOptions = <any[]>[]
- let deviceList = <any[]>[]
- watch(
- () => {
- return props.columnsType;
- },
- (newVal) => {
- if (!newVal) return
- if(historyTable.value) getForm().resetFields()
- const column = getTableHeaderColumns(newVal.includes('_history') ? newVal : newVal + '_history')
- if (column && column.length < 1) {
- const arr = newVal.split('_')
- console.log('历史记录列表表头------------>', arr[0] + '_monitor')
- columns.value = getTableHeaderColumns(arr[0] + '_history');
- } else {
- columns.value = column
- }
- if(historyTable.value) reload()
- },
- {
- immediate: true
- }
- );
- watch(historyType, (type) => {
- if (!type) return
- // if (historyTable.value) getForm().resetFields()
- const column = getTableHeaderColumns(type.includes('_history') ? type : type + '_history')
- if (column && column.length < 1) {
- const arr = type.split('_')
- columns.value = getTableHeaderColumns(arr[0] + '_history');
- } else {
- columns.value = column
- }
- setColumns(columns.value)
- })
- watch(() => props.scroll.y, (newVal) => {
- if(newVal){
- tableScroll.value = {y: newVal - 100 }
- }else{
- tableScroll.value = {}
- }
- })
- async function getDeviceList() {
- let result;
- if(globalConfig.History_Type == 'vent'){
- result = await defHttp.get({ url: '/safety/ventanalyManageSystem/linkdevicelist', params: { sysId: props.sysId, deviceType: props.deviceType } })
- }else {
- result = await defHttp.get({ url: '/safety/ventanalyManageSystem/linkdevicelist', params: { sysId: props.sysId, deviceType: props.deviceType.startsWith('vehicle') ? 'location_normal' : props.deviceType } })
- }
- if(result){
- deviceOptions = []
- deviceOptions = result.map((item) => {
- return {label: item['strinstallpos'], value: item['id'], strtype: item['strtype'], strinstallpos: item['strinstallpos'], devicekind: item['devicekind'] }
- // return { label: item['strname'], value: item['id']}
- })
-
- }
- }
-
- await getDeviceList()
- loading.value = true
- // 列表页面公共参数、方法
- const { tableContext } = useListPage(
- globalConfig.History_Type == 'vent' ? {
- tableProps: {
- api: list,
- columns: props.columnsType ? columns : (props.columns as any[]),
- canResize: true,
- showTableSetting: false,
- showActionColumn: false,
- bordered: false,
- size: 'small',
- scroll: tableScroll,
- showIndexColumn: true,
- formConfig: {
- labelAlign: 'left',
- showAdvancedButton: false,
- baseColProps: {
- // offset: 0.5,
- xs: 24,
- sm: 24,
- md: 24,
- lg: 9,
- xl: 7,
- xxl: 4,
- },
- schemas: props.formSchemas.length > 0 ? props.formSchemas : [
- {
- label: '查询日期',
- field: 'tData',
- component: 'DatePicker',
- defaultValue: dayjs(),
- colProps: {
- span: 4,
- },
- componentProps: {
- valueFormat: 'YYYY-MM-DD',
- },
- },
- {
- label: '时间区间',
- field: 'tickectDate',
- component: 'TimeRangePicker',
- defaultValue: [dayjs().startOf('date').format('HH:mm:ss'), dayjs().format('HH:mm:ss')],
- componentProps: {
- placement: 'topLeft',
- placeholder: ['开始时间', '结束时间'],
- valueFormat: 'HH:mm:ss',
- },
- colProps: {
- span: 4,
- },
- },
- {
- label: '查询设备',
- field: 'gdeviceid',
- component: 'Select',
- defaultValue: deviceOptions[0] ? deviceOptions[0]['value'] : '',
- required: true,
- // componentProps: ({ formModel }) => {
- // return {
- // options: deviceOptions.value,
- // // api: () => defHttp.get({ url: '/safety/ventanalyManageSystem/linkdevicelist', params: { sysId: props.sysId, deviceType: props.deviceType } }),
- // // resultField: 'result',
- // // labelField: 'strinstallpos',
- // // valueField: 'id',
- // // onChange: (e, option) => {
- // // if (option && (option['strtype'] || option['devicekind'])) historyType.value = option['strtype'] || option['devicekind']
- // // },
- // }
- // },
- componentProps: {
- options: deviceOptions,
- // api: () => defHttp.get({ url: '/safety/ventanalyManageSystem/linkdevicelist', params: { sysId: props.sysId, deviceType: props.deviceType } }),
- // // resultField: 'result',
- // labelField: 'strinstallpos',
- // valueField: 'id',
- onChange: (e, option) => {
- if (option && (option['strinstallpos'] || option['strtype'] || option['devicekind'])) historyType.value = option['strtype'] || option['devicekind']
- },
- },
- colProps: {
- span: 4,
- },
- },
- {
- label: '间隔时间',
- field: 'skip',
- component: 'Select',
- defaultValue: 5,
- componentProps: {
- options: [
- {
- label: '5秒',
- value: '1',
- },
- {
- label: '10秒',
- value: '2',
- },
- {
- label: '30秒',
- value: '3',
- },
- {
- label: '1分钟',
- value: '4',
- },
- {
- label: '5分钟',
- value: '5',
- },
- {
- label: '10分钟',
- value: '6',
- },
- {
- label: '30分钟',
- value: '7',
- },
- {
- label: '1小时',
- value: '8',
- },
- ],
- },
- colProps: {
- span: 4,
- },
- },
- ],
- fieldMapToTime: [['tickectDate', ['ttime_begin', 'ttime_end'], '']],
- },
- fetchSetting: {
- listField: 'datalist',
- totalField: 'datalist.total',
- },
- pagination: {
- current: 1,
- pageSize: 10,
- pageSizeOptions: ['10', '30', '50', '100'],
- showQuickJumper: false
- },
- beforeFetch(params) {
- params.strtype = props.deviceType + '*';
- debugger;
- if(props.sysId){
- params.sysId = props.sysId;
- }
- },
- afterFetch(result) {
- const resultItems = result['records']
- resultItems.map((item) => {
- Object.assign(item, item['readData']);
- });
- console.log('result---------------->', result)
- return resultItems;
- },
- },
- }: {
- tableProps: {
- api: list,
- columns: props.columnsType ? columns : (props.columns as any[]),
- canResize: true,
- showTableSetting: false,
- showActionColumn: false,
- bordered: false,
- size: 'small',
- scroll: tableScroll,
- showIndexColumn: true,
- formConfig: {
- labelAlign: 'left',
- showAdvancedButton: false,
- // autoAdvancedCol: 2,
- baseColProps: {
- // offset: 0.5,
- xs: 24,
- sm: 24,
- md: 24,
- lg: 9,
- xl: 7,
- xxl: 4,
- },
- schemas: props.formSchemas.length > 0 ? props.formSchemas : [
- {
- field: 'startTime',
- label: '开始时间',
- component: 'DatePicker',
- defaultValue: dayjs().startOf('date'),
- required: true,
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- getPopupContainer: getAutoScrollContainer,
- },
- },
- {
- field: 'endTime',
- label: '结束时间',
- component: 'DatePicker',
- defaultValue: dayjs(),
- required: true,
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- getPopupContainer: getAutoScrollContainer,
- },
- },
- {
- label: '查询设备',
- field: 'deviceId',
- component: 'Select',
- defaultValue: deviceOptions[0] ? deviceOptions[0]['value'] : '',
- required: true,
- componentProps: {
- options: deviceOptions,
- // api: () => defHttp.get({ url: '/safety/ventanalyManageSystem/linkdevicelist', params: { sysId: props.sysId, deviceType: props.deviceType.startsWith('vehicle') ? 'location_normal' : props.deviceType } }),
- // // resultField: 'result',
- // labelField: 'strinstallpos',
- // valueField: 'id',
- // numberToString: true,
- onChange: (e, option) => {
- if (option && (option['strinstallpos'] || option['strtype'] || option['devicekind'])) historyType.value = option['strtype'] || option['devicekind']
- },
- },
- // componentProps: ({ formModel }) => {
- // return {
- // options: deviceOptions.value,
- // // api: () => defHttp.get({ url: '/safety/ventanalyManageSystem/linkdevicelist', params: { sysId: props.sysId, deviceType: props.deviceType.startsWith('vehicle') ? 'location_normal' : props.deviceType } }),
- // // resultField: 'result',
- // // labelField: 'strinstallpos',
- // // valueField: 'id',
- // // onChange: (e, option) => {
- // // if(option && (option['strtype'] || option['devicekind'])) historyType.value = option['strtype'] || option['devicekind']
- // // },
- // }
- // },
- },
- {
- label: '间隔时间',
- field: 'interval',
- component: 'Select',
- defaultValue: '30s',
- componentProps: {
- options: [
- {
- label: '1秒',
- value: '1s',
- },
- {
- label: '5秒',
- value: '5s',
- },
- {
- label: '10秒',
- value: '10s',
- },
- {
- label: '30秒',
- value: '30s',
- },
- {
- label: '1分钟',
- value: '1m',
- },
- {
- label: '10分钟',
- value: '10m',
- },
- {
- label: '30分钟',
- value: '30m',
- },
- {
- label: '1小时',
- value: '1h',
- },
- ],
- },
- },
- ],
- },
- pagination: {
- current: 1,
- pageSize: 10,
- pageSizeOptions: ['10', '30', '50', '100'],
- showQuickJumper: false
- },
- // pagination: false,
- fetchSetting: {
- totalField: 'total',
- // 每页显示多少条
- sizeField: 'pageSize',
- // 请求结果列表字段 支持 a.b.c
- pageField: 'pageNo'
- },
- beforeFetch(params) {
- params.strtype = props.deviceType + '*';
- if (props.sysId) {
- params.sysId = props.sysId;
- }
- if(params.interval){
- params.interval = params.interval
- }else{
- params.interval = '1m'
- }
- if (props.deviceType.startsWith('vehicle')) {
- params['isEmployee'] = false
- } else if (props.deviceType.startsWith('location')) {
- params['isEmployee'] = true
- }
- },
- afterFetch(result) {
- return result;
- },
- },
- }
- );
- //注册table数据
- const [registerTable, { getDataSource, reload, setLoading, getForm, setColumns }] = tableContext;
- watchEffect(() => {
- if (historyTable.value && getDataSource) {
- const data = getDataSource() || [];
- emit('change', data);
- console.log('[ data ] >', data);
- }
- });
- onMounted(() => {
- if (!props.columnsType) {
- historyType.value = deviceOptions[0]['strtype'] || deviceOptions[0]['devicekind']
- }
- })
- defineExpose({ setLoading })
- </script>
- <style scoped lang="less">
- @import '/@/design/vent/color.less';
-
- :deep(.@{ventSpace}-table-body) {
- height: auto !important;
- }
- :deep(.zxm-picker){
- height: 30px !important;
- }
- .history-table {
- width: 100%;
- :deep(.jeecg-basic-table-form-container) {
- .@{ventSpace}-form {
- padding: 0 !important;
- border: none !important;
- margin-bottom: 0 !important;
- .@{ventSpace}-picker,
- .@{ventSpace}-select-selector {
- width: 100% !important;
- height: 100%;
- background: #00000017;
- border: 1px solid #b7b7b7;
- input,
- .@{ventSpace}-select-selection-item,
- .@{ventSpace}-picker-suffix {
- color: #fff;
- }
- .@{ventSpace}-select-selection-placeholder {
- color: #ffffffaa;
- }
- }
- }
- .@{ventSpace}-table-title {
- min-height: 0 !important;
- }
- }
- .pagination-box{
- display: flex;
- justify-content: flex-end;
- align-items: center;
- .page-num{
- border: 1px solid #0090D8;
- padding: 4px 8px;
- margin-right: 5px;
- color: #0090D8;
- }
- .btn{
- margin-right: 10px;
- }
- }
- }
- </style>
|