Showtoast.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view>
  3. <u-popup :show="showtoast" :round="10" mode="center" >
  4. <view style="width: 550rpx;
  5. height: 560rpx;
  6. background: linear-gradient(to right,#E8F0FB,#F8E7FD);
  7. border-radius: 28rpx;padding: 60rpx 120rpx;box-sizing: border-box;" class="u-flex-col u-col-center">
  8. <image src="../static/tishi.png" mode="" style="width: 84rpx;height: 84rpx;"></image>
  9. <text style="font-size: 32rpx;margin-top: 40rpx;">成为认证会员才能</text>
  10. <text style="font-size: 32rpx;">进行该操作</text>
  11. <view class="" style="width: 310rpx;
  12. height: 84rpx;
  13. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  14. border-radius: 46rpx;color: #fff;font-size: 32rpx;line-height: 84rpx;text-align: center;margin: 50rpx 0 32rpx;" @click="torenzheng">
  15. 立即认证
  16. </view>
  17. <text style="font-size: 30rpx;color: #A2A2A2;" @click="cancel">取消</text>
  18. </view>
  19. </u-popup>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. name:"showtoast",
  25. data() {
  26. return {
  27. };
  28. },
  29. props:{
  30. showtoast:{
  31. type:Boolean,
  32. default:true
  33. }
  34. },
  35. methods:{
  36. torenzheng(){
  37. uni.switchTab({
  38. url:'../auth/auth'
  39. })
  40. },
  41. cancel(){
  42. this.$emit('canceltoast')
  43. }
  44. }
  45. }
  46. </script>
  47. <style lang="scss">
  48. </style>