<template is="clue-record" data="{{ followupList as clueList, applyList as list }}"></template>
模版的页面如下
<template name="clue-list-card">
<view class="clue-list">
<view wx:for="{{ clueList }}">
<text class="title">{{ index + 1 }}.{{ item.name }}</text>
<text class="time">{{ item.createTime }}</text>
</view>
</view>
<view wx:if="{{ list.length == 0 }}">添加</view>
</template>
不然如果我A页面的集合数据不是clueList 、list,而B页面是符合这个名称。这样A页面调用比较麻烦
<template is="clue-record" data="{{ clueList: followupList, list: applyList }}"></template>
现在的处理办法就是在A页面也设置clueList 、list参数,但是个人觉得<template>组件如果能支持别名可以更加简洁