| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="">
- <uni-popup background-color="#fff" ref="popup" type="bottom" border-radius="10px 10px 0 0">
- <view class="p-24 box-border-box">
- <!-- <view class="r-20" :class="colorType === 1?'':colorType === 2?'':''">
-
- </view> -->
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- export default {
- components: {},
- props: {
- colorType: {}
- },
- data() {
- return {}
- },
- onLoad(data) {},
- mounted() {},
- methods: {
- openPop() {
- this.$refs.popup.open()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|