You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
716 B
10 lines
716 B
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">{{type == 1 ? '选择纸厂' : '选择常看的纸厂'}}</view>
|
|
</cu-custom>
|
|
<wux-cell-group>
|
|
<wux-cell wx:for="{{factoryList}}" wx:key="index" title="{{item.name}}" data-index="{{index}}" bind:click="checkPaper" is-link="{{type == 0}}">
|
|
<text slot="header" class="cuIcon-{{(item.checked || (type == 0 && item.isRecommended))?'roundcheckfill' : 'round'}} text-blue" style="font-size:40rpx;margin-right:18rpx" wx:if="{{type == 0 || type == 4}}"></text>
|
|
<text slot="footer" style="padding:12px 0px 12px 12px" data-fid="{{item.paperMillId}}" catchtap="toFactory" wx:if="{{type == 0}}">查看详情</text>
|
|
</wux-cell>
|
|
</wux-cell-group>
|
|
|