29 lines
563 B
Vue
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>
|