Skip to content

Commit

Permalink
Update characterCard.html
Browse files Browse the repository at this point in the history
  • Loading branch information
zeteticl committed Sep 15, 2024
1 parent 844a493 commit 9cd81b2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions views/characterCard.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ <h4 class="bg-color3 p-1">
<div>
<textarea class="textName" v-model="item.name"
style="width:50px;padding: 1px;">{{item.name}}</textarea>
<span></span>
<span class="centered-text"></span>
<textarea class="textState" v-model="item.itemA"
style="width:55px;padding: 1px;">{{item.itemA}}</textarea>
<span></span>
<span class="centered-text"></span>
<textarea class="textState" v-model="item.itemB"
style="width:55px;padding: 1px;">{{item.itemB}}</textarea>
<button type="button" class="btn btn-link" @click="rolling(item.name)">
Expand Down Expand Up @@ -147,7 +147,8 @@ <h4 class=" bg-color3 p-1">
</textarea><button type="button" class="btn btn-link" v-on:click="rolling(item.name)"><span
class="iconify " data-icon="fa-solid:dice-d20" data-inline="false" data-width="20px"
data-height="20px"></span></button>
<button type="button" class="btn btn-danger btn-delete" v-if="deleteMode" @click="removeItem(index, 1)">
<button type="button" class="btn btn-danger btn-delete" v-if="deleteMode"
@click="removeItem(index, 1)">
刪除
</button>
</div>
Expand All @@ -173,7 +174,8 @@ <h4 class=" bg-color3 p-1">
<textarea class="col textNote" v-model="item.itemA" style="width:180px">
{{item.itemA}}
</textarea>
<button type="button" class="btn btn-danger btn-delete" v-if="deleteMode" @click="removeItem(index, 2)">
<button type="button" class="btn btn-danger btn-delete" v-if="deleteMode"
@click="removeItem(index, 2)">
刪除
</button>
</div>
Expand Down

0 comments on commit 9cd81b2

Please sign in to comment.