feat:业务完税
Showing
6 changed files
with
198 additions
and
2 deletions
| ... | @@ -66,4 +66,11 @@ | ... | @@ -66,4 +66,11 @@ |
| 66 | } | 66 | } |
| 67 | .fileList tr { | 67 | .fileList tr { |
| 68 | line-height: 28px; | 68 | line-height: 28px; |
| 69 | } | ||
| 70 | .next_button { | ||
| 71 | text-align: center; | ||
| 72 | margin: 15px 0; | ||
| 73 | } | ||
| 74 | .next_button a { | ||
| 75 | color: #ffffff; | ||
| 69 | } | 76 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
staticCss/yyws.css
0 → 100644
| 1 | .content_box { | ||
| 2 | width: 1200px; | ||
| 3 | margin: 0 auto; | ||
| 4 | } | ||
| 5 | .name_title { | ||
| 6 | padding: 10px; | ||
| 7 | margin:15px 0; | ||
| 8 | } | ||
| 9 | .name_title h2 { | ||
| 10 | display: inline-block; | ||
| 11 | font-weight: 600; | ||
| 12 | margin-right: 10px; | ||
| 13 | border-left: 3px solid #0091FF; | ||
| 14 | height: 16px; | ||
| 15 | line-height: 16px; | ||
| 16 | padding-left: 5px; | ||
| 17 | } | ||
| 18 | .name_title p { | ||
| 19 | display: inline-block; | ||
| 20 | color: #0091FF; | ||
| 21 | } | ||
| 22 | .next_button { | ||
| 23 | text-align: center; | ||
| 24 | margin: 10px 0; | ||
| 25 | } | ||
| 26 | .next_button a { | ||
| 27 | color: #ffffff; | ||
| 28 | } | ||
| 29 | .form_title h2 { | ||
| 30 | font-weight: 600; | ||
| 31 | border-left: 3px solid #0091FF; | ||
| 32 | height: 16px; | ||
| 33 | line-height: 16px; | ||
| 34 | padding-left: 5px; | ||
| 35 | margin: 15px 0; | ||
| 36 | } | ||
| 37 | .layui-form-item .layui-inline { | ||
| 38 | width: 48%; | ||
| 39 | } | ||
| 40 | .layui-layer-dialog .layui-layer-content { | ||
| 41 | line-height: 24px; | ||
| 42 | } | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
staticJs/yyws.js
0 → 100644
| 1 | $(function () { | ||
| 2 | layui.use('element', function () { | ||
| 3 | let element = layui.element; //导航的hover效果、二级菜单等功能,需要依赖element模块 | ||
| 4 | //监听导航点击 | ||
| 5 | element.on('nav(demo)', function (elem) { | ||
| 6 | layer.msg(elem.text()); | ||
| 7 | }); | ||
| 8 | }); | ||
| 9 | addTabs('#wssq') | ||
| 10 | // 业务 | ||
| 11 | layui.use(['form'], function () { | ||
| 12 | var form = layui.form | ||
| 13 | //监听提交 | ||
| 14 | form.on('submit(demo1)', function (data) { | ||
| 15 | layer.alert(JSON.stringify(data.field), { | ||
| 16 | title: '最终的提交信息' | ||
| 17 | }) | ||
| 18 | return false; | ||
| 19 | }); | ||
| 20 | }); | ||
| 21 | }) |
| ... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
| 17 | <div class="contentBox"> | 17 | <div class="contentBox"> |
| 18 | <span class="layui-breadcrumb"> | 18 | <span class="layui-breadcrumb"> |
| 19 | <a href="../../index.html">首页</a> | 19 | <a href="../../index.html">首页</a> |
| 20 | <a href="../wssq/index.html">网上申请</a> | 20 | <a href="./wssq.html">网上申请</a> |
| 21 | <a><cite>在线申请</cite></a> | 21 | <a><cite>在线申请</cite></a> |
| 22 | </span> | 22 | </span> |
| 23 | </div> | 23 | </div> | ... | ... |
| ... | @@ -17,7 +17,7 @@ | ... | @@ -17,7 +17,7 @@ |
| 17 | <div class="contentBox"> | 17 | <div class="contentBox"> |
| 18 | <span class="layui-breadcrumb"> | 18 | <span class="layui-breadcrumb"> |
| 19 | <a href="../../index.html">首页</a> | 19 | <a href="../../index.html">首页</a> |
| 20 | <a href="../wssq/index.html">网上申请</a> | 20 | <a href="./wssq.html">网上申请</a> |
| 21 | <a><cite>在线申请</cite></a> | 21 | <a><cite>在线申请</cite></a> |
| 22 | </span> | 22 | </span> |
| 23 | </div> | 23 | </div> |
| ... | @@ -101,6 +101,14 @@ | ... | @@ -101,6 +101,14 @@ |
| 101 | <tbody class="fileList"> | 101 | <tbody class="fileList"> |
| 102 | </table> | 102 | </table> |
| 103 | </div> | 103 | </div> |
| 104 | |||
| 105 | <div class="next_button"> | ||
| 106 | <button type="button" class="layui-btn layui-btn-normal"> | ||
| 107 | <a href="./yyws.html"> | ||
| 108 | 下一步 | ||
| 109 | </a> | ||
| 110 | </button> | ||
| 111 | </div> | ||
| 104 | </div> | 112 | </div> |
| 105 | </body> | 113 | </body> |
| 106 | <script type="text/javascript" src="../staticJs/common.js"></script> | 114 | <script type="text/javascript" src="../staticJs/common.js"></script> | ... | ... |
staticViews/yyws.html
0 → 100644
| 1 | <!DOCTYPE html | ||
| 2 | PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
| 4 | |||
| 5 | <head> | ||
| 6 | <style> | ||
| 7 | </style> | ||
| 8 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
| 9 | <title>立即办理-完税</title> | ||
| 10 | <script type="text/javascript" src="../staticJs/head.js"></script> | ||
| 11 | <link rel="stylesheet" type="text/css" href="../staticCss/progress.css"> | ||
| 12 | <link rel="stylesheet" type="text/css" href="../staticCss/yyws.css"> | ||
| 13 | </head> | ||
| 14 | |||
| 15 | <body> | ||
| 16 | <div class="navigation_crumbs"> | ||
| 17 | <div class="contentBox"> | ||
| 18 | <span class="layui-breadcrumb"> | ||
| 19 | <a href="../../index.html">首页</a> | ||
| 20 | <a href="./wssq.html">网上申请</a> | ||
| 21 | <a><cite>在线申请</cite></a> | ||
| 22 | </span> | ||
| 23 | </div> | ||
| 24 | </div> | ||
| 25 | <div class="content_box"> | ||
| 26 | <div class="name_title layui-bg-gray"> | ||
| 27 | <h2>转移类</h2> | ||
| 28 | <p>商品房转移买卖转移登记</p> | ||
| 29 | </div> | ||
| 30 | <ul class="app_progress"> | ||
| 31 | <li class="selected"> | ||
| 32 | <span>1</span> | ||
| 33 | 效验 | ||
| 34 | </li> | ||
| 35 | <div class="line"></div> | ||
| 36 | <li class="selected"> | ||
| 37 | <span>2</span> | ||
| 38 | 申请 | ||
| 39 | </li> | ||
| 40 | <div class="line"></div> | ||
| 41 | <li class="active"> | ||
| 42 | <span>3</span> | ||
| 43 | 完税 | ||
| 44 | </li> | ||
| 45 | <div class="line"></div> | ||
| 46 | <li> | ||
| 47 | <span>4</span> | ||
| 48 | 认证 | ||
| 49 | </li> | ||
| 50 | <div class="line"></div> | ||
| 51 | <li> | ||
| 52 | <span>5</span> | ||
| 53 | 领证方式 | ||
| 54 | </li> | ||
| 55 | <div class="line"></div> | ||
| 56 | <li> | ||
| 57 | <span>6</span> | ||
| 58 | 缴费 | ||
| 59 | </li> | ||
| 60 | <div class="line"></div> | ||
| 61 | <li> | ||
| 62 | <span>7</span> | ||
| 63 | 公示 | ||
| 64 | </li> | ||
| 65 | </ul> | ||
| 66 | <div class="input_search"> | ||
| 67 | <div class="form_title"> | ||
| 68 | <h2>信息校验</h2> | ||
| 69 | </div> | ||
| 70 | <form class="layui-form" action=""> | ||
| 71 | <div class="layui-form-item"> | ||
| 72 | <div class="layui-inline"> | ||
| 73 | <label class="layui-form-label">完税证明号</label> | ||
| 74 | <div class="layui-input-block"> | ||
| 75 | <input type="text" name="title" required lay-verify="required" placeholder="请输完税证明号" | ||
| 76 | class="layui-input"> | ||
| 77 | </div> | ||
| 78 | </div> | ||
| 79 | <div class="layui-inline"> | ||
| 80 | <label class="layui-form-label">发票代码</label> | ||
| 81 | <div class="layui-input-block"> | ||
| 82 | <input type="text" name="idcard" required lay-verify="required" placeholder="请输发票代码" | ||
| 83 | class="layui-input"> | ||
| 84 | </div> | ||
| 85 | </div> | ||
| 86 | </div> | ||
| 87 | |||
| 88 | <div class="layui-form-item"> | ||
| 89 | <div class="layui-inline"> | ||
| 90 | <label class="layui-form-label">发票号码</label> | ||
| 91 | <div class="layui-input-block"> | ||
| 92 | <input type="tel" name="code" required lay-verify="required" maxlength="18" placeholder="请输发票号码" | ||
| 93 | class="layui-input"> | ||
| 94 | </div> | ||
| 95 | </div> | ||
| 96 | <div class="layui-inline" style="padding-left: 30px;box-sizing: border-box;"> | ||
| 97 | <button type="reset" class="layui-btn layui-btn-primary">重 置</button> | ||
| 98 | <button type="submit" class="layui-btn layui-btn-normal" lay-submit="" lay-filter="demo1"> | ||
| 99 | 查 询 | ||
| 100 | </button> | ||
| 101 | </div> | ||
| 102 | </div> | ||
| 103 | </form> | ||
| 104 | |||
| 105 | <div class="query_results"> | ||
| 106 | |||
| 107 | </div> | ||
| 108 | </div> | ||
| 109 | <div class="next_button"> | ||
| 110 | <button type="button" class="layui-btn layui-btn-normal">下一步</button> | ||
| 111 | </div> | ||
| 112 | </div> | ||
| 113 | </body> | ||
| 114 | <script type="text/javascript" src="../staticJs/common.js"></script> | ||
| 115 | <script type="text/javascript" src="../staticJs/down.js"></script> | ||
| 116 | <script type="text/javascript" src="../staticJs/yyws.js"></script> | ||
| 117 | |||
| 118 | </html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or sign in to post a comment