31 lines
520 B
Vue
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>
|