law-lv1.html 1017 Bytes
Newer Older
xinzhedeai's avatar
xinzhedeai committed
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
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport"
			content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, viewprot-fit:cover">
		<title>法律法规-列表</title>
		<script type="text/javascript" src="../js/includeHead.js"></script>
		<style>
			/**
			 * 框架样式覆盖修改
			 */
			.van-cell__value{overflow: unset; }
			.van-cell:after{border-bottom:none;}
			.list-item-wrapper{background-color: #fffce9;}
		</style>
	</head>
	<body>
		<div id="app">
			<div class="content" v-cloak>
				<van-list v-model:loading="loading" :offset="10" :finished="finished" finished-text="没有更多了" @load="getList">
					<van-cell v-for="(item, index) in list" :key="item">
						<div class="list-item-wrapper" @click="nav(item)" >
							<p class="">
								{{item.name}}
							</p>
						</div>
					</van-cell>
				</van-list>
			</div>
		</div>
	</body>
</html>