123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677 |
- <!-- components/diy-group/index.wxml -->
- <block wx:if="{{column == 'template1'}}">
- <view class="goods" style="width:{{style.width}}%;margin:{{style.margin.top * 2}}rpx {{style.margin.right * 2}}rpx {{style.margin.bottom * 2}}rpx {{style.margin.left * 2}}rpx;padding:{{style.padding.top * 2}}rpx {{style.padding.right * 2}}rpx {{style.padding.bottom * 2}}rpx {{style.padding.left * 2}}rpx;background:{{style.background}};border-radius:{{style.borderRadius * 2}}rpx;">
- <block wx:for="{{list}}" wx:key="index">
- <view
- class="one_box"
- style="width: {{style.groupWidth}}%;background: {{style.groupBackground}}; border-radius: {{style.groupBorderRadius * 2}}rpx;margin:{{style.groupMargin.top * 2}}rpx {{style.groupMargin.right * 2}}rpx {{style.groupMargin.bottom * 2}}rpx {{style.groupMargin.left * 2}}rpx;padding:{{style.groupPadding.top * 2}}rpx {{style.groupPadding.right * 2}}rpx {{style.groupPadding.bottom * 2}}rpx {{style.groupPadding.left * 2}}rpx;"
- data-id="{{item.objectId}}"
- bind:tap="toUrl"
- >
- <image
- class="image"
- src="{{item.goods.image}}"
- style="border-radius: {{style.groupBorderRadius * 2}}rpx {{style.groupBorderRadius * 2}}rpx 0 0"
- mode="widthFix"
- lazy-load="false"
- binderror=""
- bindload=""
- />
- <view class="bargain_box" wx:if="{{data.showCountdown}}">
- <view class="bargin_font">拼团</view>
- <view class="bargin_count">
- <block wx:if="{{item.time > 0}}">
- <view class="bargin_end">距结束仅剩</view>
- <van-count-down
- use-slot
- time="{{item.time}}"
- data-index="{{index}}"
- bind:change="onChange"
- format="DD 天 HH 时 mm 分 ss 秒"
- >
- <text class="item">{{ item.timeDate.days }} 天</text>
- <text class="item">{{ item.timeDate.hours }} 时</text>
- <text class="item">{{ item.timeDate.minutes }} 分</text>
- <text class="item">{{ item.timeDate.seconds }} 秒</text>
- </van-count-down>
- </block>
- <block wx:else>
- <view class="bargin_end2">已结束</view>
- </block>
- </view>
- </view>
- <view class="commodity">
- <view class="name_info">
- <view class="tag" wx:if="{{data.groupPeople}}">{{item.people}}人团</view>
- <view class="commodity_name" style="font-size:{{style.titleSize * 2}}rpx;">
- {{item.goods.name}}
- </view>
- </view>
- <view class="commodity_detailed" style="font-size:{{style.descSize * 2}}rpx">
- {{item.goods.desc}}
- </view>
- <view class="commodity_detailed" wx:if="{{data.showTotal}}">
- 仅剩{{item.goods.total}}件
- </view>
- <view class="commodity_number">
- <view class="row-left">
- <view class="price" wx:if="{{data.showGroupPrice}}">
- ¥{{item.price}}
- </view>
- <view class="original" wx:if="{{data.showPrice}}">
- ¥{{item.goods.price}}
- </view>
- </view>
- <van-icon
- name="cart-circle-o"
- wx:if="{{buybutton == 1}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="add-o"
- wx:if="{{buybutton == 2}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular3"
- wx:if="{{buybutton == 3}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular3 circular4"
- wx:if="{{buybutton == 4}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <van-icon
- name="add"
- wx:if="{{buybutton == 5}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="shopping-cart-o"
- wx:if="{{buybutton == 6}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular7"
- wx:if="{{buybutton == 7}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular7 circular8"
- wx:if="{{buybutton == 8}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </block>
- <block wx:if="{{column == 'template2'}}">
- <view class="two_box" style="width:{{style.width}}%;margin:{{style.margin.top * 2}}rpx {{style.margin.right * 2}}rpx {{style.margin.bottom * 2}}rpx {{style.margin.left * 2}}rpx;padding:{{style.padding.top * 2}}rpx {{style.padding.right * 2}}rpx {{style.padding.bottom * 2}}rpx {{style.padding.left * 2}}rpx;background:{{style.background}};border-radius:{{style.borderRadius * 2}}rpx;">
- <block wx:for="{{list}}" wx:key="index">
- <view
- class="line_box"
- style="width: {{style.groupWidth}}%;background: {{style.groupBackground}}; border-radius: {{style.groupBorderRadius * 2}}rpx;margin:{{style.groupMargin.top * 2}}rpx {{style.groupMargin.right * 2}}rpx {{style.groupMargin.bottom * 2}}rpx {{style.groupMargin.left * 2}}rpx;padding:{{style.groupPadding.top * 2}}rpx {{style.groupPadding.right * 2}}rpx {{style.groupPadding.bottom * 2}}rpx {{style.groupPadding.left * 2}}rpx;"
- data-id="{{item.objectId}}"
- bind:tap="toUrl"
- >
- <image
- class="image"
- src="{{item.goods.image}}"
- mode="aspectFill"
- lazy-load="false"
- binderror=""
- bindload=""
- />
- <view class="end_box" wx:if="{{data.showCountdown}}">
- <block wx:if="{{item.time > 0}}">
- <view class="bargin_end">距结束仅剩</view>
- <van-count-down
- use-slot
- time="{{item.time}}"
- data-index="{{index}}"
- bind:change="onChange"
- format="DD 天 HH 时 mm 分 ss 秒"
- >
- <text class="item">{{ item.timeDate.days }} 天</text>
- <text class="item">{{ item.timeDate.hours }} 时</text>
- <text class="item">{{ item.timeDate.minutes }} 分</text>
- <text class="item">{{ item.timeDate.seconds }} 秒</text>
- </van-count-down>
- </block>
- <block wx:else>
- <view class="bargin_end2">已结束</view>
- </block>
- </view>
- <view class="two_end">
- <view class="two_tag" style="font-size:{{style.titleSize * 2}}rpx;">
- <span class="people" wx:if="{{data.groupPeople}}">{{item.people}}人团</span>
- {{item.goods.name}}
- </view>
- <view class="commodity_desc" style="font-size:{{style.descSize * 2}}rpx">
- {{item.goods.desc || '暂无产品简介'}}
- </view>
- <view class="end_detailed" wx:if="{{data.showTotal}}">
- 仅剩{{item.goods.total}}件
- </view>
- <view class="end_info">
- <view class="end_number">
- <view class="money1" wx:if="{{data.showGroupPrice}}">
- ¥{{item.price}}
- </view>
- <view class="money2" wx:if="{{data.showPrice}}">
- ¥{{item.goods.price}}
- </view>
- </view>
- <van-icon
- name="cart-circle-o"
- wx:if="{{buybutton == 1}}"
- color="red"
- size="48rpx"
- />
- <van-icon
- name="add-o"
- wx:if="{{buybutton == 2}}"
- color="red"
- size="48rpx"
- />
- <view
- class="circular3"
- wx:if="{{buybutton == 3}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular3 circular4"
- wx:if="{{buybutton == 4}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <van-icon
- name="add"
- wx:if="{{buybutton == 5}}"
- color="red"
- size="48rpx"
- />
- <van-icon
- name="shopping-cart-o"
- wx:if="{{buybutton == 6}}"
- color="red"
- size="48rpx"
- />
- <view
- class="circular7"
- wx:if="{{buybutton == 7}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular7 circular8"
- wx:if="{{buybutton == 8}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </block>
- <block wx:if="{{column == 'template3'}}">
- <view class="three_box" style="width:{{style.width}}%;margin:{{style.margin.top * 2}}rpx {{style.margin.right * 2}}rpx {{style.margin.bottom * 2}}rpx {{style.margin.left * 2}}rpx;padding:{{style.padding.top * 2}}rpx {{style.padding.right * 2}}rpx {{style.padding.bottom * 2}}rpx {{style.padding.left * 2}}rpx;background:{{style.background}};border-radius:{{style.borderRadius * 2}}rpx;">
- <block wx:for="{{list}}" wx:key="index">
- <view
- class="three"
- style="width: {{style.groupWidth}}%;background: {{style.groupBackground}}; border-radius: {{style.groupBorderRadius * 2}}rpx;margin:{{style.groupMargin.top * 2}}rpx {{style.groupMargin.right * 2}}rpx {{style.groupMargin.bottom * 2}}rpx {{style.groupMargin.left * 2}}rpx;padding:{{style.groupPadding.top * 2}}rpx {{style.groupPadding.right * 2}}rpx {{style.groupPadding.bottom * 2}}rpx {{style.groupPadding.left * 2}}rpx;"
- data-id="{{item.objectId}}"
- bind:tap="toUrl"
- >
- <image
- class="image"
- src="{{item.goods.image}}"
- mode="widthFix"
- lazy-load="false"
- binderror=""
- bindload=""
- />
- <view class="three-end">
- <view class="three_tag" style="font-size:{{style.titleSize * 2}}rpx;">
- <span class="people" wx:if="{{data.groupPeople}}">{{item.people}}人团</span>
- {{item.goods.name}}
- </view>
- <view class="commodity_desc" style="font-size:{{style.descSize * 2}}rpx">
- {{item.goods.desc || '暂无产品简介'}}
- </view>
- <view class="three_name2" wx:if="{{data.showTotal}}">
- 仅剩{{item.goods.total}}件
- </view>
- <view class="end_info">
- <view class="end_number">
- <view class="money1" wx:if="{{data.showGroupPrice}}">
- ¥{{item.price}}
- </view>
- <view class="money2" wx:if="{{data.showPrice}}">
- ¥{{item.goods.price}}
- </view>
- </view>
- <van-icon
- name="cart-circle-o"
- wx:if="{{buybutton == 1}}"
- color="red"
- size="48rpx"
- />
- <van-icon
- name="add-o"
- wx:if="{{buybutton == 2}}"
- color="red"
- size="48rpx"
- />
- <view
- class="circular3"
- wx:if="{{buybutton == 3}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular3 circular4"
- wx:if="{{buybutton == 4}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <van-icon
- name="add"
- wx:if="{{buybutton == 5}}"
- color="red"
- size="48rpx"
- />
- <van-icon
- name="shopping-cart-o"
- wx:if="{{buybutton == 6}}"
- color="red"
- size="48rpx"
- />
- <view
- class="circular7"
- wx:if="{{buybutton == 7}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular7 circular8"
- wx:if="{{buybutton == 8}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </block>
- <block wx:if="{{column == 'template4'}}">
- <view class="for_box" style="width:{{style.width}}%;margin:{{style.margin.top * 2}}rpx {{style.margin.right * 2}}rpx {{style.margin.bottom * 2}}rpx {{style.margin.left * 2}}rpx;padding:{{style.padding.top * 2}}rpx {{style.padding.right * 2}}rpx {{style.padding.bottom * 2}}rpx {{style.padding.left * 2}}rpx;background:{{style.background}};border-radius:{{style.borderRadius * 2}}rpx;">
- <block wx:for="{{list}}" wx:key="index">
- <view
- class="detailed"
- style="width: {{style.groupWidth}}%;background: {{style.groupBackground}}; border-radius: {{style.groupBorderRadius * 2}}rpx;margin:{{style.groupMargin.top * 2}}rpx {{style.groupMargin.right * 2}}rpx {{style.groupMargin.bottom * 2}}rpx {{style.groupMargin.left * 2}}rpx;padding:{{style.groupPadding.top * 2}}rpx {{style.groupPadding.right * 2}}rpx {{style.groupPadding.bottom * 2}}rpx {{style.groupPadding.left * 2}}rpx;"
- data-id="{{item.objectId}}"
- bind:tap="toUrl"
- >
- <view class="detailed_left">
- <image
- class="image"
- src="{{item.goods.image}}"
- mode="widthFix"
- lazy-load="false"
- binderror=""
- bindload=""
- />
- <view class="end_box" wx:if="{{data.showCountdown}}">
- <block wx:if="{{item.time > 0}}">
- <view class="bargin_end">距结束仅剩</view>
- <van-count-down
- use-slot
- time="{{item.time}}"
- data-index="{{index}}"
- bind:change="onChange"
- format="DD 天 HH 时 mm 分 ss 秒"
- >
- <text class="item">{{ item.timeDate.days }} 天</text>
- <text class="item">{{ item.timeDate.hours }} 时</text>
- <text class="item">{{ item.timeDate.minutes }} 分</text>
- <text class="item">{{ item.timeDate.seconds }} 秒</text>
- </van-count-down>
- </block>
- <block wx:else>
- <view class="bargin_end2">已结束</view>
- </block>
- </view>
- </view>
- <view class="detailed-txt">
- <view class="detailed_top">
- <view class="four_tag" style="font-size:{{style.titleSize * 2}}rpx;">
- <span class="people" wx:if="{{data.groupPeople}}">
- {{item.people}}人团
- </span>
- {{item.goods.name}}
- </view>
- <view class="commodity_desc" style="font-size:{{style.descSize * 2}}rpx">
- {{item.goods.desc || '暂无产品简介'}}
- </view>
- <view class="three_name2" wx:if="{{data.showTotal}}">
- 仅剩{{item.goods.total}}件
- </view>
- </view>
- <view class="price_info">
- <view class="price">
- <view class="group_price" wx:if="{{data.showGroupPrice}}">
- ¥{{item.price}}
- </view>
- <view class="original_price" wx:if="{{data.showPrice}}">
- ¥{{item.goods.price}}
- </view>
- </view>
- <van-icon
- name="cart-circle-o"
- wx:if="{{buybutton == 1}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="add-o"
- wx:if="{{buybutton == 2}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular3"
- wx:if="{{buybutton == 3}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular3 circular4"
- wx:if="{{buybutton == 4}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <van-icon
- name="add"
- wx:if="{{buybutton == 5}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="shopping-cart-o"
- wx:if="{{buybutton == 6}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular7"
- wx:if="{{buybutton == 7}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular7 circular8"
- wx:if="{{buybutton == 8}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </block>
- <block wx:if="{{column == 'template5'}}">
- <view class="goods" style="width:{{style.width}}%;margin:{{style.margin.top * 2}}rpx {{style.margin.right * 2}}rpx {{style.margin.bottom * 2}}rpx {{style.margin.left * 2}}rpx;padding:{{style.padding.top * 2}}rpx {{style.padding.right * 2}}rpx {{style.padding.bottom * 2}}rpx {{style.padding.left * 2}}rpx;background:{{style.background}};border-radius:{{style.borderRadius * 2}}rpx;">
- <block wx:for="{{list}}" wx:key="index">
- <view
- class="one_box {{ index == 0 ? 'groupWidth0' : ''}}"
- style="background: {{style.groupBackground}}; border-radius: {{style.groupBorderRadius * 2}}rpx;margin:{{style.groupMargin.top * 2}}rpx {{style.groupMargin.right * 2}}rpx {{style.groupMargin.bottom * 2}}rpx {{style.groupMargin.left * 2}}rpx;padding:{{style.groupPadding.top * 2}}rpx {{style.groupPadding.right * 2}}rpx {{style.groupPadding.bottom * 2}}rpx {{style.groupPadding.left * 2}}rpx;"
- data-id="{{item.objectId}}"
- bind:tap="toUrl"
- >
- <image
- class="image"
- src="{{item.goods.image}}"
- style="border-radius: {{style.groupBorderRadius * 2}}rpx {{style.groupBorderRadius * 2}}rpx 0 0"
- mode="widthFix"
- lazy-load="false"
- binderror=""
- bindload=""
- />
- <view class="bargain_box" wx:if="{{data.showCountdown}}">
- <view class="bargin_font">拼团</view>
- <view class="bargin_count">
- <block wx:if="{{item.time > 0}}">
- <view class="bargin_end">距结束仅剩</view>
- <van-count-down
- use-slot
- time="{{item.time}}"
- data-index="{{index}}"
- bind:change="onChange"
- format="DD 天 HH 时 mm 分 ss 秒"
- >
- <text class="item item1">{{ item.timeDate.days }} 天</text>
- <text class="item item1">{{ item.timeDate.hours }} 时</text>
- <text class="item item1">{{ item.timeDate.minutes }} 分</text>
- <text class="item item1">{{ item.timeDate.seconds }} 秒</text>
- </van-count-down>
- </block>
- <block wx:else>
- <view class="bargin_end2">已结束</view>
- </block>
- </view>
- </view>
- <view class="commodity">
- <view class="name_info">
- <view class="tag people" wx:if="{{data.groupPeople}}">
- {{item.people}}人团
- </view>
- <view class="commodity_name" style="font-size:{{style.titleSize * 2}}rpx;">
- {{item.goods.name}}
- </view>
- </view>
- <view class="commodity_detailed" style="font-size:{{style.descSize * 2}}rpx">
- {{item.goods.desc}}
- </view>
- <view class="commodity_detailed" wx:if="{{data.showTotal}}">
- 仅剩{{item.goods.total}}件
- </view>
- <view class="commodity_number">
- <view class="row-left">
- <view class="price" wx:if="{{data.showGroupPrice}}">
- ¥{{item.price}}
- </view>
- <view class="original" wx:if="{{data.showPrice}}">
- ¥{{item.goods.price}}
- </view>
- </view>
- <van-icon
- name="cart-circle-o"
- wx:if="{{buybutton == 1}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="add-o"
- wx:if="{{buybutton == 2}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular3"
- wx:if="{{buybutton == 3}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular3 circular4"
- wx:if="{{buybutton == 4}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <van-icon
- name="add"
- wx:if="{{buybutton == 5}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="shopping-cart-o"
- wx:if="{{buybutton == 6}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular7"
- wx:if="{{buybutton == 7}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular7 circular8"
- wx:if="{{buybutton == 8}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- </view>
- </view>
- </view>
- </block>
- </view>
- </block>
- <block wx:if="{{column == 'template6'}}">
- <view class="scroll_info" style="width:{{style.width}}%;margin:{{style.margin.top * 2}}rpx {{style.margin.right * 2}}rpx {{style.margin.bottom * 2}}rpx {{style.margin.left * 2}}rpx;padding:{{style.padding.top * 2}}rpx {{style.padding.right * 2}}rpx {{style.padding.bottom * 2}}rpx {{style.padding.left * 2}}rpx;background:{{style.background}};border-radius:{{style.borderRadius * 2}}rpx;">
- <scroll-view scroll-x="true">
- <block wx:for="{{list}}" wx:key="index">
- <view
- class="six-box"
- style="width: {{style.groupWidth}}%;background: {{style.groupBackground}}; border-radius: {{style.groupBorderRadius * 2}}rpx;margin:{{style.groupMargin.top * 2}}rpx {{style.groupMargin.right * 2}}rpx {{style.groupMargin.bottom * 2}}rpx {{style.groupMargin.left * 2}}rpx;padding:{{style.groupPadding.top * 2}}rpx {{style.groupPadding.right * 2}}rpx {{style.groupPadding.bottom * 2}}rpx {{style.groupPadding.left * 2}}rpx;"
- data-id="{{item.objectId}}"
- bind:tap="toUrl"
- >
- <image
- class="image"
- src="{{item.goods.image}}"
- style="border-radius: {{style.groupBorderRadius * 2}}rpx {{style.groupBorderRadius * 2}}rpx 0 0"
- mode="widthFix"
- lazy-load="false"
- binderror=""
- bindload=""
- />
- <view class="end_info">
- <view class="six_tag" style="font-size:{{style.titleSize * 2}}rpx;">
- <span class="people" wx:if="{{data.groupPeople}}">
- {{item.people}}人团
- </span>
- {{item.goods.name}}
- </view>
- <view class="commodity_desc" style="font-size:{{style.descSize * 2}}rpx">
- {{item.goods.desc || '暂无产品简介'}}
- </view>
- <view class="six_name" wx:if="{{data.showTotal}}">
- 仅剩{{item.goods.total}}件
- </view>
- <view class="price_info">
- <view class="price">
- <view class="group_price" wx:if="{{data.showGroupPrice}}">
- ¥{{item.price}}
- </view>
- <view class="original_price" wx:if="{{data.showPrice}}">
- ¥{{item.goods.price}}
- </view>
- </view>
- <van-icon
- name="cart-circle-o"
- wx:if="{{buybutton == 1}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="add-o"
- wx:if="{{buybutton == 2}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular3"
- wx:if="{{buybutton == 3}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular3 circular4"
- wx:if="{{buybutton == 4}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <van-icon
- name="add"
- wx:if="{{buybutton == 5}}"
- color="red"
- size="60rpx"
- />
- <van-icon
- name="shopping-cart-o"
- wx:if="{{buybutton == 6}}"
- color="red"
- size="60rpx"
- />
- <view
- class="circular7"
- wx:if="{{buybutton == 7}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- <view
- class="circular7 circular8"
- wx:if="{{buybutton == 8}}"
- style="font-size:{{style.btnSize * 2}}rpx;color:{{style.btnColor}}"
- >
- {{style.btnText}}
- </view>
- </view>
- </view>
- </view>
- </block>
- </scroll-view>
- </view>
- </block>
|