Files
anmo/business_uniapp/src/packages/pages/cash_out/components/bottom.vue
2025-08-19 14:16:51 +08:00

29 lines
563 B
Vue

<template>
<view class="bottom fixed z-50 bottom-0 bg-white w-full pt-[20rpx] px-[30rpx]">
<u-button type="primary" @click="beClick">提现</u-button>
</view>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const emit = defineEmits(['click'])
const btnClass = ref({
background: '#424755',
color: '#fff'
})
//点击
const beClick = () => {
console.log(uni.$u.color['error'])
emit('click')
}
</script>
<style lang="scss" scoped>
.bottom {
padding-bottom: calc(env(safe-area-inset-bottom) + 20rpx);
}
</style>