|  | <!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
		<title>选择文档</title>
		<link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
		<link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
		<link rel="stylesheet" href="/static/web/css/admin.css">
	</head>
	<body>
		<div class="container-fluid">
			<div class="card shadow-sm mb-3">
				<div class="card-body">
					<form name="form3" action="content_select_list.php" method="get">
						<input type="hidden" name="f" value="<?php echo $f?>">
						<input type="text" name="keyword" class="admin-input-lg mr-2" value="<?php echo $keyword?>" placeholder="请输入文档标题或文档id">
						<select name="cid" class="admin-input-sm">
							<option value="0">选择分类</option>
							<?php echo $optionarr?>
						</select>
						<button type="submit"class="btn btn-success btn-sm">搜索</button>
					</form>
				</div>
			</div>
			<div class="card shadow-sm">
				<div class="card-header">选择文档</div>
				<div class="card-body">
					<form name="form2">
						<div class="table-responsive">
							<table class="table table-borderless table-hover">
								<thead>
									<tr>
										<td scope="col">选择</td>
										<td scope="col">id</td>
										<td width="30%">文档标题</td>
										<td scope="col">栏目</td>
										<td scope="col">网页</td>
										<td scope="col">权限</td>
										<td scope="col">更新时间</td>
										<td scope="col">点击</td>
										<td scope="col">属性</td>
									</tr>
								</thead>
								<tbody>
									{dede:datalist}
									<tr>
										<td><input type="checkbox" name="arcID" value="{dede:field.id/}"></td>
										<td>{dede:field.id/}</td>
										<td><a href="archives_do.php?aid={dede:field.id/}&dopost=editArchives">{dede:field.title/}</a></td>
										<td>{dede:field.typeid function='GetTypename(@me)'/}</td>
										<td>{dede:field.ismake function='IsHtmlArchives(@me)'/}</td>
										<td>{dede:field.arcrank function='GetRankName(@me)'/}</td>
										<td>{dede:field.senddate function='GetDateMk(@me)'/}</td>
										<td>{dede:field.click/}</td>
										<td>{dede:field.flag function='IsCommendArchives(@me)'/}</td>
									</tr>
									{/dede:datalist}
									<tr>
										<td colspan="9">
											<a href="javascript:selAll();" class="btn btn-success btn-sm">全选</a>
											<a href="javascript:noSelAll();" class="btn btn-success btn-sm">取消</a>
											<a href="javascript:ReturnValue();" class="btn btn-success btn-sm">选定值</a>
										</td>
									</tr>
								</tbody>
							</table>
						</div>
					</form>
					{dede:pagelist listsize='2'/}
				</div>
			</div>
		</div>
		<script>
			function getCheckboxItem() {
				var allSel = '';
				if (document.form2.arcID.value) return document.form2.arcID.value;
				for (i = 0; i < document.form2.arcID.length; i++) {
					if (document.form2.arcID[i].checked) {
					  if (allSel == "")
							allSel = document.form2.arcID[i].value;
					  else
							allSel = allSel + "," + document.form2.arcID[i].value;
					}
				}
				return allSel;
			}
			function selAll() {
				for (i = 0; i < document.form2.arcID.length; i++) {
					if (!document.form2.arcID[i].checked) {
						document.form2.arcID[i].checked = true;
					}
				}
			}
			function noSelAll() {
				for (i = 0; i < document.form2.arcID.length; i++) {
					if (document.form2.arcID[i].checked) {
						document.form2.arcID[i].checked = false;
					}
				}
			}
			function ReturnValue() {
				if (window.opener.document.<?php echo $f ?>.value == "") {
					window.opener.document.<?php echo $f ?>.value = getCheckboxItem();
				} else {
					window.opener.document.<?php echo $f ?>.value += "," + getCheckboxItem();
				}
				window.opener = null;
				window.close();
			}
		</script>
	</body>
</html>
 |