showHistory change to history

This commit is contained in:
Hunlongyu
2020-08-04 10:14:11 +08:00
parent 083e00ddbf
commit cfdd836e01
4 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
<Film v-show="view === 'Film'" />
<Play v-show="view === 'Play'" />
<Star v-show="view === 'Star'" />
<ShowHistory v-show="view === 'ShowHistory'" />
<History v-show="view === 'History'" />
<Setting v-show="view === 'Setting'" />
</div>
<transition name="slide">

View File

@@ -26,7 +26,7 @@
<path d="M12,21 L10.55,19.7051771 C5.4,15.1242507 2,12.1029973 2,8.39509537 C2,5.37384196 4.42,3 7.5,3 C9.24,3 10.91,3.79455041 12,5.05013624 C13.09,3.79455041 14.76,3 16.5,3 C19.58,3 22,5.37384196 22,8.39509537 C22,12.1029973 18.6,15.1242507 13.45,19.7149864 L12,21 Z"></path>
</svg>
</span>
<span :class="[view === 'ShowHistory' ? 'active ': ''] + 'zy-svg'" @click="changeView('ShowHistory')">
<span :class="[view === 'History' ? 'active ': ''] + 'zy-svg'" @click="changeView('History')">
<svg role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-labelledby="timeIconTitle">
<title id="timeIconTitle">历史记录</title>
<circle cx="12" cy="12" r="10"></circle>

View File

@@ -1,5 +1,5 @@
<template>
<div class="showHistory">
<div class="history">
<div class="body zy-scroll">
<div class="zy-table">
<div class="tBody">
@@ -28,7 +28,7 @@ import { history } from '../lib/dexie'
import zy from '../lib/site/tools'
const { clipboard } = require('electron')
export default {
name: 'showHistory',
name: 'history',
data () {
return {
history: history
@@ -160,7 +160,7 @@ export default {
}
</script>
<style lang="scss" scoped>
.showHistory{
.history{
position: relative;
height: calc(100% - 40px);
width: 100%;

View File

@@ -7,7 +7,7 @@ import Star from './Star'
import Setting from './Setting'
import Detail from './Detail'
import Share from './Share'
import ShowHistory from './ShowHistory'
import History from './History'
export default {
registerComponents () {
@@ -19,6 +19,6 @@ export default {
Vue.component('Setting', Setting)
Vue.component('Detail', Detail)
Vue.component('Share', Share)
Vue.component('ShowHistory', ShowHistory)
Vue.component('History', History)
}
}