42 lines
1.3 KiB
Vue
42 lines
1.3 KiB
Vue
<template>
|
||
<view class="p30" style="padding: 30rpx">
|
||
<view class="multipleNumbers_1">
|
||
<view class="multipleNumbers_1_info" style="width: 330rpx">
|
||
<view style="font-weight: bold; font-size: 40rpx; color: #232323; margin-bottom: 36rpx">开通一号多充</view>
|
||
<view style="font-weight: 400; font-size: 24rpx; color: #333333; text-align: left">
|
||
开通后,可以让您使用同一个 账号,同时给多辆车进行充电。 你可以按需调整同时充电的数量
|
||
</view>
|
||
</view>
|
||
<image style="width: 330rpx" mode="widthFix" src="/static/image/Multiple_numbers.png"></image>
|
||
</view>
|
||
<view style="height: 30rpx"></view>
|
||
<view class="multipleNumbers_1">
|
||
<view style="font-weight: bold; font-size: 32rpx; color: #232323">开通一号多充</view>
|
||
<view style="display: flex; align-items: center">
|
||
<view>1</view>
|
||
<image src="/static/icon/youjin.png" style="width: 28rpx; margin-left: 15rpx" mode="widthFix"></image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {};
|
||
},
|
||
methods: {}
|
||
};
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.multipleNumbers_1 {
|
||
background: #ffffff;
|
||
border-radius: 10rpx 10rpx 10rpx 10rpx;
|
||
padding: 25rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
}
|
||
</style>
|