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.
31 lines
641 B
31 lines
641 B
<template>
|
|
<view class="wallet-modal-button" :class="{ 'green': green }" @click="$emit('click')">
|
|
<slot>充值记录</slot>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
green: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.wallet-modal-button{
|
|
width: 240upx;
|
|
height: 88upx;
|
|
border: 2upx solid $mColor;
|
|
border-radius: 10upx;
|
|
text-align: center;
|
|
@include flcw($color: $mColor, $height: 84upx);
|
|
&.green{
|
|
background: $mColor;
|
|
color: #fff;
|
|
}
|
|
}
|
|
</style>
|