fix
This commit is contained in:
parent
242f197c01
commit
454aec9072
2
public
2
public
@ -1 +1 @@
|
||||
Subproject commit f6819e2e47393c645049c52eb80c0a019bd45b2b
|
||||
Subproject commit abba2f3b7b37e44afeb301f958caf9b39ed19657
|
17
src/App.vue
17
src/App.vue
@ -854,6 +854,21 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="loc === 'c'" class="text-content">
|
||||
<div class="iten-start">
|
||||
<h3><span class="icon-power"></span> ALL</h3>
|
||||
</div>
|
||||
<div v-for="(ii, index) in rcards.data">
|
||||
<div class="card-owner-one">
|
||||
<p :id="ii.id"><button>id:{{ ii.id }}</button></p>
|
||||
<p :id="ii.id">[{{ ii.h }} / {{ ii.p }}]</p>
|
||||
<p v-if="ii.ten"><span class="icon-power"></span></p>
|
||||
<p v-if="ii.ten_skill == true"><span class="icon-ai"></span></p>
|
||||
<p><img :src='"/card/card_" + ii.id + ".webp"'></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-if="loc === 'te'" class="text-content">
|
||||
<div class="iten-start">
|
||||
<p><code>/ten h</code> : ヘルプ</p>
|
||||
@ -996,7 +1011,7 @@ export default {
|
||||
}
|
||||
this.api_url = "https://api.syui.ai/";
|
||||
}
|
||||
if (loc === 'owner' || loc === 'te'){
|
||||
if (loc === 'owner' || loc === 'te' || loc === 'c'){
|
||||
axios
|
||||
.get("/json/card.json")
|
||||
.then(response => (this.rcards = response));
|
||||
|
Loading…
Reference in New Issue
Block a user