123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <u-popup :show="show" @close="close" :safeAreaInsetBottom="safeAreaInsetBottom&&mode=='bottom'" @open="open" :mode="mode">
- <view class="pop-content">
- <slot name="title">
- <view class="popup-title" v-if="title">
- {{title}}
- </view>
- </slot>
- <slot />
- <slot name="botton">
- <view class="popup-btn" v-if="showBtn">
- <xbutton width="200rpx" size="large" bgColor="#fff" color="#2C6FF3" borderColor="#2C6FF3" @click="close">取消</xbutton>
- <xbutton delay="1500" width="200rpx" size="large" @click="submit">确定</xbutton>
- </view>
- </slot>
- </view>
- </u-popup>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- props: {
- mode: {
- type: String,
- require: false,
- default: 'bottom'
- },
- show: {
- type: Boolean,
- require: true,
- default: false
- },
- showBtn: {
- type: Boolean,
- require: true,
- default: true
- },
- title: {
- type: String,
- require: true,
- default: ''
- },
- safeAreaInsetBottom:{
- type: Boolean,
- require: false,
- default: true
- }
- },
- model: {
- prop: 'value',
- event: 'change'
- },
- watch: {
- value: {
- handler(newVal, oldVal) {
- this.fileList = newVal
- },
- immediate: true,
- deep: true
- }
- },
- methods: {
- close() {
- this.$emit('close', false)
- },
- open() {
- this.$emit('open', true)
- },
-
- submit(){
- this.$emit('confirm')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .pop-content{
- box-shadow: 0 2rpx 10rpx 0 rgba(0,0,0,0.1);
- }
-
- .popup-title {
- font-size: 32rpx;
- font-weight: bold;
- padding: 24rpx;
- }
- .popup-btn {
- display: flex;
- flex-flow: row nowrap;
- justify-content: space-around;
- width: 100%;
- padding:50rpx 24rpx 24rpx;
- .cu-btn {
- background-color: #2C6FF3;
- color: #fff;
- width: 200rpx;
- }
- .cu-btn1 {
- background-color: green;
- }
- }
- </style>
|