wb-table/index.html

78 lines
2.1 KiB
HTML
Raw Normal View History

2022-03-11 00:00:19 +08:00
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
2022-03-13 01:27:09 +08:00
<title>五笔输入法86版</title>
<meta name="keywords" content="五笔输入法86版">
<meta name="description" content="五笔输入法86版">
2022-03-11 00:00:19 +08:00
<link href="//unpkg.yutent.top/@bytedo/wcui/dist/css/reset-basic.css" rel="stylesheet">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
2022-03-11 00:39:09 +08:00
2022-03-11 12:13:08 +08:00
<div class="app flex column" anot="app">
2022-03-11 00:39:09 +08:00
<header class="topbar flex ac noselect">
<div class="wrapper flex asc">
2022-03-13 01:27:09 +08:00
<a class="logo">五笔输入法<span>86版</span></a>
2022-03-11 00:39:09 +08:00
<nav class="navs flex">
<a class="nav active">首页</a>
<a class="nav">简码表</a>
<a class="nav">打字练习</a>
2022-03-13 01:23:31 +08:00
<a class="nav" href="./about.html">关于</a>
2022-03-11 00:39:09 +08:00
</nav>
</div>
</header>
<main class="main flex ac">
<div class="wrapper flex column">
<header class="table-info flex alc">
2022-03-13 01:23:31 +08:00
现有单字<i>{{single}}</i>个, 词组<i>{{words}}</i>个, 异形字<i>{{dy}}</i>个 !
2022-03-11 00:39:09 +08:00
</header>
2022-03-11 12:13:08 +08:00
<div class="search">
<section class="field flex alc">
2022-03-11 18:58:43 +08:00
<wc-input placeholder="输入汉字或五笔编码查询" :duplex="filter.text" @submit="search"></wc-input>
2022-03-11 12:13:08 +08:00
</section>
<section class="field flex alc">
2022-03-11 18:58:43 +08:00
<wc-radio-group :duplex="filter.table" @change="search">
2022-03-11 12:13:08 +08:00
<wc-radio value="86">86版</wc-radio>
<wc-radio value="18030" type="danger">18030版(86修正版)</wc-radio>
</wc-radio-group>
</section>
2022-03-11 18:58:43 +08:00
<wc-scroll>
<section class="field result">{{result}}</section>
</wc-scroll>
2022-03-11 15:47:27 +08:00
2022-03-11 12:13:08 +08:00
</div>
<div class="panel">
</div>
2022-03-11 00:39:09 +08:00
</div>
</main>
<footer class="footer flex ac">
<div class="wrapper flex asc">
<span>&copy;2022, Yutent™.</span>
2022-03-11 18:58:43 +08:00
<span>Power by JavaScript</span>
2022-03-11 00:39:09 +08:00
</div>
</footer>
2022-03-11 00:00:19 +08:00
2022-03-11 00:39:09 +08:00
</div>
2022-03-11 12:13:08 +08:00
<script type="module" src="./js/index.js"></script>
2022-03-11 00:39:09 +08:00
2022-03-11 00:00:19 +08:00
</body>
</html>