修改已知的bug

This commit is contained in:
RenCheng 2025-04-23 21:53:15 +08:00
parent aa46380dae
commit 6a5f411aac
6 changed files with 20 additions and 41 deletions

View File

@ -1,4 +1,4 @@
NODE_ENV=development
VUE_APP_API_BASE_URL=http://rcproject.natapp1.cc/jeecg-boot
VUE_APP_API_BASE_URL=http://pbl.natapp1.cc/jeecg-boot
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview

View File

@ -71,7 +71,7 @@
import { getFileLinkInfo,processFile,fileDataLinkDelete,isDataLinkFileParsed } from '@/api/fileDataLink'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import JEllipsis from "@/components/jeecg/JEllipsis";
import {deleteAction, postAction} from '@/api/manage'
import {deleteAction, postAction,getAction} from '@/api/manage'
export default {
name: "waterDocuments",
mixins:[JeecgListMixin],

View File

@ -74,7 +74,7 @@
import { getFileLinkInfo,processFile,fileDataLinkDelete,isDataLinkFileParsed } from '@/api/fileDataLink'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import JEllipsis from "@/components/jeecg/JEllipsis";
import {deleteAction, postAction} from '@/api/manage'
import {deleteAction, postAction,getAction} from '@/api/manage'
export default {
name: "waterDocuments",
mixins:[JeecgListMixin],

View File

@ -46,6 +46,10 @@
<!-- <span slot="createTime" slot-scope="text, record">
{{ moment(text).format('YYYY-MM-DD') }}
</span> -->
<template slot="duplicationType" slot-scope="text">
<span v-if="text == 1" >完全去重</span>
<span v-if="text == 2">关键列去重</span>
</template>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">配置</a>
<a-divider type="vertical" v-if="record.id" />
@ -117,6 +121,7 @@ export default {
title: '去重类型',
align: "center",
dataIndex: 'duplicationType',
scopedSlots: { customRender: 'duplicationType' },
},
{
title: '创建时间',

View File

@ -91,14 +91,6 @@
return {
description: '数据库恢复',
dataSource: [
{
id:"1",
name:"第一次备份",
createTime:"2024-03-06 10:30:26",
startTime:"2024-03-06 10:30:26",
startTime:"2024-03-06 15:30:26",
Status:0
}
],
schemaName:"",
allSchemaName:[],

View File

@ -6,7 +6,7 @@
<a-row :gutter="24">
<a-col :md="4" :sm="8">
<a-form-item label="登录地址">
<a-input placeholder="请输入" v-model="queryParam.keyWord"></a-input>
<a-input placeholder="请输入" v-model="queryParam.ipInfo"></a-input>
</a-form-item>
</a-col>
<a-col :md="4" :sm="8">
@ -14,11 +14,6 @@
<a-input placeholder="请输入" v-model="queryParam.keyWord"></a-input>
</a-form-item>
</a-col>
<a-col :md="4" :sm="8">
<a-form-item label="登录状态">
<a-input placeholder="请输入" v-model="queryParam.keyWord"></a-input>
</a-form-item>
</a-col>
<a-col :md="4" :sm="8">
<a-form-item label="开始日期">
<a-date-picker v-model="queryParam.startTime" />
@ -46,13 +41,6 @@
<div style="height:calc(100vh - 316px);background: #e6e9f1;overflow:hidden;padding: 15px;">
<a-table ref="table" size="middle" rowKey="id" :columns="columns" :dataSource="dataSource"
:pagination="ipagination" :loading="loading" @change="handleTableChange">
<div v-show="queryParam.logType == 2" slot="expandedRowRender" slot-scope="record" style="margin: 0">
<div style="margin-bottom: 5px"><a-badge status="success" style="vertical-align: middle;" /><span
style="vertical-align: middle;">请求方法:{{ record.method }}</span></div>
<div><a-badge status="processing" style="vertical-align: middle;" /><span
style="vertical-align: middle;">请求参数:{{ record.requestParam }}</span></div>
</div>
<!-- 字符串超长截取省略号显示-->
<span slot="logContent" slot-scope="text, record">
<j-ellipsis :value="text" :length="40" />
@ -101,38 +89,27 @@ export default {
}
},
{
title: '登录名称',
title: '登录用户',
align: "left",
dataIndex: 'logContent',
dataIndex: 'userid',
scopedSlots: { customRender: 'logContent' },
sorter: true
},
{
title: '登录地址',
dataIndex: 'userid',
align: "center",
sorter: true
},
{
title: '浏览器',
title: '用户名称',
dataIndex: 'username',
align: "center",
sorter: true
},
{
title: '操作系统',
title: '登录地址',
dataIndex: 'ip',
align: "center",
sorter: true
},
{
title: '登录状态',
dataIndex: 'logType_dictText',
align: "center",
},
{
title: '操作信息',
dataIndex: 'costTime',
dataIndex: 'logContent',
align: "center",
sorter: true
},
@ -187,7 +164,12 @@ export default {
searchReset() {
var that = this;
var logType = that.queryParam.logType;
that.queryParam = {}; //
that.queryParam = {
ipInfo: '',
createTimeRange: [],
logType: '1',
keyWord: '',
}; //
that.queryParam.logType = logType;
that.loadData(this.ipagination.current);
},