Browse Source

批量回复

hangb 8 years ago
parent
commit
9a2d1a57b4

+ 1 - 1
src/main/webapp/resources/css/index.css

@@ -4438,7 +4438,7 @@ a.order-detail {
 [ui-tour] > li {
 	display: none;
 }
-.active {
+.guide .active {
 	display: block !important;
 }
 .tour-overlay {

+ 125 - 1
src/main/webapp/resources/tpl/index/sale/modal/reply_bybatch.html

@@ -1,5 +1,129 @@
+<style>
+    .modal-content{
+        width: 390px;
+        height: 300px;
+    }
+    .modal-header {
+        width: 100%;
+        height: 39px;
+        text-align: left;
+        background: #e9ecf2;
+    }
+    .modal-header span{
+        padding-left: 18px;
+        font-size: 14px;
+        color: #1e1e1e;
+    }
+    .modal-body{
+        padding: 32px 45px 30px;
+        width: 100%;
+        height: 212px;
+    }
+    .modal-body .top{
+        padding: 0 15px 12px;
+        overflow: hidden;
+        border-bottom: 1px solid #dcdcdc;
+    }
+    .modal-body .top .form-group{
+        float: left;
+        overflow: hidden;
+    }
+    .modal-body .top .form-group:first-child {
+        margin-right: 60px;
+    }
+    .modal-body .top .form-group input{
+        float: left;
+        width: 13px;
+        height: 13px;
+    }
+    .modal-body .top .form-group label{
+        float: left;
+        margin: -3px 0 0 10px;
+        width: 80px;
+        font-size: 16px;
+        font-weight: normal;
+        color: #8c8c8c;
+    }
+    .modal-body .top .form-group label:hover, .modal-body .top .form-group label.active{
+        color: #1e1e1e;
+    }
+    .modal-body .bottom{
+        padding: 18px 15px 0;
+    }
+    .modal-body .bottom span{
+        line-height: 21px;
+        font-size: 14px;
+        color: #313131;
+    }
+    .modal-body .bottom .choose{
+        position: relative;
+        margin: 15px auto 0;
+        text-align: center;
+    }
+    .modal-footer{
+        padding: 0 25px 18px 0;
+        border-top: none;
+    }
+    .modal-footer a{
+        display: inline-block;
+        width: 70px;
+        height: 32px;
+        line-height: 32px;
+        font-size: 14px;
+        color: #fff;
+        text-align: center;
+        text-decoration: none;
+        border-radius: 4px;
+    }
+    .modal-footer a:hover{
+        background: #3578ba;
+    }
+    .modal-footer a:first-child{
+        margin-right: 10px;
+        background: #5078Cb;
+    }
+    .modal-footer a:last-child{
+        background: #d2d2d2;
+    }
+</style>
+<div class="modal-header">
+    <span>批量回复交期设置</span>
+</div>
+<!--默认交期-->
+<!--<div class="modal-body">-->
+    <!--<div class="top">-->
+        <!--<div class="form-group">-->
+            <!--<input type="radio" id="default">-->
+            <!--<label for="default" class="active">默认交期</label>-->
+        <!--</div>-->
+        <!--<div class="form-group">-->
+            <!--<input type="radio" id="custom">-->
+            <!--<label for="custom">自定义交期</label>-->
+        <!--</div>-->
+    <!--</div>-->
+    <!--<div class="bottom">-->
+        <!--<span>对选中的单据按照满足客户需求的数量和交期默认回复</span>-->
+    <!--</div>-->
+<!--</div>-->
+<!--自定义交期-->
 <div class="modal-body">
-    hello world!
+    <div class="top">
+        <div class="form-group">
+            <input type="radio" id="default">
+            <label for="default" class="active">默认交期</label>
+        </div>
+        <div class="form-group">
+            <input type="radio" id="custom">
+            <label for="custom">自定义交期</label>
+        </div>
+    </div>
+    <div class="bottom">
+        <span>对选中的单据按照满足客户需求的数量和交期默认回复</span>
+        <div class="choose">
+
+        </div>
+    </div>
 </div>
 <div class="modal-footer">
+    <a>取消</a> <a>确定</a>
 </div>