zhanghua
2025-06-13 21c9c72db79cd1cc450d7dfb668cbab43befa991
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<html>
<div style="display: flex; justify-content: center;">
    <div style="margin-top: 50px; width: 600px;line-height: 2;">
        <h2 style="text-align: center;">机构名称缴费收据 </h2>
        <div> 订单号:</div>
        <div class="div-2-column">
            <div> 学员姓名:<u>******</u> </div>
            <div>联系电话:<u>*********** </u></div>
        </div>
        <div> 订单类型:收费录入/商城购入 </div>
 
        <div class="m-h2"> 课程信息</div>
        <table class="txt-center" width="100%" border="1" cellpadding="2" cellspacing="0">
            <tr>
                <th width="140px" nowradiv>科目</th>
                <th width="80px" nowradiv>数量</th>
                <th width="80px" nowradiv>赠送</th>
                <th width="100px" nowradiv>余额</th>
                <th>课程顾问</th>
            </tr>
            <tr>
                <td> 科目一</td>
                <td>10 </td>
                <td> 0</td>
                <td>100.00 </td>
                <td>张凯 </td>
            </tr>
            <tr>
                <td>科目二</td>
                <td> </td>
                <td> </td>
                <td> </td>
                <td> </td>
            </tr>
        </table>
 
        <div class="m-h2"> 缴费记录</div>
        <table width="100%" border="1" cellpadding="2" cellspacing="0">
            <tr>
                <td>&nbsp;应缴费金额:</td>
            </tr>
            <tr>
                <td>&nbsp;折扣/赠送金额:</td>
            </tr>
            <tr>
                <td>&nbsp;实缴金额:壹仟叁百陆拾捌元整(¥3168.00)</td>
            </tr>
        </table>
        <div>&nbsp;备注: </div>
        <br>
        <br>
        <div class="div-2-column">
            <div> 经办人: </div>
            <div>经办日期:</div>
        </div>
    </div>
</div>
<style>
    .div-2-column {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
 
    .m-h2 {
        text-align: center;
        font-size: 1.17em;
        margin-top: 50px;
        font-weight: bold;
    }
 
    #tr {
        height: 30px;
    }
 
    .txt-center {
        text-align: center;
    }
</style>
 
</html>