This repository has been archived by the owner on Sep 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StaffManage.aspx
59 lines (55 loc) · 2.5 KB
/
StaffManage.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="StaffManage.aspx.cs" Inherits="WXShare.StaffManage" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<title>个人信息</title>
<link rel="stylesheet" type="text/css" href="./css/weui.min.css" />
<link rel="stylesheet" type="text/css" href="./css/example.css" />
<style>
a {
color: #000;
}
.weui-badge_dot {
padding-left: .4em;
padding-right: .4em;
padding-top: .42em;
padding-bottom: .415em;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<!-- 标题 -->
<div class="page__hd" style="padding-left: 15px; padding-bottom: 15px;">
<h1 class="page__title" style="font-size: 25px; font-weight: bold;">员工管理</h1>
</div>
<div class="weui-cells">
<div class="weui-cell weui-cell_access" onclick="location.href='/StaffManageYWY.aspx';">
<div class="weui-cell__bd">业务员</div>
<div class="weui-cell__ft" style="font-size: 0">
<span style="vertical-align: middle; font-size: 17px;" runat="server" id="ywy"></span>
</div>
</div>
<div class="weui-cell weui-cell_access" onclick="location.href='/StaffManageSGRY.aspx';">
<div class="weui-cell__bd">施工人员</div>
<div class="weui-cell__ft" style="font-size: 0">
<span style="vertical-align: middle; font-size: 17px;" runat="server" id="sgry"></span>
<span runat="server" id="newReg" class="weui-badge weui-badge_dot"
style="margin-left: 5px; margin-right: 5px; display: none;"></span>
</div>
</div>
<div class="weui-cell weui-cell_access" onclick="location.href='/StaffManageSGDW.aspx';">
<div class="weui-cell__bd">施工队伍</div>
<div class="weui-cell__ft" style="font-size: 0">
<span style="vertical-align: middle; font-size: 17px;" runat="server" id="sgdw"></span>
</div>
</div>
</div>
<script src="./js/zepto.js"></script>
<script type="text/javascript" src="./js/jweixin-1.00.js"></script>
<script src="./js/weui.min.js"></script>
</form>
</body>
</html>