|
@@ -0,0 +1,54 @@
|
|
|
+<template>
|
|
|
+ <view>
|
|
|
+ <u-navbar title="激活结果"></u-navbar>
|
|
|
+ <view class="main">
|
|
|
+ <view class="img">
|
|
|
+ <img src="../../assets/img/icon_success.png" alt="">
|
|
|
+ </view>
|
|
|
+ <view class="text">
|
|
|
+ 激活成功
|
|
|
+ </view>
|
|
|
+ <button class="btn">完善充电站设置</button>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ .main{
|
|
|
+ margin-top: 96rpx;
|
|
|
+ .img{
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .text{
|
|
|
+ margin-top: 20px;
|
|
|
+ color: rgba(51, 51, 51, 1);
|
|
|
+ font-size: 20px;
|
|
|
+ text-align: center;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ .btn{
|
|
|
+ margin-top: 80rpx;
|
|
|
+ width: 80.2%;
|
|
|
+ line-height: 44px;
|
|
|
+ border-radius: 8px;
|
|
|
+ background-color: rgba(24, 90, 198, 1);
|
|
|
+ color: rgba(255, 255, 255, 1);
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+</style>
|