niying
2024-01-29 0cbb588628da7bcdca146420a672916a76df2e0c
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
 
    <title>任务首页</title>
    <meta name="author" content="小柒2012" />
    <meta name="site" content="https://blog.52itstyle.com" />
    <link rel="stylesheet" th:href="@{/iview/iview.css}">
    <script th:src="@{/libs/jquery-3.2.1.min.js}" type="text/javascript"></script>
    <script th:src="@{/libs/vue.min.js}" type="text/javascript"></script>
    <script th:src="@{/layer/layer.js}" type="text/javascript"></script>
    <script th:src="@{/iview/iview.min.js}" type="text/javascript"></script>
    <style type="text/css">
        [v-cloak] {
            display: none;
        }
        body {font-size:14px;font-family:consolas;}
        pre {font-family:'consolas';}
        .Canvas {
            font:14px/18px 'consolas';
            background-color: #ECECEC;
            color: #000000;
            border: solid 1px #CECECE;
        }
        .ObjectBrace {
            color: #00AA00;
            font-weight: bold;
        }
        .ArrayBrace {
            color: #0033FF;
            font-weight: bold;
        }
        .PropertyName {
            color: #CC0000;
            font-weight: bold;
        }
        .String {
            color: #007777;
        }
        .Number {
            color: #AA00AA;
        }
        .Boolean {
            color: #0000FF;
        }
        .Function {
            color: #AA6633;
            text-decoration: "italic";
        }
        .Null {
            color: #0000FF;
        }
        .Comma {
            color: #000000;
            font-weight: bold;
        }
        PRE.CodeContainer {
            margin-top: 0px;
            margin-bottom: 0px;
        }
    </style>
</head>
<body>
<div id="app" v-cloak style="margin: 30px">
    <template>
        <i-form v-ref:form-quartz :model="formQuartz" :rules="ruleValidate" :label-width="120">
            <Form-item label="分发接口名称" prop="interfaceName">
                <i-input  v-model="formQuartz.interfaceName"  :value.sync="formQuartz.interfaceName" disabled="disabled"></i-input>
            </Form-item>
            <Form-item label="分发地址" prop="url" >
                <i-input  v-model="formQuartz.url" :value.sync="formQuartz.url"  disabled="disabled"></i-input>
            </Form-item>
            <Form-item label="发送时间" prop="createTime">
                <i-input  v-model="formQuartz.createTime" :value.sync="formQuartz.createTime"  disabled="disabled"></i-input>
            </Form-item>
            <Form-item label="请求参数" prop="prams">
                <pre id = "fromParam" class="CodeContainer" style=" width: 100%;min-height: 600px;height: 100%;"></pre>
                <!--<div ref="fromParam" id="fromParam" v-model="formQuartz.prams"></div>-->
            </Form-item>
            <Form-item label="响应结果" prop="result">
                <pre id = "fromResule" class="CodeContainer" style=" width: 100%;min-height: 600px;height: 100%;"></pre>
                <!--<div ref="fromParam" id="fromResule" v-model="formQuartz.result"></div>-->
            </Form-item>
        </i-form>
    </template>
</div>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript">
    var vm = new Vue({
        el : '#app',
        data : {
            formQuartz: {
                interfaceName : '',
                url : '',
                createTime : ''
            },
            ruleValidate: {
 
            }
        },
        methods : {
        },
        created : function() {
        }
    })
</script>
</body>
</html>