登录日志查询条件变更
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,
PageIndex: 1,
PageSize: 20,
UserId: "",
};
};
export default {
@ -221,7 +222,7 @@ export default {
type: Boolean,
default: false,
},
name: {
id: {
type: String,
default: "",
},
@ -266,7 +267,7 @@ export default {
this.loading = true;
this.searchData.TrialId = this.$route.query.trialId;
if (this.isMine) {
this.searchData.LoginUserName = this.name;
this.searchData.UserId = this.id;
}
getUserLogList(this.searchData)
.then((res) => {