vue活动会场页面遇到问题记录

1.h5页面中的图片在安卓app打开不显示,原因是图片地址没有添加安全域名https
2.这个需要用 cnpm i node-sass去重新安装


image.png

3.在pc页面可以用自定义鼠标上移样式

.className:hover{cursor:url('../img/123.png'),default;} 

4.在app页面中ios苹果手存在倒计时不显示的情况

时间格式是:2020-05-20 10:10:10: 000+000 的时候 不显示
解决方式时间格式改为时间戳

5.超出隐藏 需要开关

 .txt{
        height: 34px;
        font-size: 14px;
        text-align: center;
        color: #fff;
        padding: 8px;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
           /*! autoprefixer: off */
        -webkit-box-orient: vertical;
            /* autoprefixer: on */
      }

你可能感兴趣的:(vue活动会场页面遇到问题记录)