瀏覽代碼

更新 虚拟仿真实验后台 资产

zxp19960123 4 年之前
父節點
當前提交
d30c6f2dc0
共有 1 個文件被更改,包括 232 次插入0 次删除
  1. 232 0
      components/manager/assets.vue

+ 232 - 0
components/manager/assets.vue

@@ -0,0 +1,232 @@
+<template>
+	<view class="m_right">
+		<view class="m_right_hander">
+			<button size="mini" class="m_btn_red">添加资产</button>
+		</view>
+		<view class="m_right_container">
+			<table style="width: 100%;border: 1px solid #DDDDDD;border-collapse: collapse">
+				<thead class="m-table-hander">
+					<tr>
+						<th>用户名</th>
+						<th>班级</th>
+						<th>学号</th>
+						<th>电话</th>
+						<th>ilab账户</th>
+						<th>注册时间</th>
+						<th>分数</th>
+						<th>修改信息</th>
+						<th>删除</th>
+					</tr>
+				</thead>
+				<tbody>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+					<tr>
+						<th style="color: #EA252C;">张小旭</th>
+						<th>26</th>
+						<th>CMII09</th>
+						<th>26</th>
+						<th>15038728747</th>
+						<th>2021-01-01</th>
+						<th>90</th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_edit">修改</button></th>
+						<th style="position: relative;"><button type="default" size="mini" class="m_delete">删除</button></th>
+					</tr>
+				</tbody>
+			</table>
+		</view>
+		<view class="m_right_footer">
+			<view class="m_paging">
+				<text class="m_paging_item m_paging_upper">上一页</text>
+				<text class="m_paging_item" v-for="i in 8" @click="paging(i)" :class="i==index?'p_act':''">
+					{{i}}
+				</text>
+				<text class="m_paging_item m_paging_lower">下一页</text>
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		name: "manager_zc",
+		data() {
+			return {
+				index: 1,
+			}
+		},
+		methods: {
+			paging(obj) {
+				this.index = obj;
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.m_right {
+		width: 100%;
+		margin-top: 5rpx;
+		padding: 0 150rpx;
+		background-color: #fff;
+		box-shadow: 3px 0px 6px 0px rgba(0, 0, 0, 0.1);
+	
+		.m_right_hander {
+			text-align: right;
+			height: 250rpx;
+			position: relative;
+	
+			.m_btn_red {
+				position: absolute;
+				height: 80rpx;
+				line-height: 80rpx;
+				padding: 0 40rpx;
+				right: 0;
+				top: 50%;
+				transform: translateY(-50%);
+				background: #EA252C;
+				color: #fff;
+			}
+		}
+	
+	}
+	tbody tr {
+		border-top: 2rpx solid #DDDDDD !important;
+	
+	}
+	
+	tbody tr th {
+		font-weight: 400 !important;
+		height: 140rpx;
+		line-height: 140rpx;
+	}
+	
+	tbody tr:hover {
+		// color: #fff;
+		background: #FDEBEC;
+		// opacity: 0.08;
+	}
+	
+	.m-table-hander {
+		background-color: #FFF8F7;
+		height: 140rpx;
+		line-height: 140rpx;
+		font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
+		font-weight: bold;
+	}
+	
+	.m_edit {
+		position: absolute;
+		top: 50%;
+		left: 50%;
+		transform: translate(-50%, -50%);
+		background: rgb(67, 127, 250);
+		color: rgb(255, 255, 255);
+		min-width: 130rpx;
+	}
+	
+	.m_delete {
+		position: absolute;
+		top: 50%;
+		left: 50%;
+		min-width: 130rpx;
+		transform: translate(-50%, -50%);
+		background: rgb(234, 37, 44);
+		color: rgb(255, 255, 255);
+	}
+	
+	.m_right_footer {
+		margin-top: 80rpx;
+	}
+	
+	.m_paging {
+		text-align: right;
+	
+		.m_paging_item {
+			padding: 10rpx 18rpx;
+			border: 1rpx solid #DDDDDD;
+			border-radius: 8rpx;
+			margin-right: 10rpx;
+		}
+	
+		.p_act {
+			background: #EA252C;
+			color: #fff;
+			border: inherit;
+		}
+	}
+	
+	.m_paging_item:hover {
+		background: #EA252C;
+		color: #fff;
+		border: inherit;
+	}
+	
+	.m_act1 {
+		color: #FF0019;
+	}
+</style>