store/packageA/mycomponent/goodsComponent/plugin/market/market.wxml

33 lines
1.3 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- packageA/mycomponent/goodsComponent/plugin/market/market.wxml -->
<block wx:if="{{is_market}}">
<view class="act_in">
<view class="act1">应用</view>
<view class="canTxt">
<text>{{prdocut_market_name_apps || ""}}</text>
</view>
<view class="act3">
<text></text>
</view>
<view catchtap='marketShowTap' class="ang_right"
style="padding: 5rpx 20rpx;border-radius: 20rpx;border: 1rpx solid #f14e4e;color:#f14e4e;">
插件
</view>
</view>
<view class="service-box" wx:if="{{prdocut_market.is_show==1}}">赠送售后服务时长 <text
style="color:red;margin-left:13rpx;">{{prdocut_market.service_time}}天</text>
<text style="font-size:24rpx;">剩余售后服务时长730天封顶大于则不再增加</text>
</view>
</block>
<van-popup show="{{marketShow}}" round closeable position="bottom" bind:close="closeMarketShow"
custom-style="width:100%;height:70%;">
<view class="popup-title">
插件列表
<view class="closs_icon">
<!-- <van-icon name="cross" catchtap="closeMarketShow" size='20px' /> -->
</view>
</view>
<view class="popup-box">
<view class="popup-item van-hairline--bottom" wx:for="{{prdocut_market_name}}" wx:key="index">{{item}}</view>
</view>
</van-popup>