fix: 修改弹窗样式

This commit is contained in:
zhangds 2024-04-06 16:42:47 +08:00
parent 121fbe3881
commit 57eebcee91
2 changed files with 6 additions and 6 deletions

View File

@ -437,8 +437,8 @@ body {
width: 2.835rem;
min-height: 1.5rem;
margin: 0 auto;
position: relative;
top: 30%;
position: absolute;
top: 20%;
background-color: #fff;
border-radius: 0.15rem;
text-align: center;
@ -492,5 +492,6 @@ body {
padding: 0.05rem 0.2rem;
}
.err-list-p {
padding: 0.05rem;
padding: 0.02rem;
font-size: 0.12rem;
}

View File

@ -132,7 +132,7 @@
<!-- 弹窗 -->
<div class="tip-pop mask" v-show="popMsg">
<div class="tip-main" style="top: 10%;">
<div class="tip-main">
<div class="tip-pop-head">
<img src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/img/combining/zh-dd.png"
class="tip-pop-dd" />
@ -157,8 +157,7 @@
请根据界面错误原因进行调整后再重试
</p>
<div v-if="errListShow"
style="padding: 0 0.2rem;overflow-y: scroll;max-height: 2rem;text-align: left;">
<div v-if="errListShow" style="padding: 0 0.2rem;text-align: left;">
<p class="err-list-p" v-for="(item,index) in goods.err_msg">错误{{Number(index) + 1}}: {{ item }}
</p>
</div>