美文网首页
2019-03-06

2019-03-06

作者: 有一种感动叫做丶只有你懂 | 来源:发表于2019-03-06 15:23 被阅读0次

    1.新建template文件夹

    2.template文件中写好模板用name命名

    <template name="priceShow">
      <view class='template-Content'>
        <view class='template-price'>
          <text class='t-moneyicon'>¥</text> {{price}}
        </view>
        <view class='template-count'>X{{count}}</view>
      </view>
    </template>
    

    3.页面中使用(data传值是重点)

    在页面中
    <import src="../../../../template/CountShow.wxml"/>
      <view class='serviceCount'>
        <template is="priceShow" data="{{...{price:12324,count:789} }}"></template>
      </view>
    
    在wxss中
    @import '../../../../template/CountShow.wxss';
    

    //注意:要给模板里面传多个值的时候可以用js的拓展运算符,最后一个花括号要跟外层的俩个花括号用空格隔开

    相关文章

      网友评论

          本文标题:2019-03-06

          本文链接:https://www.haomeiwen.com/subject/vcztpqtx.html