1
0
This commit is contained in:
syui 2024-03-23 22:31:29 +09:00
parent 26695cd925
commit 206e88f8e6
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -152,7 +152,7 @@
</div>
<div class="term" v-if="term_status == true">
<iframe :src="'https://term.syui.ai?u=' + username" allowfullscreen frameborder="0"></iframe>
<iframe :src="'https://term.syui.ai?user=' + username + '&id=' + id" allowfullscreen frameborder="0"></iframe>
</div>
<!--
@ -1032,7 +1032,7 @@ export default {
this.model_critical = this.record.data.find((v) => v.username == loc).model_critical;
this.model_critical_d = this.record.data.find((v) => v.username == loc).model_critical_d;
this.user_room = this.record.data.find((v) => v.username == loc).room;
let url = this.api_url + "users/" + this.id + "/card?itemsPerPage=3000";
let url = this.api_url + "users/" + this.id + "/card?itemsPerPage=4000";
axios
.get("/json/card.json")
.then(response => (this.rcards = response));