Files
new-dianxiaorui-uniapp/pages/mine/multipleNumbers.vue
PC-202306242200\Administrator f529129c93 first commit
2026-03-31 10:53:43 +08:00

42 lines
1.3 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>