60 lines
1.0 KiB
Vue
60 lines
1.0 KiB
Vue
<template>
|
|
<view class="recharge-Service">
|
|
<view class="recharge-Service-Logo">
|
|
<image class="img" :src="logo" mode=""></image>
|
|
</view>
|
|
<view class="recharge-Service-Title">
|
|
{{title}}
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
* @param { logo } 服务商logo
|
|
* @param { title } 服务商名称
|
|
* */
|
|
export default {
|
|
name: "recharge-Service",
|
|
props: {
|
|
logo: {
|
|
type: String,
|
|
default: "http://b2dfdc47e670.66bbn.com/uploads/20210323/33f88897865b9a85c1ac16faa388cd2e.png"
|
|
},
|
|
title: {
|
|
type: String,
|
|
default: "爱奇艺视频"
|
|
}
|
|
},
|
|
data() {
|
|
return {};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.recharge-Service {
|
|
background: linear-gradient(90deg, #FFFDF8, #F9EECC);
|
|
height: 200rpx;
|
|
padding: 0 20rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&-Logo {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
|
|
.img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
&-Title {
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
padding-left: 20rpx;
|
|
}
|
|
}
|
|
</style>
|