a2c90b69
jack
1.更改git配置文件
|
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
|
<template>
<div>
<Dec :content="content" />
<div class="blendDetail">
<p class="footer"><el-button type="primary" @click="$router.push('/classes/blend')">返回</el-button></p>
<div style="height:calc(100% - 40px);overflow:auto;">
<p>名单名称:0201考室</p>
<p>选择学制:小学</p>
<p>选择年级:一年级</p>
<p>有效期至:2020年03月01日</p>
<p>可见范围:全校可见</p>
<p>启动状态:正常</p>
<p>临时名单:</p>
<p style="text-align:right;padding-right:10px;">
<el-button type="primary" size="small">导出名单</el-button>
</p>
<el-table
:data="tableData"
style="width: 100%"
>
<el-table-column
prop="no"
label="序号"
width="180"
/>
<el-table-column
prop="name"
label="姓名"
width="180"
/>
<el-table-column
prop="sex"
label="性别"
width="180"
/>
<el-table-column
prop="number"
label="学号"
width="180"
/>
<el-table-column
prop="keybord"
label="键盘ID"
/>
</el-table>
</div>
</div>
</div>
</template>
<script>
import Dec from '@/components/Dec'
export default {
name: 'Detail',
components: {
Dec
},
data() {
return {
content: '',
tableData: [{
no: 1,
name: '张三',
sex: '男',
number: '1001',
keybord: '20200203'
}, {
no: 2,
name: '张三',
sex: '男',
number: '1002',
keybord: '20200204'
}, {
no: 3,
name: '张三',
sex: '男',
number: '1003',
keybord: '20200205'
}, {
no: 4,
name: '张三',
sex: '男',
number: '1004',
keybord: '20200206'
},
{
no: 4,
name: '张三',
sex: '男',
number: '1004',
keybord: '20200206'
},
{
no: 4,
name: '张三',
sex: '男',
number: '1004',
keybord: '20200206'
},
{
no: 4,
name: '张三',
sex: '男',
number: '1004',
keybord: '20200206'
},
{
no: 4,
name: '张三',
sex: '男',
number: '1004',
keybord: '20200206'
}]
}
},
methods: {
}
}
</script>
<style scoped>
.blendDetail{
max-width: 1100px;
height:calc(100vh - 115px);
margin:0 auto;
background: #fff;
margin-top:15px;
padding:20px;
font-size: 14px;
position: relative;
}
.blendDetail p{
line-height: 40px;
margin:0;
}
.blendDetail .footer{
width:100%;
height:40px;
line-height: 40px;
text-align: center;
position: absolute;
bottom:10px;
left:0;
background: #fff;
}
</style>
|