puzhibing
2024-03-04 7e7f901b2172281dc294dfbc67e6ad00625f09f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@layout("/common/_container.html"){
<div class="ibox float-e-margins">
    <div class="ibox-content">
        <div class="form-horizontal">
 
            <div class="ibox-title">
                <h5>优惠券审核</h5>
            </div>
 
            <input value="${id}">
            <div class="row">
                <div class="col-sm-5">
                    <div class="form-group">
                        <div class="initialLevel col-sm-12 control-label form-group">
                            <label class="col-sm-3 control-label">*审核状态: </label>
                            <input class="col-sm-1 control-label" name="exchangeMethod" type="radio"
                                   value="1" checked style="margin-left: 5%;margin-top: 10px;width: 13px;height: 13px"/>
                            <label class="col-sm-1" style="width: 20%;margin-top: 7px">通过</label>
                            <input class="col-sm-1 control-label" name="exchangeMethod" type="radio"
                                   value="2" style="margin-left: 5%;margin-top: 10px;width: 13px;height: 13px"/>
                            <label class="col-sm-1" style="width: 20%;margin-top: 7px">拒绝</label>
                        </div>
                    </div>
                </div>
            </div>
 
            <div class="col-sm-12" style="display: none" id="detailBox">
                <div style="display: flex;justify-content: center;margin-top: 20px">
                    <label>拒绝描述:</label>
                    <textarea style="width: 90%;height: 200px" type="text" id="detail"></textarea>
                </div>
            </div>
 
            <div class="row btn-group-m-t">
                <div class="col-sm-10" style="display: flex;justify-content: center">
                    <#button btnCss="danger" name="关闭" style="float:right;margin-left: 20%" id="cancel" icon="fa-eraser" clickFun="CouponExamineInfoDlg.close()"/>
                    <#button btnCss="info" name="保存" style="float:left" id="ensure" icon="fa-check" clickFun="CouponExamineInfoDlg.addSubmitCoupon()"/>
                </div>
            </div>
        </div>
    </div>
</div>
<script src="${ctxPath}/modular/system/tCouponExamine/TCouponExamine.js"></script>
<script src="${ctxPath}/modular/system/tCouponExamine/TCouponExamineInfo.js"></script>
@}