76 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
<!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">
 | 
						|
<title>在线五笔词库生成</title>
 | 
						|
<meta name="keywords" content="在线五笔词库生成">
 | 
						|
<meta name="description" content="在线五笔词库生成">
 | 
						|
<link href="//unpkg.yutent.top/@bytedo/wcui/dist/css/reset-basic.css" rel="stylesheet">
 | 
						|
<link rel="stylesheet" href="./css/index.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
 | 
						|
<div class="app flex column" anot="app">
 | 
						|
  <header class="topbar flex ac noselect">
 | 
						|
    <div class="wrapper flex asc">
 | 
						|
      <a class="logo">五笔词库<span>86版</span></a>
 | 
						|
 | 
						|
      <nav class="navs flex">
 | 
						|
        <a class="nav active">首页</a>
 | 
						|
        <a class="nav">简码表</a>
 | 
						|
        <a class="nav">打字练习</a>
 | 
						|
        <a class="nav">关于</a>
 | 
						|
      </nav>
 | 
						|
    </div>
 | 
						|
  </header>
 | 
						|
 | 
						|
  <main class="main flex ac">
 | 
						|
 | 
						|
    <div class="wrapper flex column">
 | 
						|
      <header class="table-info flex alc">
 | 
						|
        现有单字{{single}}个, 词组{{words}}个!
 | 
						|
      </header>
 | 
						|
 | 
						|
      <div class="search">
 | 
						|
        <section class="field flex alc">
 | 
						|
          <wc-input placeholder="输入汉字或五笔编码查询" :duplex="filter.txt" @submit="search"></wc-input>
 | 
						|
        </section>
 | 
						|
 | 
						|
        <section class="field flex alc">
 | 
						|
          <wc-radio-group :duplex="filter.table">
 | 
						|
            <wc-radio value="86">86版</wc-radio>
 | 
						|
            <wc-radio value="18030" type="danger">18030版(86修正版)</wc-radio>
 | 
						|
          </wc-radio-group>
 | 
						|
        </section>
 | 
						|
 | 
						|
        <section class="field result">{{result}}</section>
 | 
						|
 | 
						|
      </div>
 | 
						|
 | 
						|
      <div class="panel">
 | 
						|
 | 
						|
 | 
						|
 | 
						|
      </div>
 | 
						|
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
  </main>
 | 
						|
 | 
						|
  <footer class="footer flex ac">
 | 
						|
    <div class="wrapper flex asc">
 | 
						|
      <span>©2022, Yutent™.</span>
 | 
						|
      <span>Power By Anot.js, wcui</span>
 | 
						|
    </div>
 | 
						|
  </footer>
 | 
						|
 | 
						|
  
 | 
						|
</div>
 | 
						|
 | 
						|
<script type="module" src="./js/index.js"></script>
 | 
						|
 | 
						|
</body>
 | 
						|
</html> |