popup-module.vue 566 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="">
  3. <uni-popup background-color="#fff" ref="popup" type="bottom" border-radius="10px 10px 0 0">
  4. <view class="p-24 box-border-box">
  5. <!-- <view class="r-20" :class="colorType === 1?'':colorType === 2?'':''">
  6. </view> -->
  7. </view>
  8. </uni-popup>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. components: {},
  14. props: {
  15. colorType: {}
  16. },
  17. data() {
  18. return {}
  19. },
  20. onLoad(data) {},
  21. mounted() {},
  22. methods: {
  23. openPop() {
  24. this.$refs.popup.open()
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. </style>