Compare commits

...

4 Commits

Author SHA1 Message Date
Hunlongyu
ee1fb8fbe5 v0.8.16 2020-02-13 20:42:06 +08:00
Hunlongyu
8bee55f706 v0.8.10 2020-02-13 19:39:14 +08:00
Hunlongyu
7c5dd0be8d remove mac 2020-01-31 07:09:08 +08:00
Hunlongyu
ffee7321a0 add mac 2020-01-31 07:08:05 +08:00
7 changed files with 19 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "zy",
"version": "0.8.9",
"version": "0.8.16",
"author": "Hunlongyu",
"description": "ZY Player 资源播放器",
"private": true,
@@ -13,7 +13,7 @@
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"bp": "vue-cli-service electron:build --win -p always"
"bp": "vue-cli-service electron:build --win --ia32 --x64 -p always"
},
"main": "background.js",
"dependencies": {

View File

@@ -101,7 +101,6 @@ html,body{
}
#app{
height: 100%;
user-select: none;
.Header{
display: flex;
justify-content: flex-end;
@@ -136,6 +135,7 @@ html,body{
.Main{
height: 100%;
overflow: hidden;
user-select: none;
}
}
</style>

View File

@@ -78,14 +78,14 @@ export default Vue.extend({
},
created () {
this.getDetailEvent()
},
mounted () {}
}
})
</script>
<style lang="scss">
.detail{
box-sizing: border-box;
padding: 0 60px;
user-select: auto;
.detail-box{
width: 100%;
.box{

View File

@@ -30,7 +30,7 @@
</el-row>
<el-row class="player-none" v-if="Object.keys(video).length <= 0">
<el-row class="tips">
浏览或者搜索资源, 点击播放视频, 即可观看~
浏览或者搜索资源, 点击播放, 即可观看~
</el-row>
<el-row class="btns">
<el-button size="small" @click="goView('Film')" icon="el-icon-film">浏览</el-button>

View File

@@ -1,7 +1,7 @@
<template>
<el-row class="search">
<el-row class="search-box" :class="table === true ? 'search-box hasTable' : 'search-box'">
<el-input class="search-input" size="medium" clearable placeholder="请输入内容" v-model.trim="keywords" @change="searchEvent" @clear="clearEvent">
<el-input class="search-input" size="medium" clearable placeholder="请输入资源名称..." v-model.trim="keywords" @change="searchEvent" @clear="clearEvent">
<el-select v-model="site" slot="prepend" placeholder="请选择" @change="selectSite" style="width: 130px;">
<el-option v-for="(i, j) in sites" :key="i.id" :label="i.name" :value="j"></el-option>
</el-select>
@@ -133,8 +133,7 @@ export default Vue.extend({
this.video = e
}
}
},
created () {}
}
})
</script>
<style lang="scss" scoped>

View File

@@ -1,7 +1,7 @@
<template>
<el-row class="star">
<el-row class="star-table-box table-box">
<el-table :data="filmData" stripe class="film-table" size="mini" empty-text="收藏夹里空空的~快去填满~">
<el-table :data="filmData" stripe class="film-table" size="mini" empty-text="收藏夹里空空的~快去填满吧~">
<el-table-column prop="name" label="影片名称"></el-table-column>
<el-table-column prop="type" label="影片类别" width="120"></el-table-column>
<el-table-column prop="time" label="更新时间" width="180"></el-table-column>

View File

@@ -3,7 +3,16 @@ module.exports = {
electronBuilder: {
builderOptions: {
win: {
icon: './build/icons/icon.ico'
icon: './build/icons/icon.ico',
target: [
{
target: 'nsis',
arch: [
'ia32',
'x64'
]
}
]
},
productName: 'ZY Player',
publish: [{