| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!--package-basic-data/pages/share-power/share-power.wxml-->
- <view>
- <view class="background-view">
- <image fit="fill" src="{{imageUrl+'/powerPage_backgorund.png'}}"></image>
- </view>
- <van-sticky scroll-top="0" id="sticky">
- <view style="margin-top: {{menuButtonTop}}px;padding: 15rpx;">
- <van-icon class="back-button-view" wx:if="{{!leftButtonHide}}" size="20" name="arrow-left" color="#ffffff" slot="left" bind:tap="closeMiniProgram" />
- </view>
- <dk-navbar titleFontColor="#000000" leftButtonHide="{{true}}" operateShow="{{false}}" fixed="{{true}}"
- navbarTitle="助力抢劵" customStyle="background-color:transparent;" titleFontColor="#ffffff" />
- </van-sticky>
- <view class="content">
- <view class="content-title">
- <view class="top">东科智云,进销存利器</view>
- <view>精准高效,管理无忧!</view>
- </view>
- <view>
- <view class="message-view">
- <view class="user-avatar">
- <image fit="fill" src="{{imageUrl+'/user_icon.png'}}"></image>
- </view>
- <view class="message">
- 谢谢你来帮我,你也可以使用“东科智云”免费进销存软件哦~
- </view>
- </view>
- <view class="share-card">
- <view class="title">
- <view class="top">助力优惠劵</view>
- <view>购买更便宜</view>
- </view>
- <view class="prize-view">
- <view class="number">{{params.discount}}</view>折
- </view>
- </view>
- <view class="icon-view">
- <view class="info">
- <view class="user-icon" wx:for="{{helpUserNumber}}">
- <image fit="fill" src="{{imageUrl+'/user_icon.png'}}" />
- </view>
- <view class="user-icon" wx:for="{{needHelpUserNumber - helpUserNumber}}">
- <van-icon class="icon" name="plus" />
- </view>
- </view>
- </view>
- <view class="button-view">
- <van-button size="normal" wx:if="{{helpFlag}}" color="#FF7B1A" custom-style="width:100%;margin-top:30rpx;border-radio:50rpx;" bind:tap="helpMe">帮我点一下
- </van-button>
- <van-button size="normal" wx:else color="#FF7B1A" custom-style="width:100%;margin-top:30rpx;border-radio:50rpx;">我也想使用软件
- </van-button>
- <van-button size="normal" color="#FF7B1A1A;"
- custom-style="width:100%;margin-top:30rpx;margin-bottom:50rpx;border-radio:50rpx;" bind:tap="toUnderstand">了解软件</van-button>
- </view>
- </view>
- <van-overlay show="{{ powerModelShowFlag }}" z-index="100" bind:click="onClickHide" />
- <view wx:if="{{powerModelShowFlag}}" class="power-model">
- <view class="model-view">
- <view class="close-view" bind:tap="closePowerModel">
- <view class="close-button">
- <van-icon name="cross" />
- </view>
- </view>
- <view class="title">
- <image class="title-image" mode="widthFix" fit="fill" src="{{imageUrl + 'power-friend.png'}}" ></image>
- </view>
- <view class="title-view">
- <view class="user-avatar">
- <image fit="fill" src="{{imageUrl+'/user_icon.png'}}"></image>
- </view>
- <view class="font-view">你的好友,ta需要你的帮助!</view>
- </view>
- <view class="coupon-recrive-card">
- <view class="info">
- <view class="number">{{params.discount}}</view>折
- </view>
- <view class="font">优惠劵</view>
- </view>
- <view class="button-view">
- <van-button size="normal" color="#FF7B1A" custom-style="width:100%;margin-top:30rpx;border-radio:50rpx;" bind:tap="helpMe">
- 点击帮助ta助力</van-button>
- </view>
- </view>
- </view>
- </view>
- </view>
|