Commit a6712e09 authored by xinzhedeai's avatar xinzhedeai

fix:隐患审查ios样式问题处理;首页菜单扫码false值处理

parent 405ccd85
...@@ -86,7 +86,7 @@ window.onload = function () { ...@@ -86,7 +86,7 @@ window.onload = function () {
} }
}, },
scanCode(toData) { scanCode(toData) {
if (toData === false) { if (!toData) {
lightAppJssdk.device.scan({ lightAppJssdk.device.scan({
success: function (data) { success: function (data) {
// 获取到data为二维码的url路径,从这里取请求参数,商户id,在下面跳转本地系统路径 // 获取到data为二维码的url路径,从这里取请求参数,商户id,在下面跳转本地系统路径
......
...@@ -118,4 +118,23 @@ body { ...@@ -118,4 +118,23 @@ body {
font-size: 0.28rem; /* 文字大小 */ font-size: 0.28rem; /* 文字大小 */
color: #FFFFFF; /* 文字颜色 */ color: #FFFFFF; /* 文字颜色 */
line-height: 1.2; /* 行高 */ line-height: 1.2; /* 行高 */
}
/* ios 样式问题兼容处理 */
.date-tag-wrapper{
/* display: flex; justify-content: start; gap: .34rem; margin: 8px 0;
*/
margin: 8px 0;
overflow: hidden;
}
.date-tag-wrapper > span{
float: left;
margin-right: .34rem;
}
.date-tag-wrapper > .van-tag{
height: .45rem;
width: 1.13rem;
text-align: center;
display: block;
line-height: .45rem;
} }
\ No newline at end of file
...@@ -76,8 +76,9 @@ ...@@ -76,8 +76,9 @@
</div> </div>
<!-- 第二行:状态和时间 --> <!-- 第二行:状态和时间 -->
<div style="display: flex; justify-content: start; gap: .34rem; margin: 8px 0;"> <div class="date-tag-wrapper">
<van-tag :type="statusTagType(item.rectificationStatusName)"> <van-tag :type="statusTagType(item.rectificationStatusName)">
{{ item.rectificationStatusName }} {{ item.rectificationStatusName }}
</van-tag> </van-tag>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment