登录日志查询条件变更
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2024-05-30 15:53:07 +08:00
parent bbf780352a
commit a00edf4439
1 changed files with 3 additions and 2 deletions

View File

@ -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) => {