宜呗小程序--微信小程序
Lzk
2025-08-05 b7bcaf556aa2424e808b6e6426ab22df9cfe11c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<template>
  <uv-popup
      ref="benefit"
      mode="center"
      round="13"
      zIndex="66"
      :closeOnClickOverlay="false"
      @close="close"
      @open="open"
  >
    <view class="confirm-wrap" style="w80%">
      <view class="icon">
        <image class="img-icon" v-if="!flage" :src="`${$images}/static/img/details/confirm1.png`" />
        <image class="img-icon" v-else :src="`${$images}/static/img/details/confirm2.png`" />
      </view>
      <view class="tips">
        即将跳转行权页面,行权后不可撤销哦~
      </view>
 
    </view>
  </uv-popup>
</template>
<script>
export default {
  props: {
    flage: {
      type: Boolean,
      default: true,
    },
  },
  data() {
    return {
      flag:true
    };
  },
  methods: {
    close() {
      this.$refs.benefit.close();
    },
    open() {
      this.$refs.benefit.open();
    },
  },
};
</script>
<style lang="scss" scoped>
.confirm-wrap{
  padding: 20rpx 78rpx;
}
.img-icon{
  width: 156rpx;
  height: 156rpx;
  position: relative;
  top: -100rpx;
  z-index: 99;
}
.tips{
  font-size: 34rpx;
  color: #333333;
  font-weight: bold;
}
</style>