You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
409 B

<template>
<view class="order-refund-button" @click="$emit('click')">
<slot>退款</slot>
</view>
</template>
<script>
export default {
}
</script>
<style lang="scss">
.order-refund-button{
width: 192upx;
text-align: center;
border-radius: 10upx;
background-color: #fff;
border: 2upx solid $mColor;
@include flcw(32upx, 84upx, $mColor, 500);
}
</style>