12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view>
- <ujp-navbar title="激活结果"></ujp-navbar>
- <view class="main">
- <view class="img">
- <img src="../../assets/img/icon_success.png" alt="">
- </view>
- <view class="text">
- 激活成功
- </view>
- <button
- @click="gotoStations()"
- class="btn">完善充电站设置</button>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- gotoStations(){
- uni.redirectTo({
- url:"/pagesFinance/user/stationsList",
- })
- }
-
- }
- }
- </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>
|