| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <template>
- <div class="history-table" v-if="loading">
- <BasicTable ref="historyTable" @register="registerTable" :data-source="dataSource" :columns="historyColumns">
- <template #form-submitBefore>
- <a-button type="primary" preIcon="ant-design:search-outlined" @click="getDataSource">查询</a-button>
- <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXlsFn">导出</a-button>
- </template>
- </BasicTable>
- </div>
- </template>
- <script lang="ts" setup>
- //ts语法
- import { watchEffect, ref, watch, defineExpose, inject, nextTick, onMounted, computed } from 'vue';
- import { subStationList } from '../safetyList.api';
- import { historyColumns } from '../historyLsit.data';
- import { FormSchema } from '/@/components/Form/index';
- import { BasicTable } from '/@/components/Table';
- import { useListPage } from '/@/hooks/system/useListPage';
- import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
- import { useMethods } from '/@/hooks/system/useMethods';
- import { defHttp } from '/@/utils/http/axios';
- import dayjs from 'dayjs';
- import { getAutoScrollContainer } from '/@/utils/common/compUtils';
- const props = defineProps({
- columnsType: {
- type: String,
- },
- columns: {
- type: Array,
- // required: true,
- default: () => [],
- },
- historyColumns: {
- type: Array,
- default: () => [],
- },
- stationId: {
- type: String,
- },
- scroll: {
- type: Object,
- default: { y: 0 },
- },
- formSchemas: {
- type: Array<FormSchema>,
- default: () => [],
- },
- });
- const postExportXlsUrl = '/safety/ventanalySubStation/export158StatusLog';
- //获取分站数据
- const getDeviceListApi = (params) => defHttp.get({ url: '/safety/ventanalySubStation/alllist', params });
- const historyTable = ref();
- const loading = ref(false);
- const dataSource = ref([]);
- const emit = defineEmits(['change']);
- const historyType = ref('');
- const deviceKide = ref('');
- const columns = ref([]);
- const tableScroll = props.scroll.y ? ref({ y: props.scroll.y - 100 }) : ref({});
- const statusMap = new Map([
- ['1', '连接成功'],
- ['0', '连接失败'],
- ]);
- loading.value = true;
- watch(
- () => {
- return props.columnsType;
- },
- async (newVal) => {
- debugger;
- if (!newVal) return;
- deviceKide.value = newVal;
- if (historyTable.value) {
- getForm().resetFields();
- // getForm().updateSchema();
- // getForm();
- }
- dataSource.value = [];
- nextTick(() => {
- getDataSource();
- });
- if (historyTable.value) reload();
- },
- {
- immediate: true,
- }
- );
- watch(
- () => props.scroll.y,
- (newVal) => {
- if (newVal) {
- tableScroll.value = { y: newVal - 100 };
- } else {
- tableScroll.value = {};
- }
- }
- );
- watch(
- () => props.stationId,
- async () => {
- await getForm().setFieldsValue({});
- }
- );
- function resetFormParam() {
- const formData = getForm().getFieldsValue();
- const pagination = getPaginationRef();
- formData['pageNo'] = pagination['current'];
- formData['pageSize'] = pagination['pageSize'];
- const params = {
- pageNo: pagination['current'],
- pageSize: pagination['pageSize'],
- createTime_begin: formData['starttime_begin'],
- createTime_end: formData['starttime_end'],
- stationId: props.stationId,
- status: formData['status'],
- };
- return params;
- }
- async function getDataSource() {
- dataSource.value = [];
- setLoading(true);
- const params = await resetFormParam();
- const result = await defHttp.post({ url: '/safety/ventanalySubStation/get158StatusLog', params: params });
- // if (result['datalist']['records'].length > 0) {
- // dataSource.value = result['datalist']['records'].map((item: any) => {
- // return Object.assign(item, item['readData']);
- // });
- // } else {
- dataSource.value = result['records'];
- // }
- // return result;
- setLoading(false);
- }
- //导出
- // function onExportXlsFn() {
- // // const params = resetFormParam();
- // // // 判断时间间隔和查询时间区间,数据量下载大时进行提示
- // // return onExportXlsPost(params);
- // }
- //导入导出方法
- function onExportXlsFn() {
- const { handleExportXlsPost } = useMethods();
- const params = resetFormParam();
- handleExportXlsPost('历史数据', postExportXlsUrl, params);
- }
- // 列表页面公共参数、方法
- const { tableContext, onExportXlsPost } = useListPage({
- tableProps: {
- // api: list,
- columns: props.historyColumns ? props.historyColumns : (props.historyColumns as any[]),
- canResize: true,
- showTableSetting: false,
- showActionColumn: false,
- bordered: false,
- size: 'small',
- scroll: tableScroll,
- showIndexColumn: true,
- tableLayout: 'auto',
- formConfig: {
- labelAlign: 'left',
- showAdvancedButton: false,
- showSubmitButton: false,
- showResetButton: false,
- baseColProps: {
- xs: 24,
- sm: 24,
- md: 24,
- lg: 9,
- xl: 7,
- xxl: 4,
- },
- schemas:
- props.formSchemas.length > 0
- ? props.formSchemas
- : [
- {
- field: 'starttime_begin',
- label: '开始时间',
- component: 'DatePicker',
- defaultValue: dayjs().startOf('date'),
- required: true,
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- getPopupContainer: getAutoScrollContainer,
- },
- colProps: {
- span: 6,
- },
- },
- {
- field: 'starttime_end',
- label: '结束时间',
- component: 'DatePicker',
- defaultValue: dayjs(),
- required: true,
- componentProps: {
- showTime: true,
- valueFormat: 'YYYY-MM-DD HH:mm:ss',
- getPopupContainer: getAutoScrollContainer,
- },
- colProps: {
- span: 6,
- },
- },
- {
- label: '连接状态',
- field: 'status',
- component: 'Select',
- defaultValue: '1',
- componentProps: () => {
- return {
- options: [
- { label: '连接成功', value: 1 },
- { label: '连接失败', value: 0 },
- ],
- };
- },
- colProps: {
- span: 6,
- },
- },
- ],
- },
- // fetchSetting: {
- pagination: {
- current: 1,
- pageSize: 20,
- pageSizeOptions: ['10', '30', '50', '100'],
- showQuickJumper: false,
- },
- beforeFetch() {
- const newParams = { ...resetFormParam() };
- // debugger;
- return newParams;
- },
- },
- exportConfig: {
- name: '历史列表',
- url: postExportXlsUrl,
- },
- });
- //注册table数据
- const [registerTable, { reload, setLoading, getForm, setColumns, getPaginationRef, setPagination }] = tableContext;
- watchEffect(() => {
- if (historyTable.value && dataSource) {
- const data = dataSource.value || [];
- emit('change', data);
- }
- });
- onMounted(async () => {
- if (props.stationId) {
- nextTick(async () => {
- await getDataSource();
- });
- }
- });
- 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}-zxm-select-selection-item {
- color: #00000017 !important;
- }
- }
- }
- .@{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>
|