heyang vor 2 Jahren
Ursprung
Commit
4e0e0a7c72
2 geänderte Dateien mit 14 neuen und 2 gelöschten Zeilen
  1. 9 1
      pages.json
  2. 5 1
      pages/mine.vue

+ 9 - 1
pages.json

@@ -1,6 +1,13 @@
 {
 	"pages": [
-		
+		{
+			"path": "pages/fingerprint",//指纹信息
+			"style": {
+				"navigationBarTitleText": "指纹信息",
+				"navigationBarTextStyle": "white", //导航文字颜色
+				"navigationBarBackgroundColor": "#0183FA" //导航背景色
+			}
+		},
 		{
 			"path": "pages/home",//首页
 			"style": {
@@ -82,6 +89,7 @@
 				"navigationBarBackgroundColor": "#0183FA" //导航背景色
 			}
 		},
+		
 		//登录
 		{
 			"path": "pages/login",//登录

+ 5 - 1
pages/mine.vue

@@ -88,7 +88,7 @@
 					<view class="view-three-type" :class="!isUpload?'colorA':'marginType'">{{!isUpload?'未上传':'已上传'}}</view>
 					<img class="right-img" src="@/images/icon_04.png">
 				</view>
-				<view class="button-max-box" @click="goPage('signature')">
+				<view class="button-max-box" @click="goPage('fingerprint')">
 					<img class="left-img" src="@/images/icon_wd_zw.png">
 					<view>指纹</view>
 					<view class="view-three-type" :class="!isUpload?'colorA':'marginType'">{{!isUpload?'无':'已配置3个'}}</view>
@@ -321,6 +321,10 @@
                     uni.navigateTo({
                         url: '/pages_manage/workbench/signature/signature?item='+this.signatureUrl,//电子签名
                     });
+                }else if(type == 'fingerprint'){
+                    uni.navigateTo({
+                        url: '/pages/fingerprint',//指纹信息
+                    });
                 }