mirror of
https://github.com/MCSManager/UI.git
synced 2025-02-23 18:49:12 +08:00
修复 手机排版错误情况
This commit is contained in:
parent
59be522eea
commit
2635584e41
@ -146,7 +146,6 @@
|
||||
</div>
|
||||
<span class="color-yellow" v-else-if="scope.row.status == 1">停止中</span>
|
||||
<span class="color-yellow" v-else-if="scope.row.status == 2">启动中</span>
|
||||
|
||||
<span class="color-red" v-else-if="scope.row.status == -1">离线</span>
|
||||
<span class="color-red" v-else>离线</span>
|
||||
<!-- {{ statusToText(scope.row.status) }} -->
|
||||
|
@ -26,8 +26,8 @@
|
||||
<template #title>基本信息</template>
|
||||
<template #default>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12" :offset="0">
|
||||
<LineLabel>
|
||||
<el-col :md="12" :offset="0">
|
||||
<LineLabel class="only-pc-display">
|
||||
<template #title>唯一标识符</template>
|
||||
<template #default>{{ userInfo.uuid }}</template>
|
||||
</LineLabel>
|
||||
@ -42,7 +42,7 @@
|
||||
</template>
|
||||
</LineLabel>
|
||||
</el-col>
|
||||
<el-col :span="12" :offset="0">
|
||||
<el-col :md="12" :offset="0">
|
||||
<LineLabel>
|
||||
<template #title>注册时间</template>
|
||||
<template #default>{{ userInfo.registerTime }}</template>
|
||||
@ -51,7 +51,7 @@
|
||||
<template #title>登录时间</template>
|
||||
<template #default>{{ userInfo.loginTime }}</template>
|
||||
</LineLabel>
|
||||
<LineLabel>
|
||||
<LineLabel class="only-pc-display">
|
||||
<template #title>接口</template>
|
||||
<template #default>
|
||||
{{ moreUserInfo.api }}
|
||||
|
@ -38,7 +38,7 @@
|
||||
:to="{ path: item.path }"
|
||||
:key="index"
|
||||
>
|
||||
控制面板 / {{ item.title }}
|
||||
<span class="only-pc-display">控制面板 / {{ item.title }}</span>
|
||||
</div>
|
||||
<!-- 电脑端显示全部内容 -->
|
||||
<!-- <el-breadcrumb separator="/" style="line-height: 28px" class="only-pc-display">
|
||||
@ -92,7 +92,9 @@
|
||||
<div style="height: 36px; line-height: 36px">
|
||||
<ItemGroup :lr="true">
|
||||
<router-link to="/home">
|
||||
<el-link :underline="false" class="header-a">欢迎您,{{ userInfo.userName }}</el-link>
|
||||
<el-link :underline="false" class="only-pc-display header-a"
|
||||
>欢迎您,{{ userInfo.userName }}</el-link
|
||||
>
|
||||
</router-link>
|
||||
<el-link @click="toPrivate" class="header-a">个人资料</el-link>
|
||||
<el-link @click="logout" class="header-a">退出</el-link>
|
||||
|
Loading…
Reference in New Issue
Block a user