2021-02-06 23:36:46 +08:00
|
|
|
|
<template>
|
|
|
|
|
<el-container class="home">
|
|
|
|
|
|
|
|
|
|
<!-- 侧边栏 -->
|
|
|
|
|
<el-aside class="home-aside">
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<el-menu
|
|
|
|
|
class="side-nav"
|
|
|
|
|
default-active="search"
|
|
|
|
|
:collapse="config.sideMenuCollapse"
|
|
|
|
|
@select="changeCategory"
|
2021-02-11 15:55:06 +08:00
|
|
|
|
>
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-02-08 00:46:51 +08:00
|
|
|
|
<!-- 搜索引擎 -->
|
|
|
|
|
<el-menu-item index="search">
|
|
|
|
|
<i class="el-icon-search"></i>
|
|
|
|
|
<span slot="title">搜索</span>
|
|
|
|
|
</el-menu-item>
|
|
|
|
|
|
|
|
|
|
<!-- 全部链接 -->
|
2021-02-06 23:36:46 +08:00
|
|
|
|
<el-menu-item index="all">
|
|
|
|
|
<i class="el-icon-menu"></i>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
<span slot="title">全部链接</span>
|
2021-02-06 23:36:46 +08:00
|
|
|
|
</el-menu-item>
|
|
|
|
|
|
|
|
|
|
<!-- 分类 -->
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<el-menu-item
|
|
|
|
|
v-for="(item, itemIndex) in navLinks.list"
|
|
|
|
|
:key="'list-' + itemIndex"
|
|
|
|
|
:index="itemIndex.toString()"
|
2021-02-11 15:55:06 +08:00
|
|
|
|
>
|
2021-05-09 15:54:36 +08:00
|
|
|
|
<i :class="item.icon || 'el-icon-link'"></i>
|
2021-02-06 23:36:46 +08:00
|
|
|
|
<span slot="title">{{ item.title }}</span>
|
|
|
|
|
</el-menu-item>
|
|
|
|
|
|
|
|
|
|
</el-menu>
|
|
|
|
|
</el-aside>
|
|
|
|
|
|
|
|
|
|
<!-- 内容 -->
|
|
|
|
|
<el-main class="home-content">
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<div class="wrapper">
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 搜索引擎 -->
|
|
|
|
|
<div v-show="show.searchEngine" class="search-engine">
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 搜索栏 -->
|
|
|
|
|
<div class="search-bar shadow-3">
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 输入 -->
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<input
|
|
|
|
|
v-model="searchEngine.keyword"
|
|
|
|
|
class="input" type="text"
|
|
|
|
|
@blur="searchEngine.isFocus = false"
|
|
|
|
|
@focus="searchEngine.isFocus = true"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
@keydown.enter.exact="searchEngineSubmit()"
|
|
|
|
|
/>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 清除 -->
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<div
|
|
|
|
|
v-show="searchEngine.keyword.length > 0"
|
|
|
|
|
class="btn btn-clear"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
@click="searchEngine.keyword = ''"
|
|
|
|
|
>
|
|
|
|
|
<i class="el-icon-close"></i>
|
|
|
|
|
</div>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
<div class="btn btn-search" @click="searchEngineSubmit()">
|
|
|
|
|
<i class="el-icon-search"></i>
|
|
|
|
|
</div>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
</div>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 选择搜索引擎 -->
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<el-radio-group
|
|
|
|
|
v-model="config.searchEngine"
|
|
|
|
|
size="small"
|
2021-05-09 15:54:36 +08:00
|
|
|
|
:class="['search-type', { fade: searchEngine.isFocus }]"
|
|
|
|
|
>
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<!-- 分类 -->
|
|
|
|
|
<div v-for="(category, cIndex) in searchEngine.list" :key="cIndex" class="category">
|
|
|
|
|
|
|
|
|
|
<!-- 标题 -->
|
|
|
|
|
<div class="title">{{ category.title }}</div>
|
|
|
|
|
|
|
|
|
|
<!-- 项 -->
|
|
|
|
|
<el-radio
|
|
|
|
|
v-for="item in category.list" :key="item.name"
|
|
|
|
|
:label="item.name" class="shadow-2"
|
|
|
|
|
>
|
|
|
|
|
<Icon :path="item.icon || 'website/default.svg'" size="1.2em" />
|
|
|
|
|
<i class="name">{{ item.name }}</i>
|
|
|
|
|
<i class="desc limit-line-1">{{ item.desc }}</i>
|
|
|
|
|
</el-radio>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
</div>
|
2021-02-10 01:33:23 +08:00
|
|
|
|
</el-radio-group>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
</div>
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<!-- 链接搜索框 -->
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<el-input
|
|
|
|
|
v-show="show.searchLink" v-model="searchLink.keyword"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
class="link-search shadow-2" placeholder="搜索链接" clearable
|
2021-02-08 00:46:51 +08:00
|
|
|
|
>
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<el-select slot="prepend" v-model="searchLink.type" placeholder="类型">
|
2021-02-10 01:33:23 +08:00
|
|
|
|
<el-option label="全部" value="all"></el-option>
|
|
|
|
|
<el-option label="标题" value="title"></el-option>
|
|
|
|
|
<el-option label="链接" value="link"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-input>
|
|
|
|
|
|
|
|
|
|
<!-- 链接列表树 -->
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<el-tree
|
|
|
|
|
v-show="show.linkTree" ref="linkTree" class="link-tree shadow-2"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
:data="currentLinks" node-key="id" empty-text=""
|
2021-05-28 21:49:46 +08:00
|
|
|
|
:props="{ label: 'title', children: 'sub' }" :filter-node-method="searchLinkSubmit"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
:default-expand-all="false" :expand-on-click-node="true"
|
|
|
|
|
>
|
2021-05-28 21:49:46 +08:00
|
|
|
|
<div
|
|
|
|
|
slot-scope="{ node, data }" class="link-item" :title="data.update"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
@click="openLink(data.link, data.showOnly)"
|
2021-06-05 00:03:32 +08:00
|
|
|
|
@contextmenu.prevent="openDetail(data)"
|
2021-02-10 01:33:23 +08:00
|
|
|
|
>
|
|
|
|
|
<span class="title">{{ node.label }}</span>
|
|
|
|
|
<span class="link">{{ data.link }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-tree>
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
</div>
|
2021-02-06 23:36:46 +08:00
|
|
|
|
</el-main>
|
|
|
|
|
|
2021-06-05 00:03:32 +08:00
|
|
|
|
<el-dialog
|
2021-06-05 09:02:45 +08:00
|
|
|
|
:append-to-body='true'
|
2021-06-05 00:03:32 +08:00
|
|
|
|
custom-class="link-detail"
|
|
|
|
|
title="详情"
|
|
|
|
|
:visible="linkDetail.show"
|
|
|
|
|
@close="linkDetail.show = false"
|
|
|
|
|
>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="label">ID:</div>
|
|
|
|
|
<div class="text">{{ linkDetail.id }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="label">标题:</div>
|
|
|
|
|
<div class="text">{{ linkDetail.title }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="label">链接:</div>
|
|
|
|
|
<div class="text">
|
|
|
|
|
<el-link type="primary" :href="linkDetail.link" target="_blank">{{ linkDetail.link }}</el-link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="label">更新:</div>
|
|
|
|
|
<div class="text">{{ linkDetail.update }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
</el-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2021-02-10 01:33:23 +08:00
|
|
|
|
import Icon from '@/components/Icon.vue';
|
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
export default {
|
|
|
|
|
name: 'Home',
|
2021-02-10 01:33:23 +08:00
|
|
|
|
components: {
|
|
|
|
|
Icon
|
|
|
|
|
},
|
2021-05-23 23:35:58 +08:00
|
|
|
|
beforeRouteEnter(to, from, next) {
|
|
|
|
|
next(vm => {
|
|
|
|
|
vm.utils.changeTitle();
|
|
|
|
|
});
|
|
|
|
|
},
|
2021-02-06 23:36:46 +08:00
|
|
|
|
data() {
|
|
|
|
|
return {
|
2021-02-10 01:33:23 +08:00
|
|
|
|
config: this.$root.config.storage,
|
|
|
|
|
utils: this.$root.utils,
|
2021-02-08 00:46:51 +08:00
|
|
|
|
// 显示的内容
|
|
|
|
|
show: {
|
|
|
|
|
searchEngine: true,
|
2021-05-28 21:49:46 +08:00
|
|
|
|
searchLink: false,
|
2021-02-08 00:46:51 +08:00
|
|
|
|
linkTree: false,
|
|
|
|
|
},
|
|
|
|
|
// 搜索引擎
|
|
|
|
|
searchEngine: {
|
2021-05-09 15:54:36 +08:00
|
|
|
|
isFocus: false,
|
2021-02-08 00:46:51 +08:00
|
|
|
|
keyword: '',
|
2021-05-28 21:49:46 +08:00
|
|
|
|
url: '',
|
|
|
|
|
list: this.$root.config.searchEngines
|
2021-02-08 00:46:51 +08:00
|
|
|
|
},
|
2021-02-10 01:33:23 +08:00
|
|
|
|
// 导航链接
|
2021-02-06 23:36:46 +08:00
|
|
|
|
navLinks: this.$root.navLinks,
|
|
|
|
|
// 当前显示的链接
|
|
|
|
|
currentLinks: [],
|
2021-02-07 00:39:03 +08:00
|
|
|
|
// 搜索链接
|
2021-05-28 21:49:46 +08:00
|
|
|
|
searchLink: {
|
2021-02-07 00:39:03 +08:00
|
|
|
|
debounce: null,
|
|
|
|
|
keyword: '',
|
|
|
|
|
type: 'all'
|
2021-06-05 00:03:32 +08:00
|
|
|
|
},
|
|
|
|
|
// 链接详情
|
|
|
|
|
linkDetail: {
|
|
|
|
|
show: false,
|
|
|
|
|
id: '',
|
|
|
|
|
title: '',
|
|
|
|
|
link: '',
|
|
|
|
|
update: ''
|
2021-02-07 00:39:03 +08:00
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
'searchLink.keyword': {
|
2021-02-06 23:36:46 +08:00
|
|
|
|
handler(value) {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
clearTimeout(this.searchLink.debounce);
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
this.searchLink.debounce = setTimeout(() => {
|
2021-02-06 23:36:46 +08:00
|
|
|
|
this.$refs.linkTree.filter(value);
|
|
|
|
|
}, 500);
|
|
|
|
|
}
|
2021-02-07 00:39:03 +08:00
|
|
|
|
},
|
2021-05-28 21:49:46 +08:00
|
|
|
|
'searchLink.type': {
|
2021-02-07 00:39:03 +08:00
|
|
|
|
handler() {
|
|
|
|
|
// 更改搜索类型时自动重新搜索
|
2021-05-28 21:49:46 +08:00
|
|
|
|
this.$refs.linkTree.filter(this.searchLink.keyword);
|
2021-02-07 00:39:03 +08:00
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2021-05-22 18:14:46 +08:00
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 更改当前显示的分类
|
|
|
|
|
*/
|
|
|
|
|
changeCategory(index) {
|
2021-02-08 00:46:51 +08:00
|
|
|
|
if (index == 'search') {
|
|
|
|
|
this.currentLinks = [];
|
|
|
|
|
this.show.searchEngine = true;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
this.show.searchLink = false;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
this.show.linkTree = false;
|
|
|
|
|
} else if (index == 'all') {
|
2021-02-10 01:33:23 +08:00
|
|
|
|
this.currentLinks = this.navLinks.list;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
this.show.searchEngine = false;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
this.show.searchLink = true;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
this.show.linkTree = true;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
} else {
|
2021-02-10 01:33:23 +08:00
|
|
|
|
this.currentLinks = this.navLinks.list[Number(index)].sub;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
this.show.searchEngine = false;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
this.show.searchLink = true;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
this.show.linkTree = true;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
this.searchLink.keyword = '';
|
2021-02-06 23:36:46 +08:00
|
|
|
|
},
|
2021-05-22 18:14:46 +08:00
|
|
|
|
|
2021-06-05 00:03:32 +08:00
|
|
|
|
/**
|
|
|
|
|
* 查看详情
|
|
|
|
|
*
|
|
|
|
|
* @param {object} datas 当前链接的数据
|
|
|
|
|
*/
|
|
|
|
|
openDetail(datas) {
|
|
|
|
|
// 非链接
|
|
|
|
|
if (datas.link === undefined) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var detail = this.linkDetail;
|
|
|
|
|
|
|
|
|
|
detail.id = datas.id;
|
|
|
|
|
detail.title = datas.title;
|
|
|
|
|
detail.link = datas.link;
|
|
|
|
|
detail.update = datas.update || '无';
|
|
|
|
|
detail.show = true;
|
|
|
|
|
},
|
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 打开链接
|
|
|
|
|
*
|
|
|
|
|
* @param {string} link 需要打开的链接
|
2021-02-08 00:46:51 +08:00
|
|
|
|
* @param {boolean} showOnly 是否仅显示链接
|
2021-02-06 23:36:46 +08:00
|
|
|
|
*/
|
2021-02-08 00:46:51 +08:00
|
|
|
|
openLink(link, showOnly) {
|
|
|
|
|
if (link === undefined) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (showOnly) {
|
|
|
|
|
window.prompt('请复制后手动在新标签页中打开', link);
|
|
|
|
|
} else {
|
2021-02-06 23:36:46 +08:00
|
|
|
|
window.open(link, '_blank');
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-05-22 18:14:46 +08:00
|
|
|
|
|
2021-02-08 00:46:51 +08:00
|
|
|
|
/**
|
|
|
|
|
* 搜索引擎
|
|
|
|
|
*/
|
|
|
|
|
searchEngineSubmit() {
|
2021-02-11 15:55:06 +08:00
|
|
|
|
var vm = this;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
var search = this.searchEngine;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
var selected = this.config.searchEngine;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
var keyword = search.keyword;
|
|
|
|
|
var url = '';
|
|
|
|
|
|
|
|
|
|
if (keyword == '') {
|
|
|
|
|
return false;
|
2021-05-22 18:14:46 +08:00
|
|
|
|
} else {
|
|
|
|
|
keyword = window.encodeURIComponent(keyword);
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
for (let category in search.list) {
|
|
|
|
|
let list = search.list[category].list;
|
|
|
|
|
|
|
|
|
|
for (let index in list) {
|
|
|
|
|
if (list[index].name == selected) {
|
|
|
|
|
url = list[index].url.replace(/%keyword%/, keyword);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
|
|
|
|
|
vm.openLink(url);
|
2021-02-08 00:46:51 +08:00
|
|
|
|
},
|
2021-05-22 18:14:46 +08:00
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
/**
|
|
|
|
|
* 搜索链接
|
|
|
|
|
*/
|
2021-05-28 21:49:46 +08:00
|
|
|
|
searchLinkSubmit(value, data) {
|
2021-02-06 23:36:46 +08:00
|
|
|
|
// 关键词为空,显示全部
|
2021-02-07 00:39:03 +08:00
|
|
|
|
|
2021-05-23 23:08:26 +08:00
|
|
|
|
if (value === '') {
|
|
|
|
|
return true;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-23 23:08:26 +08:00
|
|
|
|
// 小写
|
|
|
|
|
value = value.toLowerCase();
|
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
// 过滤后
|
2021-02-07 00:39:03 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
var searchType = this.searchLink.type;
|
2021-05-23 23:08:26 +08:00
|
|
|
|
var title = data.title.toLowerCase();
|
|
|
|
|
var link = (data.link || '');
|
2021-02-07 00:39:03 +08:00
|
|
|
|
var result = false;
|
|
|
|
|
|
|
|
|
|
if (searchType == 'all') {
|
|
|
|
|
// 全部
|
2021-05-23 23:08:26 +08:00
|
|
|
|
result = ((title.indexOf(value) !== -1) || (link.indexOf(value) !== -1));
|
2021-02-07 00:39:03 +08:00
|
|
|
|
} else if (searchType == 'title') {
|
|
|
|
|
// 标题
|
2021-05-23 23:08:26 +08:00
|
|
|
|
result = (title.indexOf(value) !== -1);
|
2021-02-07 00:39:03 +08:00
|
|
|
|
} else if (searchType == 'link') {
|
|
|
|
|
// 链接
|
2021-05-23 23:08:26 +08:00
|
|
|
|
result = (link.indexOf(value) !== -1);
|
2021-02-07 00:39:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
return result;
|
2021-05-22 18:14:46 +08:00
|
|
|
|
},
|
|
|
|
|
|
2021-02-06 23:36:46 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.home-aside {
|
2021-02-08 00:46:51 +08:00
|
|
|
|
// width: 18rem !important;
|
|
|
|
|
width: auto !important;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
|
|
|
|
|
.side-nav {
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-content {
|
2021-02-10 01:33:23 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
position: relative;
|
2021-06-01 09:12:45 +08:00
|
|
|
|
padding: 1rem 2rem;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
background-color: @colorWhite;
|
2021-04-17 00:55:21 +08:00
|
|
|
|
overflow-y: scroll;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
.wrapper {
|
|
|
|
|
width: 100%;
|
2021-02-11 15:55:06 +08:00
|
|
|
|
min-width: 16rem;
|
2021-06-01 09:12:45 +08:00
|
|
|
|
max-width: 64rem;
|
2021-02-10 01:33:23 +08:00
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-engine {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-direction: column;
|
2021-02-10 01:33:23 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.search-bar {
|
2021-02-08 00:46:51 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
position: sticky;
|
|
|
|
|
top: 3rem;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 40rem;
|
|
|
|
|
height: 2.8rem;
|
|
|
|
|
border-radius: .25rem;
|
|
|
|
|
background-color: #FFF;
|
|
|
|
|
overflow: hidden;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.input {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
padding-left: 1rem;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
display: inline-flex;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
align-items: center;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 2.8rem;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
height: 2.8rem;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
background-color: transparent;
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.btn-clear {
|
|
|
|
|
width: 2rem;
|
|
|
|
|
opacity: .5;
|
|
|
|
|
transition: opacity @transitionTime;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
opacity: 1;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.btn-search {
|
|
|
|
|
color: @colorPrimary;
|
|
|
|
|
transition: background @transitionTime, color @transitionTime;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
background-color: @colorPrimary;
|
|
|
|
|
color: #FFF;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.search-type {
|
|
|
|
|
display: block;
|
|
|
|
|
margin: 4.5rem 0;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
transition: opacity calc(@transitionTime * 4);
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
&.fade {
|
|
|
|
|
opacity: .5;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
/deep/ .category {
|
|
|
|
|
padding: .5rem 0;
|
2021-05-09 15:54:36 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.title {
|
|
|
|
|
margin: .5rem 0;
|
2021-05-09 15:54:36 +08:00
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.el-radio {
|
|
|
|
|
margin: .5rem;
|
|
|
|
|
padding: .8rem 1rem;
|
2021-06-01 09:12:45 +08:00
|
|
|
|
width: 15rem;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
border-radius: .25rem;
|
|
|
|
|
border-left: solid .2rem transparent;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
background-color: #FFF;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: normal;
|
2021-02-10 01:33:23 +08:00
|
|
|
|
transition: border @transitionTime;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
&:hover {
|
|
|
|
|
border-left-color: @colorSecondary;
|
|
|
|
|
color: @colorSecondary;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
2021-02-10 01:33:23 +08:00
|
|
|
|
|
|
|
|
|
&.is-checked {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
border-left-color: @colorPrimary;
|
|
|
|
|
color: @colorPrimary;
|
2021-02-10 01:33:23 +08:00
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-radio__input {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-radio__label {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
padding: 0;
|
2021-02-10 01:33:23 +08:00
|
|
|
|
transition: color @transitionTime;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
|
|
|
|
i {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: .125rem 0;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-10 01:33:23 +08:00
|
|
|
|
.fn-icon {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
margin-right: .4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.name {
|
|
|
|
|
flex-shrink: 0;
|
2021-02-10 01:33:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-08 00:46:51 +08:00
|
|
|
|
.desc {
|
2021-05-28 21:49:46 +08:00
|
|
|
|
flex-grow: 1;
|
|
|
|
|
margin-left: .5rem;
|
|
|
|
|
font-size: .8rem;
|
2021-02-08 00:46:51 +08:00
|
|
|
|
color: #CCC;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
/deep/ .link-search {
|
|
|
|
|
@height: 2.8rem;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
position: sticky;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
top: 0;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
border-radius: .25rem;
|
|
|
|
|
line-height: @height;
|
|
|
|
|
overflow: hidden;
|
2021-02-07 00:39:03 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
> div, > input {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.el-input-group__prepend {
|
|
|
|
|
background-color: #FFF;
|
2021-02-07 00:39:03 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.el-select .el-input {
|
|
|
|
|
width: 4.5rem;
|
2021-02-07 00:39:03 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
input {
|
|
|
|
|
padding: 0 .75rem;
|
2021-02-07 00:39:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
2021-02-08 00:46:51 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.el-input__inner {
|
|
|
|
|
height: @height;
|
|
|
|
|
line-height: @height;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
}
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.link-tree {
|
|
|
|
|
padding: .5rem;
|
|
|
|
|
border-radius: .25rem;
|
|
|
|
|
font-size: 14px;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
/deep/ .el-tree-node__content {
|
|
|
|
|
height: 3.6em;
|
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.link-item {
|
2021-06-04 23:06:16 +08:00
|
|
|
|
flex-grow: 1;
|
|
|
|
|
width: 0;
|
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
> span {
|
2021-06-04 23:06:16 +08:00
|
|
|
|
display: block;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.title {
|
2021-06-04 23:06:16 +08:00
|
|
|
|
opacity: 1;
|
2021-05-28 21:49:46 +08:00
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
2021-05-28 21:49:46 +08:00
|
|
|
|
.link {
|
|
|
|
|
margin-top: .2rem;
|
|
|
|
|
opacity: .5;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-06-05 00:03:32 +08:00
|
|
|
|
|
|
|
|
|
/deep/ .link-detail {
|
|
|
|
|
width: 80%;
|
|
|
|
|
max-width: 32rem;
|
|
|
|
|
|
|
|
|
|
.row {
|
2021-06-05 09:02:45 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
line-height: 1.5rem;
|
2021-06-05 00:03:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.label {
|
2021-06-05 09:02:45 +08:00
|
|
|
|
flex-shrink: 0;
|
2021-06-05 00:03:32 +08:00
|
|
|
|
width: 3.5em;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2021-06-05 09:02:45 +08:00
|
|
|
|
|
|
|
|
|
.text {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
2021-06-05 00:03:32 +08:00
|
|
|
|
}
|
2021-02-06 23:36:46 +08:00
|
|
|
|
</style>
|