admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<html lang="zh-cn">
 
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="referrer" content="never">
<title>榜首设置</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/maincontent.css" rel="stylesheet">
<link href="css/tablestyle.css" rel="stylesheet">
<style>
.form-group {
    margin-bottom: 30px;
}
 
.checkbox input[type=checkbox] {
    top: 6px;
}
 
#container-video {
    display: block;
}
 
#container-web {
    display: none;
}
 
#container-special {
    display: none;
}
 
#dialog-chooselink {
    padding: 20px;
}
 
#dialog-chooselink select {
    width: 100px;
}
 
#dialog-chooselink label {
    display: inline;
}
 
#dialog-chooselink input[type=text] {
    display: inline;
    width: 500px;
}
 
#dialog-chooselink ul {
    display: block;
    list-style: none;
}
 
#dialog-chooselink ul li {
    display: inline;
    list-style: none;
    width: 33%;
    float: left;
}
 
#dialog-chooselink input[type=radio] {
    width: 20px;
    height: 20px;
}
 
#dialog-chooselink .search-result {
    height: 630px;
    overflow-y: scroll;
}
</style>
</head>
 
<body>
    <nav class="navbar navbar-default navbar-fixed-top"></nav>
    <div id="mainbody">
        <div id="sidebar">
            <dl>
            </dl>
        </div>
        <div id="neirong">
            <div class="erjidh">
                <ol class="breadcrumb">
                    <li><a onclick="return history.go(-1)">返回</a></li>
                </ol>
            </div>
            <form class="form-horizontal">
                <div class="form-group">
                    <label for="input1" class="changdu1 control-label">图片</label>
                    <div class="col-sm-7">
                        <img id="input1" src="#" style="width: 234px; height: 125px;" />
                    </div>
                </div>
 
                <div class="form-group">
                    <label for="input2" class="changdu1 control-label">权重</label>
                    <div class="col-sm-7">
                        <input type="text" class="form-control" id="input2"
                            placeholder="权重">
                    </div>
                </div>
                <div class="form-group">
                    <label for="input2" class="changdu1 control-label">位置</label>
                    <div class="col-sm-7">
                        <input type="text" class="form-control" id="input5"
                            placeholder="榜首的视频位置:0默认" min="0" max="30">
                    </div>
                </div>
 
                <div class="form-group">
                    <label for="input3" class="changdu1 control-label">视频分类</label>
                    <div class="col-sm-7" id="input3"></div>
                </div>
 
                <div class="form-group">
                    <label for="input4" class="changdu1 control-label">视频</label>
                    <div class="col-sm-7" id="input4"></div>
                </div>
 
                <div class="button0">
                    <div class="button">
                        <button type="button" id="save" class="btn btn-primary save">保存</button>
                    </div>
                </div>
            </form>
 
        </div>
 
    </div>
 
    <script src="js/jquery-1.9.1.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
    <script src="js/nav.js"></script>
    <script src="layer/layer.js"></script>
 
    <script>
        var id;
        $(function() {
            var index = layer.load(0, {
                shade : false
            });
            id = getArgsFromHref(location.href, "key");
            $.post("api/top/getTop", {
                "id" : id
            }, function(data) {
                if (data.code == 0) {
                    var picture = data.data.videoInfo.picture;
                    var name = data.data.videoInfo.name;
                    var orderBy = data.data.orderby;
                    var type = data.data.videoType.name;
                    var rank = data.data.rank;
                    $("#input1").attr("src", picture);
                    $("#input2").val(orderBy);
                    $("#input3").text(type);
                    $("#input4").text(name);
                    $("#input5").val(rank);
                }
                layer.close(index);
            }, 'json')
 
            $("#save").bind("click", function() {
                var index = layer.load(0, {
                    shade : false
                });
                $.post("api/top/editTopOrderBy", {
                    "id" : id,
                    "orderBy" : $("#input2").val(),
                    "rank" : $("#input5").val()
                }, function(data) {
                    if (data.code == 0) {
                        alert("保存成功");
                    }
                    layer.close(index);
                }, 'json')
 
            });
 
        });
    </script>
 
    <script>
        function getArgsFromHref(sHref, sArgName) {
            var args = sHref.split("?");
            var retval = "";
 
            if (args[0] == sHref) /*参数为空*/{
                return retval; /*无需做任何处理*/
            }
            var str = args[1];
            args = str.split("&");
            for (var i = 0; i < args.length; i++) {
                str = args[i];
                var arg = str.split("=");
                if (arg.length <= 1)
                    continue;
                if (arg[0] == sArgName)
                    retval = arg[1];
            }
            return retval;
        }
    </script>
 
</body>
 
</html>