|
|
@@ -37,7 +37,7 @@
|
|
|
<inventory-dialog :visible.sync="inventoryVisible" @close="onInventoryClose"></inventory-dialog>
|
|
|
<character-dialog :visible.sync="characterVisible" @close="onCharacterClose"></character-dialog>
|
|
|
<shop-dialog :visible.sync="shopVisible" @close="onShopClose" @buy="onShopBuy"></shop-dialog>
|
|
|
- <task-dialog :visible.sync="taskVisible" @close="onTaskClose"></task-dialog>
|
|
|
+ <task-dialog class="task-dialog" :visible.sync="taskVisible" @close="onTaskClose"></task-dialog>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -416,4 +416,9 @@ export default {
|
|
|
margin-top: 10rpx;
|
|
|
}
|
|
|
}
|
|
|
+.task-dialog{
|
|
|
+ ::v-deep.dialog-content{
|
|
|
+ background: transparent !important;
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|