UI更新
This commit is contained in:
@@ -92,6 +92,11 @@ defineProps({
|
|||||||
.players {
|
.players {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
.players::-webkit-scrollbar {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
.players > view {
|
.players > view {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 85px;
|
height: 85px;
|
||||||
|
|||||||
@@ -76,9 +76,8 @@ const goBack = () => {
|
|||||||
</view>
|
</view>
|
||||||
<ScreenHint :show="showHint">
|
<ScreenHint :show="showHint">
|
||||||
<view v-if="hintType === 1" class="tip-content">
|
<view v-if="hintType === 1" class="tip-content">
|
||||||
<text
|
<text>完成进行中的对局才能开启新的。</text>
|
||||||
>完成进行中的对局才能开启新的。您有正在进行中的对局,是否进入?</text
|
<text>您有正在进行中的对局,是否进入?</text>
|
||||||
>
|
|
||||||
<view>
|
<view>
|
||||||
<button hover-class="none" @click="() => (showHint = false)">
|
<button hover-class="none" @click="() => (showHint = false)">
|
||||||
不进入
|
不进入
|
||||||
|
|||||||
@@ -93,8 +93,8 @@ defineProps({
|
|||||||
<style scoped>
|
<style scoped>
|
||||||
.container {
|
.container {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
margin: 15px;
|
margin: 0 15px;
|
||||||
margin-bottom: 0;
|
margin-top: 5px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
|
|||||||
@@ -210,6 +210,11 @@ const toOrderPage = () => {
|
|||||||
.vip-content > view:nth-child(2) {
|
.vip-content > view:nth-child(2) {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
.vip-content > view:nth-child(2)::-webkit-scrollbar {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
.my-orders {
|
.my-orders {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|||||||
@@ -295,6 +295,11 @@ const onPractiseLoading = async (page) => {
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
.contest-melee::-webkit-scrollbar {
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
.contest-team > view {
|
.contest-team > view {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user