store/packageG/o2o/HomeSeller/HomeSeller.wxml

87 lines
4.3 KiB
Plaintext

<!--packageG/o2o/HomeSeller/HomeSeller.wxml-->
<view>
<template name="backup">
<backup datas="{{remote_data}}" component_id="{{id}}"></backup>
</template>
<template name="blank">
<blank datas="{{remote_data}}" component_id="{{id}}"></blank>
</template>
<template name="buttons">
<buttons datas="{{remote_data}}" component_id="{{id}}"></buttons>
</template>
<template name="community">
<community datas="{{remote_data}}" component_id="{{id}}" store_id="{{store_id}}"></community>
</template>
<template name="cube">
<cube datas="{{remote_data}}" component_id="{{id}}"></cube>
</template>
<template name="goods">
<goods datas="{{remote_data}}" component_id="{{id}}" page_id="{{page_id}}" index="{{index}}" bottomShowBolIndex="{{bottomShowBolIndex}}" bottomShowBol="{{bottomShowBol}}"></goods>
</template>
<template name="line">
<line datas="{{remote_data}}" component_id="{{id}}"></line>
</template>
<template name="location">
<location datas="{{remote_data}}" component_id="{{id}}" page_id="{{page_id}}"></location>
</template>
<template name="maps">
<maps datas="{{remote_data}}" component_id="{{id}}"></maps>
</template>
<template name="notice">
<notice datas="{{remote_data}}" component_id="{{id}}"></notice>
</template>
<template name="richtext">
<richtext datas="{{remote_data}}" component_id="{{id}}"></richtext>
</template>
<template name="simplegraph">
<simplegraph datas="{{remote_data}}" component_id="{{id}}"></simplegraph>
</template>
<template name="slideshow">
<slideshow datas="{{remote_data}}" component_id="{{id}}"></slideshow>
</template>
<template name="suspendbutton">
<suspendbutton datas="{{remote_data}}" component_id="{{id}}"></suspendbutton>
</template>
<template name="title">
<title datas="{{remote_data}}" component_id="{{id}}"></title>
</template>
<template name="videos">
<videos datas="{{remote_data}}" component_id="{{id}}"></videos>
</template>
<template name="storebalance">
<storebalance datas="{{remote_data}}" component_id="{{id}}" store_id="{{store_id}}"></storebalance>
</template>
<template name="storeimagegroup">
<storeimagegroup datas="{{remote_data}}" component_id="{{id}}"></storeimagegroup>
</template>
<view>
<block wx:for="{{store_components}}" wx:key="index">
<template wx:if="{{item.component_key =='U_backup' && btnFlag}}" is="backup" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_blank'}}" is="blank" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_button'}}" is="buttons" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_community'}}" is="community" data="{{...item,store_id}}" />
<template wx:if="{{item.component_key =='U_cube'}}" is="cube" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_goods'}}" is="goods" data="{{...item,page_id,bottomShowBolIndex,bottomShowBol,index}}" />
<template wx:if="{{item.component_key =='U_line'}}" is="line" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_location'}}" is="location" data="{{...item,page_id}}" />
<template wx:if="{{item.component_key =='U_maps'}}" is="maps" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_notice'}}" is="notice" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_richtext'}}" is="richtext" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_simplegraph'}}" is="simplegraph" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_slideshow'}}" is="slideshow" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_suspendbutton'}}" is="suspendbutton" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_title'}}" is="title" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_video'}}" is="videos" data="{{...item}}" />
<template wx:if="{{item.component_key =='U_storebalance'}}" is="storebalance" data="{{...item,store_id}}" />
<template wx:if="{{item.component_key =='U_storeimagegroup'}}" is="storeimagegroup" data="{{...item}}" />
</block>
</view>
<U_foot isDiy="{{true}}" foot_type="{{foot_type}}" datas="{{bottom_info}}" wx:if="{{foot_type}}"></U_foot>
</view>