110 lines
3.2 KiB
Vue
110 lines
3.2 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<div class="head-container">
|
||
<Search />
|
||
<crudOperation />
|
||
</div>
|
||
<!--表格渲染-->
|
||
<el-table
|
||
ref="table"
|
||
v-loading="crud.loading"
|
||
:data="crud.data"
|
||
style="width: 100%;"
|
||
@selection-change="crud.selectionChangeHandler"
|
||
>
|
||
<!-- <el-table-column type="selection" width="55"/>-->
|
||
<!-- <el-table-column v-if="false" prop="id" label="id"/>-->
|
||
<!-- <el-table-column prop="operate" width="50" label="操作" />-->
|
||
<el-table-column prop="device_code" label="设备号" min-width="130" show-overflow-tooltip />
|
||
<el-table-column prop="task_code" label="任务编号" />
|
||
<el-table-column prop="instruct_code" label="指令编号" />
|
||
<el-table-column prop="method" label="方法" />
|
||
<el-table-column prop="status_code" label="状态码" />
|
||
<el-table-column prop="requestparam" label="请求参数" />
|
||
<el-table-column prop="responseparam" label="返回参数" />
|
||
<el-table-column prop="logTime" width="170" label="记录时间" />
|
||
<el-table-column prop="content" width="500" label="内容详情" min-width="300" show-overflow-tooltip />
|
||
|
||
</el-table>
|
||
<!--分页组件-->
|
||
<pagination />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import Search from './search'
|
||
import CRUD, { crud, header, presenter } from '@crud/crud'
|
||
import crudOperation from '@crud/CRUD.operation'
|
||
import pagination from '@crud/Pagination'
|
||
import { delAll } from '@/api/acs/lucene/log'
|
||
|
||
export default {
|
||
name: 'LuceneLog',
|
||
components: { Search, pagination, crudOperation },
|
||
mixins: [presenter(), header(), crud()],
|
||
cruds: function() {
|
||
return CRUD({
|
||
title: '系统参数', url: 'api/lucene/getAll', idField: 'id', sort: 'id,desc',
|
||
queryOnPresenterCreated: true,
|
||
optShow: {
|
||
add: false,
|
||
edit: false,
|
||
del: false,
|
||
download: false
|
||
},
|
||
page: {
|
||
size: 40,
|
||
total: 0,
|
||
page: 0
|
||
},
|
||
query: {
|
||
createTime: [new Date(new Date().setTime(new Date().getTime() - 3600 * 1000)), new Date(new Date().setTime(new Date().getTime() + 3600 * 1000))]
|
||
}
|
||
})
|
||
},
|
||
data() {
|
||
return {
|
||
query: { blurry: '123' },
|
||
permission: {
|
||
add: ['admin', 'param:add'],
|
||
edit: ['admin', 'param:edit'],
|
||
del: ['admin', 'param:del']
|
||
},
|
||
|
||
rules: {}
|
||
}
|
||
},
|
||
created() {
|
||
},
|
||
methods: {
|
||
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
||
[CRUD.HOOK.beforeRefresh]() {
|
||
return true
|
||
},
|
||
confirmDelAll() {
|
||
this.$confirm(`确认清空所有操作日志吗?`, '提示', {
|
||
confirmButtonText: '确定',
|
||
cancelButtonText: '取消',
|
||
type: 'warning'
|
||
}).then(() => {
|
||
this.crud.delAllLoading = true
|
||
delAll('device_execute').then(res => {
|
||
this.crud.delAllLoading = false
|
||
this.crud.dleChangePage(1)
|
||
this.crud.delSuccessNotify()
|
||
this.crud.toQuery()
|
||
}).catch(err => {
|
||
this.crud.delAllLoading = false
|
||
console.log(err.response.data.message)
|
||
})
|
||
}).catch(() => {
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
|
||
</style>
|