• 微信小程序组件 模块化错和叹号


    wxml 页面
    <import src="/pages/lianxi/lianxi.wxml" />  //引入文件
    <view style='position:fixed;left:0;top:0;'>
    <template is="showToastMyTan">
    <text>haha</text>
    </template>
    </view>
     
    //模板
    <template name="showToastCuo">
    <view class='showToast-box'>
    <view class='showToast-all'>
    <view class='showToast-img'>
    <image src='../../imgs/towast/icon_1.png'></image>
    </view>
    <view class=' showToast-text'>
    <text>失败</text>
    </view>
    </view>
    </view>
    </template>
    <template name="showToastMyTan">
    <view class='showToast-box'>
    <view class='showToast-all'>
    <view class='showToast-img'>
    <image src='../../imgs/towast/icon_2.png'></image>
    </view>
    <view class=' showToast-text'>
    <text>失败</text>
    </view>
    </view>
    </view>
    </template>
     
     
    /* 弹出框 */
    .showToast-box{
    100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    }
    .showToast-all{
    180rpx;
    height:220rpx;
    background:rgb(90,90,90);
    border-radius:13rpx;
    overflow:hidden;
    box-sizing:border-box;
    margin: 0 auto;
    margin-top: 50%;
    }
    .showToast-img{
    45%;
    height:45%;
    margin:0 auto;
    margin-top:40rpx;
    }
    .showToast-img image{
    100%;
    height:100%;
    }
    .showToast-text{
    padding:5rpx;
    100%;
    margin-top:5rpx;
    color:#fff;
    font-size:31rpx;
    box-sizing:border-box;
    overflow:hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    }
     
     
     
  • 相关阅读:
    [NOI2009]管道取珠
    Rebalance再均衡
    生产者分区写入策略
    Kafka事务
    幂等性
    消费者组
    Kafka中的重要概念
    偏移量offset
    服务注册和发现的意思,Spring cloud如何实现?
    负载平衡的意义
  • 原文地址:https://www.cnblogs.com/dianzan/p/7872274.html
Copyright © 2020-2023  润新知