zdtap-uniapp-main/components/commonTitle.vue
2025-04-03 11:47:12 +08:00

31 lines
520 B
Vue

<template>
<view style="padding:32rpx 24rpx;" :style="{'background': bg}">
<view class="text-bold" style="font-size: 40rpx;color: #1A1A1A;">{{title}}</view>
<image src="/static/home-arrow-down.png" style="width: 80rpx;height: 70rpx;"></image>
</view>
</template>
<script>
export default {
name: "commonTitle",
data() {
return {
};
},
props: {
title: {
type: String,
default: ""
},
bg: {
type: String,
default: "#F6F6F6"
}
}
}
</script>
<style lang="scss">
</style>