update @样式,组合页跳转

This commit is contained in:
huangzhen 2024-09-14 15:17:06 +08:00
parent bb151608fb
commit bf635ed940
4 changed files with 14 additions and 4 deletions

View File

@ -154,3 +154,6 @@ html {
min-height: 667px !important; min-height: 667px !important;
} }
// input 自动填入 背景去除
input:-webkit-autofill { box-shadow: 0 0 0 1000px white inset !important;}

View File

@ -323,7 +323,7 @@ export default {
// if (type === 'start') { // if (type === 'start') {
// this.dialogText = ''; // this.dialogText = '';
// } // }
return this.pollTime = setTimeout(() => { that.orderPolling() }, 3000); this.pollTime = setTimeout(() => { that.orderPolling() }, 3000);
} }
if (sessionStorage.getItem('autoReceive') === 'is') { if (sessionStorage.getItem('autoReceive') === 'is') {
sessionStorage.setItem('autoReceive', 'no'); sessionStorage.setItem('autoReceive', 'no');
@ -634,9 +634,12 @@ export default {
color: #F56B6B; color: #F56B6B;
line-height: 16px; line-height: 16px;
text-align: left; text-align: left;
padding-left: 6px; padding: 0 6px;
box-sizing: border-box; box-sizing: border-box;
background-color: rgba(255, 102, 102, 0.20); background-color: rgba(255, 102, 102, 0.20);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.tipTextSuccess { .tipTextSuccess {
color: rgb(127, 190, 122); color: rgb(127, 190, 122);
@ -745,8 +748,8 @@ export default {
margin-right: 8px; margin-right: 8px;
.loadingBtn { .loadingBtn {
display: block; display: block;
width: 16px; width: 14px;
height: 16px; height: 14px;
margin-left: 3px; margin-left: 3px;
animation: loadingBtnRotate 3s linear infinite; animation: loadingBtnRotate 3s linear infinite;
} }

View File

@ -47,6 +47,7 @@
margin-top: 10px; margin-top: 10px;
.tag { .tag {
display: inline; display: inline;
font-size: 18px;
} }
} }
.type { .type {

View File

@ -52,6 +52,9 @@
font-size: 10px; font-size: 10px;
margin-top: 10px; margin-top: 10px;
white-space: nowrap; white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 80px;
} }
} }
} }