地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
    <th:block th:include="include :: header('短信发送历史详情')" />
</head>
<body class="white-bg">
    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
        <form class="form-horizontal m" id="form-smsHis-edit" th:object="${smsHis}">
            <input name="id" th:field="*{id}" type="hidden">
            <div class="form-group">    
                <label class="col-sm-3 control-label">用户ID:</label>
                <div class="form-control-static" th:text="*{yhid}">
                </div>
            </div>
            <div class="form-group">    
                <label class="col-sm-3 control-label">用户名称:</label>
                <div class="form-control-static" th:text="*{yhmc}">
                </div>
            </div>
            <div class="form-group">    
                <label class="col-sm-3 control-label">运营商:</label>
                <div class="form-control-static" th:text="*{carrieroperator}">
                </div>
            </div>
            <div class="form-group">    
                <label class="col-sm-3 control-label">手机号:</label>
                <div class="form-control-static" th:text="*{phone}">
                </div>
            </div>
            <div class="form-group">
                <label class="col-sm-3 control-label">内容:</label>
                <div class="form-control-static" th:text="*{content}">
                </div>
            </div>
            <div class="form-group">    
                <label class="col-sm-3 control-label">结果:</label>
               <!-- <div class="form-control-static">
                    <input name="returncode" th:field="*{returncode}" class="form-control" type="text">
                </div>-->
                <div class="form-control-static" th:class="${smsHis.returncode == '1' ? 'label label-primary' : 'label label-danger'}" th:text="${smsHis.returncode == '1' ? '发送成功' : '发送失败'}">
                </div>
            </div>
        </form>
    </div>
    <th:block th:include="include :: footer" />
</body>
</html>