364 lines
10 KiB
Vue
364 lines
10 KiB
Vue
<template>
|
||
<div class="cn-report">
|
||
<div class="cn-report-left">
|
||
<loading :loading="builtinLeftLoading"></loading>
|
||
<div class="cn-report-left-title">
|
||
{{$t('report.category')}}
|
||
</div>
|
||
<div class="cn-report-left-menu" :class="{'cn-active': !builtinId}" @click="builtinTabs(null)">
|
||
{{$t('dns.all')}}
|
||
</div>
|
||
<div class="cn-report-left-menu" :class="{'cn-active': builtinId === item.id}" v-for="item in builtinReportLeftMenu" :key="item.id" @click="builtinTabs(item.id)">
|
||
{{item.name}}
|
||
</div>
|
||
</div>
|
||
<div class="cn-report-right">
|
||
<cn-data-list
|
||
ref="dataList"
|
||
:tableId="tableId"
|
||
v-model:custom-table-title="tools.customTableTitle"
|
||
:api="url"
|
||
:from="fromRoute.builtinReport"
|
||
:layout="['search']"
|
||
@search="search"
|
||
>
|
||
<template #top-tool-left>
|
||
<button id="account-add" class="top-tool-btn margin-r-10 top-tool-btn--create"
|
||
@click="add">
|
||
<i class="cn-icon-xinjian cn-icon"></i>
|
||
<span>{{$t('overall.create')}}</span>
|
||
</button>
|
||
<button id="report-edit" class="top-tool-btn margin-r-10" :disabled="disableEdit"
|
||
@click="editReport">
|
||
<i class="cn-icon-edit cn-icon"></i>
|
||
<span>{{$t('overall.edit')}}</span>
|
||
</button>
|
||
<button id="report-delete" class="top-tool-btn margin-r-10" :disabled="disableDelete"
|
||
@click="delBatch">
|
||
<i class="cn-icon-delete cn-icon"></i>
|
||
<span>{{$t('overall.delete')}}</span>
|
||
</button>
|
||
</template>
|
||
<template #default>
|
||
<loading :loading="loading"></loading>
|
||
<report-table
|
||
ref="dataTable"
|
||
:api="url"
|
||
:isNoData="isNoData"
|
||
:custom-table-title="tools.customTableTitle"
|
||
:category-list="builtinReportLeftMenu"
|
||
:height="mainTableHeight"
|
||
:table-data="tableData"
|
||
:category-id="builtinId"
|
||
@delete="del"
|
||
@edit="edit"
|
||
@download="download"
|
||
@preview="preview"
|
||
@orderBy="tableDataSort"
|
||
@reload="getTableData"
|
||
@selectionChange="selectionChange"
|
||
/>
|
||
</template>
|
||
<template #pagination>
|
||
<pagination ref="pagination" :page-obj="pageObj" :tableData="tableData" :table-id="tableId" @pageNo='pageNo' @pageSize='pageSize'></pagination>
|
||
</template>
|
||
</cn-data-list>
|
||
<el-drawer
|
||
v-model="rightBox.show"
|
||
direction="rtl"
|
||
custom-class="common-right-box"
|
||
:size="700"
|
||
:with-header="false"
|
||
destroy-on-close>
|
||
<report-box
|
||
:object="object"
|
||
:category-list="builtinReportLeftMenu"
|
||
:current-category-id="builtinId"
|
||
@close="closeRightBox"
|
||
/>
|
||
</el-drawer>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import axios from 'axios'
|
||
import ReportTable from '@/components/table/report/ReportTable'
|
||
import cnDataList from '@/components/table/CnDataList'
|
||
import dataListMixin from '@/mixins/data-list'
|
||
import { api } from '@/utils/api'
|
||
import { urlParamsHandler, overwriteUrl } from '@/utils/tools'
|
||
import ReportBox from '@/components/rightBox/report/ReportBox'
|
||
import Loading from '@/components/common/Loading'
|
||
import { ref } from 'vue'
|
||
import { useRoute } from 'vue-router'
|
||
|
||
export default {
|
||
name: 'Report',
|
||
data () {
|
||
return {
|
||
builtinReportLeftMenu: [], // 左侧列表菜单数据
|
||
builtinColor: false,
|
||
// builtinId: '',
|
||
url: api.reportTemp,
|
||
blankObject: {
|
||
id: '',
|
||
name: '',
|
||
type: '',
|
||
source: 'session_record_cn',
|
||
cTime: '',
|
||
uTime: '',
|
||
remark: '',
|
||
config: {
|
||
isRepeat: 0,
|
||
isScheduler: 0,
|
||
cronExpression: '',
|
||
startTime: '',
|
||
endTime: '',
|
||
queryParam: {},
|
||
schedulerConfig: {
|
||
type: 'day',
|
||
weekDates: [],
|
||
months: [],
|
||
monthDates: [],
|
||
monthWeekDates: [],
|
||
interval: 1
|
||
},
|
||
timeConfig: {
|
||
type: 'yesterday',
|
||
offset: 1,
|
||
unit: 'hour'
|
||
}
|
||
},
|
||
schedulerStart: '',
|
||
schedulerEnd: '',
|
||
categoryId: '',
|
||
categoryParams: []
|
||
},
|
||
checkWeekListData: [
|
||
'report.sunday',
|
||
'report.monday',
|
||
'report.tuesday',
|
||
'report.wednesday',
|
||
'report.thursday',
|
||
'report.friday',
|
||
'report.saturday'
|
||
],
|
||
checkMonthsListData: [
|
||
'report.january',
|
||
'report.february',
|
||
'report.march',
|
||
'report.april',
|
||
'report.may',
|
||
'report.june',
|
||
'report.july',
|
||
'report.august',
|
||
'report.september',
|
||
'report.october',
|
||
'report.november',
|
||
'report.december'
|
||
],
|
||
tableId: 'reportTable',
|
||
builtinLeftLoading: false,
|
||
// builtinRightLoading: false,
|
||
isInit: true
|
||
}
|
||
},
|
||
/**
|
||
* 添加vue3的setup,目的是添加/获取地址栏的参数
|
||
*/
|
||
setup () {
|
||
const { query } = useRoute()
|
||
const builtinId = ref(parseInt(query.categoryId) || '')
|
||
const urlPageNo = ref(parseInt(query.pageNo) || 1)
|
||
|
||
return {
|
||
builtinId,
|
||
urlPageNo
|
||
}
|
||
},
|
||
mixins: [dataListMixin],
|
||
components: {
|
||
Loading,
|
||
cnDataList,
|
||
ReportTable,
|
||
ReportBox
|
||
},
|
||
mounted () {
|
||
this.$nextTick(() => {
|
||
this.queryGetTempData()
|
||
})
|
||
},
|
||
watch: {
|
||
builtinId (n) {
|
||
const { query } = this.$route
|
||
let newUrl = urlParamsHandler(window.location.href, query, {
|
||
categoryId: n,
|
||
pageNo: 1,
|
||
pageSize: 20
|
||
})
|
||
|
||
// 点击“全部”或者首次进入界面时,不显示左侧菜单栏参数
|
||
const newQuery = JSON.parse(JSON.stringify(query)) // 深拷贝路由数据
|
||
|
||
if (n === null) {
|
||
delete newQuery.categoryId
|
||
} else {
|
||
delete newQuery.startTime
|
||
delete newQuery.endTime
|
||
delete newQuery.expandId
|
||
delete newQuery.expandPage
|
||
delete newQuery.pageNo
|
||
delete newQuery.pageSize
|
||
}
|
||
|
||
newUrl = urlParamsHandler(window.location.href, query, newQuery, 'clean')
|
||
|
||
overwriteUrl(newUrl)
|
||
}
|
||
},
|
||
methods: {
|
||
queryGetTempData () {
|
||
this.builtinLeftLoading = true
|
||
axios.get(api.reportCategory, { params: { pageSize: 999 } }).then(res => {
|
||
if (res.status === 200) {
|
||
this.builtinReportLeftMenu = res.data.data.list.map(c => {
|
||
return {
|
||
...c,
|
||
config: c.config ? JSON.parse(c.config) : {}
|
||
}
|
||
})
|
||
|
||
if (this.builtinId !== '') {
|
||
this.builtinTabs(this.builtinId, 'init')
|
||
} else {
|
||
this.getTableData()
|
||
}
|
||
}
|
||
this.builtinLeftLoading = false
|
||
})
|
||
},
|
||
tableDataSort (orderBy) {
|
||
this.searchLabel.orderBy = orderBy
|
||
this.getTableData(this.searchLabel)
|
||
},
|
||
getTableData (params) {
|
||
this.searchLabel = null
|
||
if (params) {
|
||
this.searchLabel = { ...this.searchLabel, ...params }
|
||
}
|
||
this.searchLabel = { ...this.searchLabel, ...this.pageObj }
|
||
// this.tools.loading = true
|
||
// this.builtinRightLoading = true
|
||
// this.loading = true
|
||
this.isNoData = false
|
||
// this.tableData = []
|
||
this.toggleLoading(true)
|
||
delete this.searchLabel.total
|
||
let listUrl = this.url
|
||
if (this.listUrl) {
|
||
listUrl = this.listUrl
|
||
}
|
||
|
||
if (this.builtinId !== '') {
|
||
this.searchLabel.categoryId = this.builtinId
|
||
}
|
||
|
||
if (!this.isInit) {
|
||
axios.get(listUrl, { params: this.searchLabel }).then(response => {
|
||
if (response.status === 200) {
|
||
for (let i = 0; i < response.data.data.list.length; i++) {
|
||
response.data.data.list[i].status = response.data.data.list[i].status + ''
|
||
}
|
||
this.$nextTick(() => {
|
||
this.tableData = response.data.data.list.map(item => {
|
||
return {
|
||
...item,
|
||
config: item.config ? JSON.parse(item.config) : {}
|
||
}
|
||
})
|
||
this.pageObj.total = response.data.data.total
|
||
this.isNoData = !this.tableData || this.tableData.length === 0
|
||
})
|
||
// TODO 回到顶部
|
||
} else {
|
||
this.isNoData = true
|
||
}
|
||
}).finally(() => {
|
||
this.toggleLoading(false)
|
||
})
|
||
}
|
||
this.isInit = false
|
||
},
|
||
/**
|
||
* 点击左侧tab页
|
||
*/
|
||
builtinTabs (id, flag) {
|
||
this.builtinId = id
|
||
if (flag === undefined) {
|
||
this.pageObj.pageNo = 1
|
||
this.pageObj.pageSize = 20
|
||
}
|
||
this.getTableData({ categoryId: id })
|
||
},
|
||
edit (u) {
|
||
this.initConfig(u)
|
||
this.object = u
|
||
this.rightBox.show = true
|
||
},
|
||
editReport () {
|
||
if (this.batchDeleteObjs.length === 0) {
|
||
this.$alert(this.$t('tip.pleaseSelectForEdit'), {
|
||
confirmButtonText: this.$t('tip.yes'),
|
||
type: 'warning'
|
||
}).catch(() => {})
|
||
} else {
|
||
const curRecord = this.batchDeleteObjs[0]
|
||
this.initConfig(curRecord)
|
||
this.object = curRecord
|
||
this.rightBox.show = true
|
||
}
|
||
},
|
||
initConfig (u) {
|
||
if (!u.config) {
|
||
u.config = {
|
||
isRepeat: 0,
|
||
cronExpression: '',
|
||
startTime: '',
|
||
endTime: '',
|
||
queryParam: {},
|
||
schedulerConfig: {
|
||
type: 'day',
|
||
weekDates: [],
|
||
months: [],
|
||
monthDates: [],
|
||
monthWeekDates: [],
|
||
interval: 1
|
||
},
|
||
timeConfig: {
|
||
type: 'yesterday',
|
||
offset: 1,
|
||
unit: ''
|
||
}
|
||
}
|
||
} else if (!u.config.schedulerConfig) {
|
||
u.config.schedulerConfig = {
|
||
type: 'day',
|
||
weekDates: [],
|
||
months: [],
|
||
monthDates: [],
|
||
monthWeekDates: [],
|
||
interval: 1
|
||
}
|
||
} else if (!u.config.timeConfig) {
|
||
u.config.timeConfig = {
|
||
type: 'yesterday',
|
||
offset: 1,
|
||
unit: ''
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|