登录日志查询条件变更
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
bbf780352a
commit
a00edf4439
|
@ -212,6 +212,7 @@ const searchDataDefault = () => {
|
||||||
LoginUserName: null,
|
LoginUserName: null,
|
||||||
PageIndex: 1,
|
PageIndex: 1,
|
||||||
PageSize: 20,
|
PageSize: 20,
|
||||||
|
UserId: "",
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
export default {
|
export default {
|
||||||
|
@ -221,7 +222,7 @@ export default {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
name: {
|
id: {
|
||||||
type: String,
|
type: String,
|
||||||
default: "",
|
default: "",
|
||||||
},
|
},
|
||||||
|
@ -266,7 +267,7 @@ export default {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
this.searchData.TrialId = this.$route.query.trialId;
|
this.searchData.TrialId = this.$route.query.trialId;
|
||||||
if (this.isMine) {
|
if (this.isMine) {
|
||||||
this.searchData.LoginUserName = this.name;
|
this.searchData.UserId = this.id;
|
||||||
}
|
}
|
||||||
getUserLogList(this.searchData)
|
getUserLogList(this.searchData)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|
Loading…
Reference in New Issue