fix(系统设置): 操作日志增加默认查询条件
--bug=1008235 --user=王孝刚 【系统设置】操作日志建议增加一个默认查询条件 https://www.tapd.cn/55049933/s/1072735
This commit is contained in:
parent
630f1d5ed3
commit
e27184955f
|
@ -145,7 +145,9 @@ export default {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
total: 0,
|
total: 0,
|
||||||
items: [],
|
items: [],
|
||||||
condition: {},
|
condition: {
|
||||||
|
times: [new Date().getTime() - 3600 * 1000 * 24 * 7, new Date().getTime()],
|
||||||
|
},
|
||||||
tableData: [],
|
tableData: [],
|
||||||
userList: [],
|
userList: [],
|
||||||
screenHeight: 'calc(100vh - 270px)',
|
screenHeight: 'calc(100vh - 270px)',
|
||||||
|
@ -275,7 +277,6 @@ export default {
|
||||||
this.initTableData();
|
this.initTableData();
|
||||||
},
|
},
|
||||||
initProject(url) {
|
initProject(url) {
|
||||||
this.condition = {};
|
|
||||||
this.result = this.$get(url, response => {
|
this.result = this.$get(url, response => {
|
||||||
let projects = response.data;
|
let projects = response.data;
|
||||||
let projectIds = [];
|
let projectIds = [];
|
||||||
|
|
Loading…
Reference in New Issue