1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>bootstrap</title>
    <script src="./js/jquery.js"></script>
    <script src="./js/bootstrap/bootstrap.js"></script>
    <link rel="stylesheet" href="/css/bootstrap/bootstrap.css">
</head>
<style type="text/css">
 
 #box{
   min-width:50px;
   min-height: 50px;
   width:100%;
   height:100%;
   margin:10px 10px 0px 0px;
   background-color:red;
   display: flex;  
   flex-flow: row nowrap;
   align-items: flex-start;
   justify-content: space-between ;
 }
 .left{
   width:30%;
   height:100%;
   margin:0px 10px 0px 0px;
   background-color:blue;
   display: flex;  
   align-items: flex-start;
 }
 
 
 .right{
   width:70%;
   height:100%;
   background-color:yellow;
   display: flex;  
   align-items: flex-start;
 }
 
 #top{
    width:100%;
   height:75px;
   font-family:"黑体";
     font-size:32px;
   display: flex;  
   flex-flow: row nowrap;
   align-items: flex-end;
   justify-content: space-between ;
 }
 
 #header_left{
  width:100%;
    height:50px;
    display: flex;  
   flex-flow: row nowrap;
   justify-content: flex-start ;
    
 }
 #header_left span{
  width:100%;
    height:50px;
    display: flex; 
    line-height: 50px;
    text-align: center;
    
 }
 #header_left img{
    width:50px;
    height:50px;
 }
 #header_right{
  width:100%;
    height:50px;
    display: flex; 
    flex-flow: row nowrap;
    align-items: flex-end;
   justify-content: flex-end ;
 }
 #header_right span{
  width:100px;
    height:50px;
    display: flex; 
    line-height: 50px;
    text-align: center;
 }
 
 
</style>
<body>
    <div id="top">
        <div id="header_left">
        <img src="/image/log.jpeg" >
        <span>泰瑞配置中心</span>
      </div>
      <div id="header_right">
        <span class="username">张波</span>
        <span class="logout">注销</span>
 
      </div>
    </div>
 
    <div id="box">
      
        <div class="left">
          <div class="row">
            <div class="col-3">
              <div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
                <a class="nav-link active" id="v-pills-home-tab" data-toggle="pill" href="#v-pills-home" role="tab" aria-controls="v-pills-home" aria-selected="true">Home</a>
                <a class="nav-link" id="v-pills-profile-tab" data-toggle="pill" href="#v-pills-profile" role="tab" aria-controls="v-pills-profile" aria-selected="false">Profile</a>
                <a class="nav-link" id="v-pills-messages-tab" data-toggle="pill" href="#v-pills-messages" role="tab" aria-controls="v-pills-messages" aria-selected="false">Messages</a>
                <a class="nav-link" id="v-pills-settings-tab" data-toggle="pill" href="#v-pills-settings" role="tab" aria-controls="v-pills-settings" aria-selected="false">Settings</a>
              </div>
            </div>
            <div class="col-9">
              <div class="tab-content" id="v-pills-tabContent">
                <div class="tab-pane fade show active" id="v-pills-home" role="tabpanel" aria-labelledby="v-pills-home-tab">...</div>
                <div class="tab-pane fade" id="v-pills-profile" role="tabpanel" aria-labelledby="v-pills-profile-tab">...</div>
                <div class="tab-pane fade" id="v-pills-messages" role="tabpanel" aria-labelledby="v-pills-messages-tab">...</div>
                <div class="tab-pane fade" id="v-pills-settings" role="tabpanel" aria-labelledby="v-pills-settings-tab">...</div>
              </div>
            </div>
          </div>
 
        </div>
          <div ></div>
        <div class="right">
          <ul class="nav nav-tabs" id="myTab" role="tablist">
            <li class="nav-item" role="presentation">
              <a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home" aria-selected="true">Home</a>
            </li>
            <li class="nav-item" role="presentation">
              <a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile" aria-selected="false">Profile</a>
            </li>
            <li class="nav-item" role="presentation">
              <a class="nav-link" id="contact-tab" data-toggle="tab" href="#contact" role="tab" aria-controls="contact" aria-selected="false">Contact</a>
            </li>
          </ul>
          <div class="tab-content" id="myTabContent">
            <div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">...</div>
            <div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">...</div>
            <div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">...</div>
          </div>
 
        </div>
        <div class="tab"></div>
    </div>
</body>
</html>