diff --git a/css/home.css b/css/home.css index 63307f3..d600f3b 100644 --- a/css/home.css +++ b/css/home.css @@ -246,3 +246,53 @@ body { left: 0; display: none; } + +.strTip{ + width: 100%; + height: 100%; + text-align: center; + font-size: 20px; + background: rgba(0,0,0,.7); + position: fixed; + top:0; + left: 0; +} +.strWrap{ + width: 80%; + background: #fff; + border-radius: 4px; + margin: 50px auto 0; + padding: 0 10px 15px; +} +.strCon{ + text-align: center; + font-size: 20px; + color: #333; + text-align: center; +} +.header-title{ + padding: 15px 0; + font-size: 14px; + font-weight: 600; + border-bottom:1px solid #ccc ; + color: #333; +} +.payCarNum{ + font-size: 16px; + color: #D40202; +} +.btn{ + color: #fff; + font-size: 20px; + + height: 40px; + line-height: 40px; + border-radius: 8px; + cursor: pointer; +} +.hiddenBtn{ + background: #79cbbf; +} +.outBtn{ + background: #509f93; +} diff --git a/home.html b/home.html index 3a75924..4089531 100644 --- a/home.html +++ b/home.html @@ -77,13 +77,23 @@
-
支付成功,请立即离场
+
支付成功,请立即离场
+
+
+
车牌号码确认信息提示
+
请确认您当前缴费的车牌号码
+
+
是我的车,去支付
+
不是我的车,手动输入车牌号
+
+
+ - + diff --git a/js/pay.js b/js/pay.js index f4b4fde..cb49708 100644 --- a/js/pay.js +++ b/js/pay.js @@ -33,8 +33,11 @@ window.onload = function () { //参数 webAppParams = getQueryString(window.location); if (webAppParams != null) { + console.log(webAppParams.carNumber) + $('#payCarNum').text(webAppParams.carNumber) + //设置UI参数 - webAppClass.setUI(webAppParams); + //webAppClass.setUI(webAppParams); } else { alertMsg("暂无订单信息"); } @@ -669,3 +672,11 @@ var webAppClass = { } + +$('.outBtn').on('click',function () { + window.location.href = 'http://wxgzh.renniting.cn/wechatwuxi/Chifeng/Threewf/stoppayment/select.html' + +}) +$('.hiddenBtn').on('click',function () { + $('#strTip').hide() +})