56 lines
1.0 KiB
Vue
56 lines
1.0 KiB
Vue
<template>
|
|
<view class="">
|
|
<u-popup :show="show" @close="close" @open="open" closeable>
|
|
<view class="v12-px-3">
|
|
<view class="v12-text-center v12-font-32 v12-py-3 v12-secondary-dark-text">
|
|
服务说明
|
|
</view>
|
|
<view class="wrap v12-dark-text">
|
|
<view class="service-title">
|
|
<text class="v12-dark-text v12-font-32">
|
|
售后服务
|
|
</text>
|
|
</view>
|
|
<view class="">
|
|
<text class="v12-font-28 v12-font-bold">
|
|
{{ info }}
|
|
</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</u-popup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
info: ''
|
|
},
|
|
data() {
|
|
return {
|
|
show:false
|
|
}
|
|
},
|
|
methods: {
|
|
close() {
|
|
this.show = false
|
|
this.$emit('close')
|
|
},
|
|
open() {
|
|
this.show = true
|
|
this.$emit('open')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.wrap{
|
|
height: 388rpx;
|
|
height: 120rpx;
|
|
background: rgba(197,39,51,0.1);
|
|
border-radius: 16rpx;
|
|
padding: 20rpx;
|
|
}
|
|
</style> |