🎨 处理 cursor 样式

This commit is contained in:
BTMuli
2023-06-17 22:25:01 +08:00
parent a335dff636
commit a7021856ba
6 changed files with 6 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
<template>
<TItemBox :model-value="box" />
<TItemBox :model-value="box" style="cursor: pointer" />
</template>
<script lang="ts" setup>
// vue

View File

@@ -1,5 +1,5 @@
<template>
<TItemBox :model-value="box" />
<TItemBox :model-value="box" style="cursor: pointer" />
</template>
<script lang="ts" setup>
// vue

View File

@@ -1,5 +1,5 @@
<template>
<TItemBox :model-value="box" />
<TItemBox :model-value="box" style="cursor: pointer" />
</template>
<script lang="ts" setup>
// vue

View File

@@ -1,5 +1,5 @@
<template>
<TItemBox :model-value="box" />
<TItemBox :model-value="box" style="cursor: pointer;" />
</template>
<script lang="ts" setup>
// vue

View File

@@ -32,7 +32,6 @@ defineProps<TMiniWeaponProps>();
position: relative;
width: 150px;
height: 45px;
cursor: pointer;
display: flex;
flex-direction: row;
border-radius: 5px;

View File

@@ -4,8 +4,8 @@
<div class="box-div">
<div class="toc-top">
<div class="toc-icon">
<TibCalendarAvatar v-if="itemType=== 'character'" v-model="itemVal" size="100px" />
<TibCalendarWeapon v-if="itemType=== 'weapon'" v-model="itemVal" size="100px" />
<TibCalendarAvatar v-if="itemType=== 'character'" v-model="itemVal" size="100px" style="cursor: default" />
<TibCalendarWeapon v-if="itemType=== 'weapon'" v-model="itemVal" size="100px" style="cursor: default" />
</div>
<div class="toc-material-grid">
<TCalendarMaterial v-for="item in itemVal.materials" :item="item" />