diff --git a/app.json b/app.json index c2e050f..0f5caa1 100644 --- a/app.json +++ b/app.json @@ -28,8 +28,7 @@ "root": "subpages/index", "name": "index", "pages": [ - "renewalApplication/renewalApplication", - "checkInUser/checkInUser" + "renewalApplication/renewalApplication" ] } ], diff --git a/project.private.config.json b/project.private.config.json index 6c5072e..d270f46 100644 --- a/project.private.config.json +++ b/project.private.config.json @@ -14,6 +14,13 @@ "condition": { "miniprogram": { "list": [ + { + "name": "subpages/OCRCard/pages/confirm/confirm", + "pathName": "subpages/OCRCard/pages/confirm/confirm", + "query": "", + "launchMode": "default", + "scene": null + }, { "name": "subpages/index/checkInUser/checkInUser", "pathName": "subpages/index/checkInUser/checkInUser", diff --git a/subpages/OCRCard/pages/confirm/confirm.json b/subpages/OCRCard/pages/confirm/confirm.json index 3928faa..aababa9 100644 --- a/subpages/OCRCard/pages/confirm/confirm.json +++ b/subpages/OCRCard/pages/confirm/confirm.json @@ -1,3 +1,10 @@ { - "usingComponents": {} + "navigationStyle": "custom", + "usingComponents": { + "navigationBar": "/components/navigationBar/navigationBar", + "van-image": "@vant/weapp/image/index", + "van-button": "@vant/weapp/button/index", + "van-cell": "@vant/weapp/cell/index", + "van-cell-group": "@vant/weapp/cell-group/index" + } } \ No newline at end of file diff --git a/subpages/OCRCard/pages/confirm/confirm.wxml b/subpages/OCRCard/pages/confirm/confirm.wxml index 373fe10..fe39b74 100644 --- a/subpages/OCRCard/pages/confirm/confirm.wxml +++ b/subpages/OCRCard/pages/confirm/confirm.wxml @@ -1 +1,26 @@ - \ No newline at end of file + + + + + + 身份信息 + 请您确认您的身份信息 + + + + + + + + + + + + + + + 下一步 + + + + \ No newline at end of file diff --git a/subpages/OCRCard/pages/confirm/confirm.wxss b/subpages/OCRCard/pages/confirm/confirm.wxss index 0a11739..2394f95 100644 --- a/subpages/OCRCard/pages/confirm/confirm.wxss +++ b/subpages/OCRCard/pages/confirm/confirm.wxss @@ -1 +1,46 @@ -/* subpages/OCRCard/pages/confirm/confirm.wxss */ \ No newline at end of file +/* subpages/OCRCard/pages/confirm/confirm.wxss */ +page { + background: #f8f8f8; +} + +.cont { + background: #f8f8f8; + height: 80vh; + position: relative; +} + +.header { + height: 240rpx; + padding: 0rpx 64rpx 0 40rpx; +} + +.tit { + font-size: 44rpx; + font-weight: 600; + margin-top: 40rpx; +} + +.des { + font-size: 28rpx; + color: #666666; + line-height: 60rpx; +} + +.info { + margin-top: -80rpx; + +} + +.btn { + position: absolute; + bottom: -80rpx; + left: 0; + right: 0; + max-width: 440rpx; + width: calc(100% - 10rpx); + height: 80rpx; + margin: auto; +} +.van-cell{ + /* line-height: 54rpx !important; */ +}