diff --git a/backend/src/main/java/io/dataease/auth/util/JWTUtils.java b/backend/src/main/java/io/dataease/auth/util/JWTUtils.java index 8dbed6faf2..452c38812b 100644 --- a/backend/src/main/java/io/dataease/auth/util/JWTUtils.java +++ b/backend/src/main/java/io/dataease/auth/util/JWTUtils.java @@ -85,8 +85,10 @@ public class JWTUtils { public static boolean loginExpire(String token){ if (Login_Interval==0) { String property = CommonBeanFactory.getBean(Environment.class).getProperty("dataease.login_timeout"); - int seconds = StringUtils.isNotEmpty(property) ? Integer.parseInt(property): (10*60); - Login_Interval = seconds * 1000; + // 默认超时时间是8h + int minute = StringUtils.isNotEmpty(property) ? Integer.parseInt(property): (8*60); + // 分钟换算成毫秒 + Login_Interval = minute * 1000 * 60; } Long now = System.currentTimeMillis(); Long lastOperateTime = tokenLastOperateTime(token); diff --git a/backend/src/main/resources/application.properties b/backend/src/main/resources/application.properties index 69f15f7e2a..0f07e87ea1 100644 --- a/backend/src/main/resources/application.properties +++ b/backend/src/main/resources/application.properties @@ -62,10 +62,12 @@ spring.mvc.log-request-details=true pagehelper.PageRowBounds=true #excel等用户上传文件路径 upload.file.path=/opt/dataease/data/upload/ + +#初始密码和登录超时时间移到/opt/dataease/conf/dataease.properties #用户初始密码,如果不设置默认是DataEase123.. -dataease.init_password=DataEase123456 -#登录超时时间单位s 设置默认30分钟 如果雨不设置 默认10分钟也就是10*60 -dataease.login_timeout=1800 +#dataease.init_password=DataEase123456 +#登录超时时间单位min +#dataease.login_timeout=480 diff --git a/frontend/src/views/chart/components/table/TableNormal.vue b/frontend/src/views/chart/components/table/TableNormal.vue index 4936bf98c5..3e0055582c 100644 --- a/frontend/src/views/chart/components/table/TableNormal.vue +++ b/frontend/src/views/chart/components/table/TableNormal.vue @@ -113,7 +113,7 @@ export default { const that = this setTimeout(function() { const currentHeight = document.documentElement.clientHeight - const tableMaxHeight = currentHeight - 56 - 40 - 84 - that.$refs.title.offsetHeight - 8 * 2 - 20 + const tableMaxHeight = currentHeight - 56 - 40 - 84 - that.$refs.title.offsetHeight - 20 let tableHeight if (that.chart.data) { tableHeight = (that.chart.data.tableRow.length + 2) * 36 diff --git a/frontend/src/views/chart/view/ChartEdit.vue b/frontend/src/views/chart/view/ChartEdit.vue index 7e0fd9471c..8fc2719451 100644 --- a/frontend/src/views/chart/view/ChartEdit.vue +++ b/frontend/src/views/chart/view/ChartEdit.vue @@ -75,7 +75,7 @@
{{ $t('chart.title') }} - {{ $t('chart.confirm') }} + {{ $t('chart.confirm') }} @@ -97,7 +97,7 @@
@@ -125,30 +125,21 @@
- - 样式优先级 - - 视图 - 仪表盘 - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + +
{{ $t('chart.result_filter') }} @@ -204,10 +195,8 @@ -
- - -
+ + @@ -264,7 +253,6 @@ import FilterItem from '../components/drag-item/FilterItem' import ChartComponent from '../components/ChartComponent' import bus from '@/utils/bus' import DatasetChartDetail from '../../dataset/common/DatasetChartDetail' -import html2canvas from 'html2canvas' // shape attr,component style import { @@ -306,7 +294,6 @@ export default { dimension: [], quota: [], view: { - stylePriority: 'panel', xaxis: [], yaxis: [], show: true, @@ -344,7 +331,8 @@ export default { { required: true, message: this.$t('commons.input_content'), trigger: 'change' } ] }, - tabStatus: false + tabStatus: false, + data: {} } }, computed: { @@ -386,10 +374,7 @@ export default { this.quota = response.data.quota }) }, - saveWithSnapshot(){ - this.save('true') - }, - save(withSnapshot) { + save(getData) { const view = JSON.parse(JSON.stringify(this.view)) view.id = this.view.id view.sceneId = this.view.sceneId @@ -431,29 +416,19 @@ export default { view.customAttr = JSON.stringify(view.customAttr) view.customStyle = JSON.stringify(view.customStyle) view.customFilter = JSON.stringify(view.customFilter) - debugger - if (withSnapshot==='true') { - html2canvas(this.$refs.imageWrapper).then(canvas => { - const snapshot = canvas.toDataURL('image/jpeg', 0.2) // 0.2是图片质量 - if (snapshot !== '') { - view.snapshot = snapshot - debugger - post('/chart/view/save', view).then(response => { - // this.get(response.data.id); - this.getData(response.data.id) - this.$store.dispatch('chart/setChartSceneData', null) - this.$store.dispatch('chart/setChartSceneData', response.data) - }) - } - }) - } else { - post('/chart/view/save', view).then(response => { - // this.get(response.data.id); + post('/chart/view/save', view).then(response => { + // this.get(response.data.id); + // this.getData(response.data.id) + + if (getData) { this.getData(response.data.id) - this.$store.dispatch('chart/setChartSceneData', null) - this.$store.dispatch('chart/setChartSceneData', response.data) - }) - } + } else { + this.getChart(response.data.id) + } + + this.$store.dispatch('chart/setChartSceneData', null) + this.$store.dispatch('chart/setChartSceneData', response.data) + }) }, closeEdit() { // 从仪表盘入口关闭 @@ -474,7 +449,26 @@ export default { this.view.customFilter = this.view.customFilter ? JSON.parse(this.view.customFilter) : {} // 将视图传入echart组件 this.chart = response.data - console.log(JSON.stringify(this.chart)) + this.data = response.data.data + // console.log(JSON.stringify(this.chart)) + }) + } else { + this.view = {} + } + }, + getChart(id) { + if (id) { + post('/chart/view/get/' + id, {}).then(response => { + this.initTableData(response.data.tableId) + this.view = JSON.parse(JSON.stringify(response.data)) + this.view.xaxis = this.view.xaxis ? JSON.parse(this.view.xaxis) : [] + this.view.yaxis = this.view.yaxis ? JSON.parse(this.view.yaxis) : [] + this.view.customAttr = this.view.customAttr ? JSON.parse(this.view.customAttr) : {} + this.view.customStyle = this.view.customStyle ? JSON.parse(this.view.customStyle) : {} + this.view.customFilter = this.view.customFilter ? JSON.parse(this.view.customFilter) : {} + + response.data.data = this.data + this.chart = response.data }) } else { this.view = {} @@ -483,26 +477,26 @@ export default { // 左边往右边拖动时的事件 start1(e) { - console.log(e) + // console.log(e) e.clone.className = 'item-on-move' e.item.className = 'item-on-move' }, end1(e) { - console.log(e) + // console.log(e) e.clone.className = 'item' e.item.className = 'item' this.refuseMove(e) this.removeCheckedKey(e) - this.save() + this.save(true) }, // 右边往左边拖动时的事件 start2(e) { - console.log(e) + // console.log(e) }, end2(e) { - console.log(e) + // console.log(e) this.removeDuplicateKey(e) - this.save() + this.save(true) }, removeCheckedKey(e) { const that = this @@ -551,7 +545,7 @@ export default { }, // move回调方法 onMove(e, originalEvent) { - console.log(e) + // console.log(e) this.moveId = e.draggedContext.element.id // //不允许停靠 // if (e.relatedContext.element.id == 1) return false; @@ -562,12 +556,12 @@ export default { }, dimensionItemChange(item) { - this.save() + this.save(true) }, dimensionItemRemove(item) { this.view.xaxis.splice(item.index, 1) - this.save() + this.save(true) }, quotaItemChange(item) { @@ -577,12 +571,12 @@ export default { // ele.summary = item.summary // } // }) - this.save() + this.save(true) }, quotaItemRemove(item) { this.view.yaxis.splice(item.index, 1) - this.save() + this.save(true) }, onColorChange(val) { @@ -639,7 +633,7 @@ export default { }, saveDimensionFilter() { this.view.xaxis[this.dimensionItem.index].filter = this.dimensionItem.filter - this.save() + this.save(true) this.closeDimensionFilter() }, @@ -652,7 +646,7 @@ export default { }, saveQuotaFilter() { this.view.yaxis[this.quotaItem.index].filter = this.quotaItem.filter - this.save() + this.save(true) this.closeQuotaFilter() }, @@ -666,7 +660,7 @@ export default { } else if (this.itemForm.renameType === 'dimension') { this.view.xaxis[this.itemForm.index].name = this.itemForm.name } - this.save() + this.save(true) this.closeRename() }, closeRename() {