This commit is contained in:
Lx 2025-08-07 09:51:00 +08:00
parent 7776dda1af
commit 505b8d811e
6 changed files with 735 additions and 32 deletions

View File

@ -244,6 +244,12 @@ export const DICT_TYPE = {
INS_EQU_TYPE: 'ins_equ_type',
INS_NOTICE_SERVER: 'jiance',
// 救援设备字典
RESCUE_EQU_TYPE: 'rescue_equ_type',
// 维修设备字典
REPAIR_EQU_TYPE: 'repair_equ_type',
// ----------驾校相关------------
//人员类型
DRIVE_TYPE: 'drive_type',

View File

@ -0,0 +1,64 @@
import request from '@/utils/request'
// 查询equInfo列表
export function listEquInfo(query) {
return request({
url: '/system/equInfo/list',
method: 'get',
params: query
})
}
// 查询equInfo详细
export function getEquInfo(id) {
return request({
url: '/system/equInfo/' + id,
method: 'get'
})
}
// 新增equInfo
export function addEquInfo(data) {
return request({
url: '/system/equInfo/add',
method: 'post',
data: data
})
}
// 修改equInfo
export function updateEquInfo(data) {
return request({
url: '/system/equInfo/edit',
method: 'post',
data: data
})
}
// 修改equInfo
export function importTemplate() {
return request({
url: '/system/equInfo/importTemplate',
method: 'post',
responseType: 'blob'
})
}
// 删除equInfo
export function delEquInfo(id) {
return request({
url: '/system/equInfo/' + id,
method: 'delete'
})
}
// 删除equInfo
export function addFolder(id, servicePackageId, defaultKey) {
return request({
url: '/system/equInfo/addDeviceFolder',
method: 'post',
params: {
id,
servicePackageId,
defaultKey
}
})
}

View File

@ -0,0 +1,589 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="设备名称" prop="equName">
<el-input
v-model="queryParams.equName"
placeholder="请输入设备名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="设备型号" prop="equModel">
<el-input
v-model="queryParams.equModel"
placeholder="请输入设备型号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="设备编号" prop="equNumber">
<el-input
v-model="queryParams.equNumber"
placeholder="请输入设备编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="设备类型" prop="type">
<el-select v-model="queryParams.type">
<el-option v-for="item in this.dictDatas" :key="item.value" :value="item.value"
:label="item.label"/>
</el-select>
</el-form-item>
<el-form-item label="检定时间">
<el-date-picker
v-model="daterangeNextCheckTime"
style="width: 240px"
value-format="yyyy-MM-dd"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>新增
</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button type="info" icon="el-icon-upload2" size="mini" @click="handleImport"
v-hasPermi="['system:user:import']">导入
</el-button>
</el-col>-->
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="equInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/>
<!-- 1-->
<el-table-column label="设备名称" align="center" prop="equName"/>
<el-table-column label="设备型号" align="center" prop="equModel"/>
<el-table-column label="设备编号" align="center" prop="equNumber"/>
<el-table-column label="设备类别" align="center" prop="type">
<template slot-scope="scope">
<!-- <DictTag :type="DICT_TYPE.INS_EQU_TYPE" :value="scope.row.type"/>-->
<DictTag :type="currentDictType" :value="scope.row.type"/>
</template>
</el-table-column>
<el-table-column label="校准日期" align="center" prop="equZq"/>
<el-table-column label="有效期" align="center" prop="validTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.validTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="校准单位" align="center" prop="lastUnit"/>
<el-table-column label="证书编号" align="center" prop="certificateNumber"/>
<el-table-column label="制造商" align="center" prop="manufacturer"/>
<el-table-column label="电话" align="center" prop="mobile"/>
<el-table-column label="邮编" align="center" prop="postcode"/>
<el-table-column label="地址" align="center" prop="address"/>
<el-table-column label="邮箱" align="center" prop="email"/>
<el-table-column label="复校日期" align="center" prop="nextCheckTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.nextCheckTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="" align="center" prop="createTime" width="180">-->
<!-- <template slot-scope="scope">-->
<!-- <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改
</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改equInfo对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
<el-form-item label="设备名称" prop="equName">
<el-input v-model="form.equName" placeholder="请输入设备名称"/>
</el-form-item>
<el-form-item label="设备型号" prop="equModel">
<el-input v-model="form.equModel" placeholder="请输入设备型号"/>
</el-form-item>
<el-form-item label="设备编号" prop="equNumber">
<el-input v-model="form.equNumber" placeholder="请输入设备编号"/>
</el-form-item>
<el-form-item label="设备类型" prop="type">
<el-select v-model="form.type" placeholder="请选择类别">
<el-option v-for="item in this.dictDatas" :key="item.value" :value="item.value"
:label="item.label"/>
</el-select>
</el-form-item>
<el-form-item label="设备检定周期" prop="equZq">
<el-input v-model="form.equZq" placeholder="请输入设备检定周期"/>
</el-form-item>
<el-form-item label="有效期" prop="validTime">
<el-date-picker clearable
v-model="form.validTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择有效期">
</el-date-picker>
</el-form-item>
<el-form-item label="上次检定单位" prop="lastUnit">
<el-input v-model="form.lastUnit" placeholder="请输入上次检定单位"/>
</el-form-item>
<el-form-item label="下次检定时间" prop="nextCheckTime">
<el-date-picker clearable
v-model="form.nextCheckTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择下次检定时间">
</el-date-picker>
</el-form-item>
<el-form-item label="查看附件" v-if="this.form.id">
<div @click="lookFile" style="color: #1b6ef3; cursor: pointer">点击查看附件</div>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- 设备导入对话框 -->
<el-dialog :title="upload.title" :visible.sync="upload.open" append-to-body>
<el-upload ref="upload" :limit="1" accept=".xlsx, .xls" :headers="upload.headers"
:action="upload.url" :disabled="upload.isUploading"
:on-progress="handleFileUploadProgress" :on-success="handleFileSuccess" :auto-upload="false" drag>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<div class="el-upload__tip text-center" slot="tip">
<div class="el-upload__tip" slot="tip">
<el-checkbox v-model="upload.updateSupport"/>
是否更新已经存在的设备数据
</div>
<span>仅允许导入xlsxlsx格式文件</span>
<el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;"
@click="importTemplate">下载模板
</el-link>
</div>
</el-upload>
<el-table
v-if="isFail"
:data="failList"
stripe
style="width: 100%">
<el-table-column
prop="equName"
label="设备名称"
width="180">
</el-table-column>
<el-table-column
prop="reason"
label="失败原因">
</el-table-column>
<el-table-column
prop="type"
label="设备类型">
</el-table-column>
<el-table-column
prop="equModel"
label="型号">
</el-table-column>
<el-table-column
prop="equNumber"
label="出厂编号">
</el-table-column>
<el-table-column
prop="validTime"
label="校准日期">
</el-table-column>
<el-table-column
prop="nextCheckTime"
label="复校日期">
</el-table-column>
<el-table-column
prop="certificateNumber"
label="证书编号">
</el-table-column>
<el-table-column
prop="manufacturer"
label="制造商">
</el-table-column>
<el-table-column
prop="lastUnit"
label="校准单位">
</el-table-column>
<el-table-column
prop="mobile"
label="电话">
</el-table-column>
<el-table-column
prop="address"
label="地址">
</el-table-column>
<el-table-column
prop="postcode"
label="邮编">
</el-table-column>
<el-table-column
prop="email"
label="邮箱">
</el-table-column>
</el-table>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFileForm"> </el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {listEquInfo, getEquInfo, delEquInfo, addEquInfo, updateEquInfo, importTemplate, addFolder} from "./api/device";
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
import {getBaseHeader} from "@/utils/request";
import { getLastPathSegment } from '@/utils/ruoyi'
export default {
name: "EquInfo",
computed: {
DICT_TYPE() {
return DICT_TYPE
}
},
data() {
return {
isFail:false,
failList: [],
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// equInfo
equInfoList: [],
//
title: "",
//
open: false,
//
daterangeNextCheckTime: [],
//
queryParams: {
pageNum: 1,
pageSize: 10,
equName: null,
equModel: null,
equNumber: null,
nextCheckTime: null,
type: null,
servicePackageId: null,
defaultKey: null,
},
//
upload: {
//
open: false,
//
title: "",
//
isUploading: false,
//
updateSupport: 0,
//
headers: getBaseHeader(),
//
url: process.env.VUE_APP_BASE_API + '/admin-api/system/equInfo/importEquipment'
},
//
form: {},
//
rules: {},
deviceId:null,
dictDatas: [],
currentDictType: null,
};
},
created() {
const servicePackageId = getLastPathSegment(this.$route.path); //
console.log('服务套餐', servicePackageId)
this.queryParams.servicePackageId = servicePackageId;
switch (servicePackageId) {
case 'jiance':
this.queryParams.dictType = 'ins_report_role';
break;
case 'jiaxiao':
this.queryParams.dictType = 'drive_file_role';
break;
case 'weixiu':
this.queryParams.dictType = 'repair_file_role';
this.queryParams.defaultKey = 'wx_equipment';
this.dictDatas = getDictDatas(DICT_TYPE.REPAIR_EQU_TYPE);
this.currentDictType = DICT_TYPE.REPAIR_EQU_TYPE;
break;
case 'jiuyuan':
this.queryParams.dictType = 'repair_report_role';
this.queryParams.defaultKey = 'jy_equipment';
this.dictDatas = getDictDatas(DICT_TYPE.RESCUE_EQU_TYPE);
this.currentDictType = DICT_TYPE.RESCUE_EQU_TYPE;
break;
}
this.queryParams.fatherId = this.$route.query.folderId || null //
this.fatherId = this.queryParams.fatherId
this.getList()
// this.queryTreeFolder()
},
methods: {
/** 查询equInfo列表 */
getList() {
this.loading = true;
this.queryParams.params = {};
if (null != this.daterangeNextCheckTime && '' != this.daterangeNextCheckTime) {
this.queryParams.params["beginNextCheckTime"] = this.daterangeNextCheckTime[0];
this.queryParams.params["endNextCheckTime"] = this.daterangeNextCheckTime[1];
}
listEquInfo(this.queryParams).then(response => {
this.equInfoList = response.data.records;
this.total = response.data.total;
this.loading = false;
});
},
/* lookFile(){
if (!this.form.folderId) {
addFolder(this.form.id, this.queryParams.servicePackageId,this.queryParams.defaultKey).then(response => {
this.form.folderId = response.data
if(this.queryParams.servicePackageId == 'jiuyuan'){
this.$router.push({path: '/rescue/manage/file/jiuyuan', query: {"folderId": this.form.folderId}})
}else if(this.queryParams.servicePackageId == 'weixiu'){
this.$router.push({path: '/repair/manage/file/weixiu', query: {"folderId": this.form.folderId}})
}
})
}else {
if(this.queryParams.servicePackageId == 'jiuyuan'){
this.$router.push({path: '/rescue/manage/file/jiuyuan', query: {"folderId": this.form.folderId}})
}else if(this.queryParams.servicePackageId == 'weixiu'){
this.$router.push({path: '/repair/manage/file/weixiu', query: {"folderId": this.form.folderId}})
}
}
}, */
lookFile() {
//
const routeMap = {
jiuyuan: '/rescue/manage/file/jiuyuan',
weixiu: '/repair/manage/file/weixiu'
};
//
const getRoutePath = () => routeMap[this.queryParams.servicePackageId] || routeMap.jiuyuan;
//
const navigate = () => {
this.$router.push({
path: getRoutePath(),
query: { folderId: this.form.folderId }
});
};
// folderId
if (!this.form.folderId) {
addFolder(this.form.id, this.queryParams.servicePackageId, this.queryParams.defaultKey)
.then(response => {
this.form.folderId = response.data;
navigate();
});
} else {
navigate();
}
},
/** 导入按钮操作 */
handleImport() {
this.upload.title = "设备导入";
this.upload.open = true;
},
//
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true;
},
//
handleFileSuccess(response, file, fileList) {
if (response.code !== 0) {
this.$modal.msgError(response.msg)
return;
}
// this.upload.open = false;
this.upload.isUploading = false;
this.$refs.upload.clearFiles();
if (response.data.failList.length > 0) {
this.isFail = true
this.$set(this, 'failList', response.data.failList); //
console.log(this.failList)
}
this.getList();
},
/** 下载模板操作 */
importTemplate() {
importTemplate().then(response => {
this.$download.excel(response, '设备导入模板.xls');
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
partnerId: null,
equName: null,
equModel: null,
equNumber: null,
equZq: null,
validTime: null,
lastUnit: null,
nextCheckTime: null,
createTime: null,
createBy: null,
updateTime: null,
updateBy: null,
type: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.daterangeNextCheckTime = [];
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length !== 1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
this.deviceId= row.id
getEquInfo(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateEquInfo(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
this.form.servicePackageId = this.queryParams.servicePackageId
addEquInfo(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
//
submitFileForm() {
this.$refs.upload.submit();
this.failList = []
this.isFail = false
console.log('执行')
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除equInfo编号为"' + ids + '"的数据项?').then(function () {
return delEquInfo(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/equInfo/export', {
...this.queryParams
}, `设备信息导出_${new Date().getTime()}.xlsx`)
},
}
};
</script>

View File

@ -49,6 +49,22 @@ export function listStaff(query) {
})
}
export function jyListStaff(query) {
return request({
url: '/system/rescueInfo/driverList',
method: 'get',
params: query
})
}
export function wxListStaff(query) {
return request({
url: '/repair/worker/page',
method: 'get',
params: query
})
}
// 查询inspectionFile详细
export function getInspectionFile(id) {
return request({

View File

@ -83,7 +83,7 @@
<el-option
v-for="item in staffList"
:key="item.userId"
:label="item.name"
:label="item.userName"
:value="item.userId"
>
</el-option>
@ -202,10 +202,9 @@
v-model="form.filePath"
/>
</el-form-item>
<el-form-item>
<el-form-item v-if="form.id">
<el-cascader
:options="folderList"
:props="{
checkStrictly: true,
emitPath:false
@ -286,17 +285,17 @@ import {
getUserIdsByFileId,
listByPermission,
getFileRecord,
addBatchInspectionFile, queryTreeFolder
addBatchInspectionFile, queryTreeFolder, jyListStaff, wxListStaff
} from './api/file'
import driveFileUpload from '@/components/FileUpload/index.vue'
import {getAccessToken} from '@/utils/auth'
import { getAccessToken } from '@/utils/auth'
// import cos from "@/utils/cosUpload"
import cos from '@/utils/cos'
import {getLastPathSegment} from "@/utils/ruoyi";
import { getLastPathSegment } from '@/utils/ruoyi'
export default {
name: 'index',
components: {driveFileUpload},
components: { driveFileUpload },
data() {
return {
uploadProgress: 0,
@ -309,7 +308,7 @@ export default {
//
ids: [],
fileList: [],
headers: {Authorization: 'Bearer ' + getAccessToken()}, //
headers: { Authorization: 'Bearer ' + getAccessToken() }, //
//
single: true,
//
@ -392,22 +391,22 @@ export default {
}
},
created() {
const servicePackageId = getLastPathSegment(this.$route.path); //
const servicePackageId = getLastPathSegment(this.$route.path) //
console.log('服务套餐', servicePackageId)
this.queryParams.servicePackageId = servicePackageId;
this.queryParams.servicePackageId = servicePackageId
switch (servicePackageId) {
case 'jiance':
this.queryParams.dictType = 'ins_report_role';
break;
this.queryParams.dictType = 'ins_report_role'
break
case 'jiaxiao':
this.queryParams.dictType = 'drive_file_role';
break;
this.queryParams.dictType = 'drive_file_role'
break
case 'weixiu':
this.queryParams.dictType = 'repair_file_role';
break;
this.queryParams.dictType = 'repair_file_role'
break
case 'jiuyuan':
this.queryParams.dictType = 'repair_report_role';
break;
this.queryParams.dictType = 'repair_report_role'
break
}
this.queryParams.fatherId = this.$route.query.folderId || null //
@ -521,7 +520,7 @@ export default {
this.fileUrl = 'https://view.officeapps.live.com/op/view.aspx?src=' +
(row.filePath.includes('http')
? this.inspectionFileUrl + row.filePath.replace(/^.*?uploads\//, 'uploads/')
: this.previewUrl + row.filePath);
: this.previewUrl + row.filePath)
this.$nextTick(() => {
// this.$refs.filePreview.show()
this.selectFile = row
@ -529,7 +528,7 @@ export default {
})
}
},
getRowClassName({row}) {
getRowClassName({ row }) {
console.log('返回的class', row.id === this.selectFile.id ? 'highlight-row' : '')
//
return row.id === this.selectFile.id ? 'highlight-row' : ''
@ -620,13 +619,30 @@ export default {
},
getStaffList() {
const data = {
pageNum: 1,
pageNo: 1,
pageSize: 100000
}
listStaff(data).then(res => {
this.staffList = res.data.records
this.getUserIdsByFileId(this.fileId)
})
console.log('123', 123)
if(this.queryParams.servicePackageId == 'weixiu'){
console.log('234', 234)
wxListStaff(data).then(res => {
this.staffList = res.data.records
console.log('staffList1',this.staffList)
this.getUserIdsByFileId(this.fileId)
})
}else if(this.queryParams.servicePackageId == 'jiuyuan'){
console.log('345', 345)
jyListStaff(data).then(res => {
this.staffList = res.data.records.map(item => {
return {
...item,
userName: item.nickName
}
});
console.log('staffList2', this.staffList)
this.getUserIdsByFileId(this.fileId)
})
}
},
/**根据文件id获取有权限的用户id*/
getUserIdsByFileId(fileId) {
@ -742,7 +758,7 @@ export default {
function traverse(nodes, parentDisabled = false) {
return nodes.map(node => {
let newNode = {...node}
let newNode = { ...node }
//
if (newNode.children && newNode.children.length > 0) {
@ -837,7 +853,7 @@ export default {
},
//
Deleteanniu(id) {
this.$modal.confirm('是否确认删除inspectionFile编号为"' + id + '"的数据项?').then(function () {
this.$modal.confirm('是否确认删除inspectionFile编号为"' + id + '"的数据项?').then(function() {
return delInspectionFile(id)
}).then(() => {
this.getList()
@ -852,7 +868,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids
this.$modal.confirm('是否确认删除inspectionFile编号为"' + ids + '"的数据项?').then(function () {
this.$modal.confirm('是否确认删除inspectionFile编号为"' + ids + '"的数据项?').then(function() {
return delInspectionFile(ids)
}).then(() => {
this.getList()
@ -931,14 +947,14 @@ export default {
return reject()
}
this.$message.success('上传成功:' + data.Location)
this.fileList.push({name: file.name, url: data.Location})
this.fileList.push({ name: file.name, url: data.Location })
resolve()
}
)
})
},
// 使 cos-js-sdk
async uploadToCOS({file}) {
async uploadToCOS({ file }) {
const fileName = `files/${file.name}` //
cos.putObject(
{
@ -996,7 +1012,7 @@ export default {
this.fileList.push({
name: file.name,
url: `https://${data.Location}`, // URL
servicePackageId: this.queryParams.servicePackageId,
servicePackageId: this.queryParams.servicePackageId
})
// return this.fileList
@ -1126,7 +1142,7 @@ export default {
/* 时间样式 */
.step-time {
font-size: 14px;
//color: #666;
//color: #666;
}
/* 文件名称高亮 */

View File

@ -249,6 +249,18 @@ export default {
},
/** 搜索按钮操作 */
handleQuery() {
const reportTime = this.queryParams.reportTime;
this.queryParams = {
pageNo: 1,
pageSize: 10,
reportTopic: null,
reportTime: reportTime,
createTime: [],
userId: null,
userName: null,
servicePackageId: this.$route.query.servicePackageId,
dictType: this.$route.query.dictType,
}
this.queryParams.pageNo = 1;
this.getList();
},