edit
This commit is contained in:
parent
d08e75776d
commit
c21eca7eb6
|
@ -1,8 +1,8 @@
|
|||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 2794390 */
|
||||
src: url('iconfont.woff2?t=1720613279441') format('woff2'),
|
||||
url('iconfont.woff?t=1720613279441') format('woff'),
|
||||
url('iconfont.ttf?t=1720613279441') format('truetype');
|
||||
src: url('iconfont.woff2?t=1720677380684') format('woff2'),
|
||||
url('iconfont.woff?t=1720677380684') format('woff'),
|
||||
url('iconfont.ttf?t=1720677380684') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
|
@ -13,6 +13,10 @@
|
|||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-shenglvehao:before {
|
||||
content: "\e64f";
|
||||
}
|
||||
|
||||
.icon-jiahao:before {
|
||||
content: "\e602";
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,10 +1,17 @@
|
|||
{
|
||||
"id": "2794390",
|
||||
"name": "test",
|
||||
"name": "electron",
|
||||
"font_family": "iconfont",
|
||||
"css_prefix_text": "icon-",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "34273050",
|
||||
"name": "省略号",
|
||||
"font_class": "shenglvehao",
|
||||
"unicode": "e64f",
|
||||
"unicode_decimal": 58959
|
||||
},
|
||||
{
|
||||
"icon_id": "8721197",
|
||||
"name": "加号",
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -46,7 +46,7 @@ import leftBg2 from '@/assets/images/login/left-bg2.png'
|
|||
const formRef = ref()
|
||||
const userStore = useUserStore()
|
||||
const router = useRouter()
|
||||
// const { ipcRenderer } = window.electron
|
||||
const { ipcRenderer } = window.electron || {}
|
||||
const isMaxSize = ref(false)
|
||||
const btnLoading = ref(false)
|
||||
//表单
|
||||
|
@ -101,6 +101,7 @@ const getCookie = () => {
|
|||
}
|
||||
|
||||
onMounted(()=>{
|
||||
ipcRenderer.send('set-winsize',{x:888,y: 520})
|
||||
getCookie()
|
||||
})
|
||||
// 最小化
|
||||
|
|
|
@ -14,7 +14,16 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="item-btns">
|
||||
|
||||
<el-popover placement="bottom-start" :width="50" trigger="click">
|
||||
<template #reference>
|
||||
<el-button link type="primary"> <i class="iconfont icon-shenglvehao"></i></el-button>
|
||||
</template>
|
||||
<div class="item-popover">
|
||||
<p>预览</p>
|
||||
<p>编辑</p>
|
||||
</div>
|
||||
</el-popover>
|
||||
|
||||
<el-button size="small" plain round type="primary">
|
||||
<i class="iconfont icon-jiahao"></i>
|
||||
备课</el-button>
|
||||
|
@ -83,11 +92,29 @@ const handleCurrentChange = () => { }
|
|||
border-bottom: none;
|
||||
}
|
||||
|
||||
.icon-jiahao {
|
||||
font-size: 12px;
|
||||
margin-right: 3px;
|
||||
font-weight: bold;
|
||||
.item-btns {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.item-popover{
|
||||
font-size: 12px;
|
||||
p{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.icon-shenglvehao {
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin-right:10px;
|
||||
}
|
||||
|
||||
.icon-jiahao {
|
||||
font-size: 12px;
|
||||
margin-right: 3px;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.pagination-box {
|
||||
|
|
|
@ -15,8 +15,8 @@ import ChooseTextbook from '@/components/choose-textbook/index.vue'
|
|||
import ResoureSearch from './container/resoure-search.vue';
|
||||
import ResoureList from './container/resoure-list.vue';
|
||||
|
||||
// const { ipcRenderer } = window.electron
|
||||
// ipcRenderer.send('set-winsize',{x:1000,y: 700})
|
||||
const { ipcRenderer } = window.electron || {}
|
||||
// ipcRenderer.send('set-winsize',{x:1100,y: 700})
|
||||
|
||||
const nodeClick = (data) => {
|
||||
// console.log(toRaw(data))
|
||||
|
|
Loading…
Reference in New Issue