1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="cu-modal" :class="{ show: visible }">
- <view class="mask" @click="close"></view>
- <view class="cu-dialog" style="background-color: transparent; width: 100%">
- <view
- class="relative wrapper"
- :style="{ backgroundImage: 'url(' + ossurl.welfare.blessingsRuleBg + ')' }"
- >
- <view class="content">
- <!-- <view class="font6 color-1 paddingB15 text-center">祈福规则</view> -->
- <view class=" paddingT5">
- 1、用户可以将仓库内商品按照对应数量门槛合成为祈福池中的祈福商品,合成后,用于合成的商品将被替换为祈福商品发放到仓库中,可前往仓库提货或出售;
- </view>
- <view class=" paddingT5">
- 2、选择消耗的商品后,会累计合成进度条,当进度条达到100%时即可合成;
- </view>
- <view class=" paddingT5">
- 3、当所选商品累计进度超过100%时同样可以合成,超出部分默认消耗且无法退换,请合理选择需要消耗的商品;
- </view>
- <view class=" paddingT5">
- 4、祈福池中的商品均有数量限制,售完即止,不定时更新;
- </view>
- <view class=" paddingT5">5、本活动最终解释权归本平台所有。</view>
- </view>
- </view>
- <view class="paddingT30 flex-align-center">
- <view class="close cuIcon-close" @click="close"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import ossurl from '@/utils/ossurl'
- export default {
- data() {
- return {
- ossurl,
- visible: false
- }
- },
- methods: {
- show() {
- this.visible = true
- },
- close() {
- this.visible = false
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mask {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
- .wrapper {
- z-index: 1001;
- margin: 0 60rpx;
- background-size: 100% 100%;
- padding: 30rpx;
- border-radius: 30rpx;
- padding-top: 210rpx;
- height: 864rpx;
- width: 634rpx;
- font-size: 24rpx;
- .content {
- position: relative;
- border-radius: 10px;
- padding: 30rpx;
- color: #6d5d28;
- }
- }
- .close {
- width: 64rpx;
- height: 64rpx;
- background: #d8d8d8;
- font-size: 32rpx;
- text-align: center;
- line-height: 64rpx;
- color: #444;
- border-radius: 50%;
- }
- </style>
|