msgPop.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <view class="">
  3. <view class="collpopul" v-for="(i,index) in msgpop" :key="index">
  4. <view class="contxt">
  5. <image src="../../static/mine/Collect_yellow.png" mode="aspectFill" style="width: 30rpx;height: 30rpx;">
  6. </image>
  7. {{i.collAoff?'收藏成功':'已取消'}}
  8. <!-- 收藏成功 -->
  9. </view>
  10. <!-- <view class="goMore" @click="goMore"> -->
  11. <view class="goMore" @click="goMore" v-if="i.collAoff">
  12. <view class="">
  13. 去看看
  14. </view>
  15. <view class="" style="display: flex;height: 100%;justify-content: center;align-items: center;">
  16. <image src="../../static/yyyou.png" mode="aspectFill" style="width: 30rpx;height: 32rpx;">
  17. </image>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. name: "msgPop",
  26. computed: {
  27. msgpop() {
  28. return this.$store.state.msgpop; // 直接访问 Vuex 中的状态数据
  29. }
  30. },
  31. props: {
  32. itemlist: {
  33. type: Array,
  34. default () {
  35. return []
  36. }
  37. },
  38. // 0 活动 1课程
  39. goNum: {
  40. type: Number,
  41. default () {
  42. return 0
  43. }
  44. }
  45. },
  46. data() {
  47. return {}
  48. },
  49. methods: {
  50. // 删除
  51. delData() {
  52. this.itemlist.shift()
  53. },
  54. // 跳转收藏页面
  55. goMore() {
  56. uni.navigateTo({
  57. url: `/pages/mineCollNew/mineCollNew?ty=${this.goNum}`
  58. })
  59. },
  60. }
  61. }
  62. </script>
  63. <style lang="scss">
  64. .collpopul {
  65. position: fixed;
  66. padding: 0 30rpx;
  67. background-color: #fff;
  68. // top: 15%;
  69. box-shadow: 0rpx 10rpx 10rpx 5rpx rgba(0, 0, 0, .1);
  70. z-index: 100;
  71. width: 650rpx;
  72. height: 90rpx;
  73. left: 50%;
  74. transform: translate(-50%, 0);
  75. border-radius: 30rpx;
  76. display: flex;
  77. align-items: center;
  78. // animation: collpopul 1s cubic-bezier(0,0,0.25,1) forwards;
  79. .contxt {
  80. flex: 1;
  81. font-weight: 580;
  82. font-size: 30rpx;
  83. display: flex;
  84. align-items: center;
  85. image {
  86. padding-right: 10rpx;
  87. }
  88. }
  89. .goMore {
  90. // width: 120rpx;
  91. display: flex;
  92. // height: 35rpx;
  93. height: 100%;
  94. line-height: 30rpx;
  95. align-items: center;
  96. color: #F44265;
  97. font-size: 30rpx;
  98. font-weight: bold;
  99. }
  100. }
  101. @keyframes collpopul {
  102. 0% {
  103. // background: red;
  104. top: 0;
  105. }
  106. 100% {
  107. // background: red;
  108. top: 15%;
  109. }
  110. // 100%{
  111. // opacity: 0;
  112. // }
  113. }
  114. </style>