소스 검색

激活充电桩

常志远 2 년 전
부모
커밋
99a19c0eee
5개의 변경된 파일96개의 추가작업 그리고 0개의 파일을 삭제
  1. BIN
      assets/img/pile.png
  2. 6 0
      assets/img/riLine-link.svg
  3. BIN
      assets/img/riLine-qr-scan-2-line@1x.png
  4. 9 0
      pages.json
  5. 81 0
      pagesFinance/user/activatedChargingPile.vue

BIN
assets/img/pile.png


+ 6 - 0
assets/img/riLine-link.svg

@@ -0,0 +1,6 @@
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="24" height="24" style="border-color: rgba(0,0,0,0);border-width: bpx;border-style: undefined" filter="none">
+    
+    <g>
+    <path d="M24.485 20.715l-1.885-1.888 1.885-1.885c1.219-1.208 1.973-2.883 1.973-4.735 0-3.682-2.985-6.667-6.667-6.667-1.851 0-3.526 0.755-4.734 1.973l-1.886 1.887-1.887-1.885 1.888-1.885c1.689-1.689 4.023-2.734 6.6-2.734 5.155 0 9.334 4.179 9.334 9.334 0 2.577-1.045 4.911-2.734 6.6l-1.887 1.885zM20.715 24.485l-1.887 1.885c-1.689 1.689-4.023 2.734-6.6 2.734-5.155 0-9.334-4.179-9.334-9.334 0-2.577 1.045-4.911 2.734-6.6v0l1.887-1.885 1.885 1.888-1.885 1.885c-1.219 1.208-1.973 2.883-1.973 4.735 0 3.682 2.985 6.667 6.667 6.667 1.851 0 3.526-0.755 4.734-1.973l1.886-1.886 1.887 1.885zM19.771 10.343l1.887 1.887-9.428 9.427-1.887-1.885 9.428-9.427z" fill="rgba(119.08500000000001,119.08500000000001,119.08500000000001,1)"></path>
+    </g>
+  </svg>

BIN
assets/img/riLine-qr-scan-2-line@1x.png


+ 9 - 0
pages.json

@@ -292,6 +292,15 @@
             }
             
         }
+        ,{
+            "path" : "pagesFinance/user/activatedChargingPile",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "",
+                "enablePullDownRefresh": false
+            }
+            
+        }
     ],
 	"globalStyle": {
 		"navigationStyle": "custom", // 隐藏系统导航栏

+ 81 - 0
pagesFinance/user/activatedChargingPile.vue

@@ -0,0 +1,81 @@
+<template>
+	<view>
+		<u-navbar title="激活充电桩"></u-navbar>
+		<view class="main">
+			<view class="img">
+				<img src="../../assets/img/pile.png" alt="">
+			</view>
+			<view class="text">
+				<view class="text-1">
+					您的充电桩暂未激活
+				</view>
+				<view class="text-2">
+					请在施工人员的帮助下,
+					扫码关联充电桩并完成激活操作
+				</view>
+				
+			</view>
+			<button class="btn" ><text><img src="../../assets/img/riLine-qr-scan-2-line@1x.png" alt=""></text>扫码绑定</button>
+		</view>
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style lang="scss" scoped>
+	.main{
+		margin-top: 48px;
+		.img{
+			width: 100%;
+			   text-align: center;
+			
+		}
+		.text{
+			text-align: center;
+			margin-top: 28px;
+			.text-1{
+				color: rgba(51, 51, 51, 1);
+				font-size: 20px;
+				line-height: 27px;
+				font-weight: bold;
+			}
+			.text-2{
+				margin: 0 auto;
+				width: 58.9%;
+				color: rgba(119, 119, 119, 1);
+				font-size: 16px;
+				line-height: 19px;
+				margin-top: 24rpx;
+			}
+		}
+		.btn{
+			margin-top: 36px;
+			width: 58.9%;
+			border-radius: 8px;
+			background-color: rgba(24, 90, 198, 1);
+			line-height: 48px;
+			color: #fff;
+			text{
+				margin-right: 16rpx;
+			}
+			img{
+				vertical-align: middle;
+			}
+		}
+		
+	}
+	
+
+</style>