Compare commits
No commits in common. "febdfd7b4f366a8cd126806c8c6a3e147841d5dd" and "54be84c3009ec0b0cab320b9d279aa09d8216537" have entirely different histories.
febdfd7b4f
...
54be84c300
|
@ -37,7 +37,7 @@
|
|||
:IsCanConnectInternet="IsCanConnectInternet"
|
||||
v-if="activeIndex === '2'"
|
||||
/>
|
||||
<login-log v-if="activeIndex === '3'" :id="identityUserId" :isMine="true" />
|
||||
<login-log v-if="activeIndex === '3'" :id="userId" :isMine="true" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -64,7 +64,7 @@ export default {
|
|||
}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['identityUserId', 'userName']),
|
||||
...mapGetters(['userId', 'userName']),
|
||||
},
|
||||
mounted() {
|
||||
this.getUserInfo()
|
||||
|
|
|
@ -311,7 +311,7 @@ export default {
|
|||
this.loading = true
|
||||
this.searchData.TrialId = this.$route.query.trialId
|
||||
if (this.isMine) {
|
||||
this.searchData.IdentityUserId = this.id
|
||||
this.searchData.UserId = this.id
|
||||
}
|
||||
getUserLogList(this.searchData)
|
||||
.then((res) => {
|
||||
|
|
Loading…
Reference in New Issue