username@email.com
2 天以前 e4ee60ed94d24e394a7895daa9fb98df813e5953
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Gongzuozuzhijiagou.aspx.cs" Inherits="CY.WebForm.Pages.work.Gongzuozuzhijiagou" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>设备分类管理</title>
    <uc:CMSHead ID="CMSHead1" runat="server" />
    <script type="text/javascript">
        //修改
        function onEdit(keyid) {
            top.Dialog.open({ URL: "/Pages/work/GongzuoneirongCateEdit.aspx?keyid=" + keyid, Title: "设备分类修改", Width: 500, Height: 430 });
        }
 
        //添加
        function addModel() {
            top.Dialog.open({ URL: "/Pages/work/GongzuoneirongCateEdit.aspx", Title: "新增设备分类", Width: 500, Height: 430 });
        }
 
        //删除
        function onDele(keyid) {
            top.Dialog.confirm("确定要删除该设备分类吗?", function () {
                window.location = "/Pages/work/Gongzuozuzhijiagou.aspx?delete=" + keyid;
            });
        }
 
        //批量删除
        function onAllDelete() {
            var deleteKeyIds = "";
            $(":checkbox").each(
                function () {
                    if ($(this).is(":checked")) {
                        deleteKeyIds += $(this).val() + ",";
                    }
                }
            )
            if (deleteKeyIds == "") {
                top.Dialog.alert("请选择要删除的设备分类", function () {
                });
                return;
            }
            else {
                deleteKeyIds = deleteKeyIds.substring(0, deleteKeyIds.length - 1);
                top.Dialog.confirm("确定要删除所选设备分类吗?", function () {
                    window.location = "/Pages/work/Gongzuozuzhijiagou.aspx?deleteKeyIds=" + deleteKeyIds;
                });
            }
        }
        $(function () {
            $(".AlreadyReply").remove();
        });
    </script>
    <style type="text/css">
        .AlreadyReply { display: none; }
 
        .full-image {
  border: none; /* 移除边框 */
}
 
    </style>
</head>
<body>
    <form id="form1" runat="server">
    
           <img alt="xxxx" class="full-image" width="636" height="662" src="../../images/zuzhijiagou.png" />
        
    </form>
</body>
</html>