Browse Source

update

master
lc18518571399 11 months ago
parent
commit
72e42d6830
  1. 2
      front/electron-builder.yml
  2. 11
      front/src/main/index.js
  3. 2
      front/src/renderer/index.html
  4. 43
      front/src/renderer/src/App.vue

2
front/electron-builder.yml

@ -1,5 +1,5 @@
appId: com.electron.lichong appId: com.electron.lichong
productName: 桌面应用 productName: 时光机
directories: directories:
buildResources: build buildResources: build
files: files:

11
front/src/main/index.js

@ -9,16 +9,17 @@ console.log(process.versions.node)
let mainWindow let mainWindow
function createWindow() { function createWindow() {
mainWindow = new BrowserWindow({ mainWindow = new BrowserWindow({
// fullscreen: true, fullscreen: true,
// fullscreenable: true, fullscreenable: true,
minWidth: 432, // minWidth: 432,
minHeight: 768, // minHeight: 768,
show: false, show: false,
autoHideMenuBar: true, autoHideMenuBar: true,
icon: logoIcon, icon: logoIcon,
webPreferences: { webPreferences: {
preload: path.resolve(__dirname, '../preload/index.js'), preload: path.resolve(__dirname, '../preload/index.js'),
sandbox: false sandbox: false,
webSecurity:false,
} }
}) })
mainWindow.on('ready-to-show', () => { mainWindow.on('ready-to-show', () => {

2
front/src/renderer/index.html

@ -7,7 +7,7 @@
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta <meta
http-equiv="Content-Security-Policy" http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'" content="default-src 'self'; script-src 'self';img-src 'self' data:; style-src 'self' 'unsafe-inline'"
/> />
</head> </head>

43
front/src/renderer/src/App.vue

@ -39,8 +39,21 @@
<video ref="videoEL" width="500px" height="480px" autoplay v-if="!form.img"></video> <video ref="videoEL" width="500px" height="480px" autoplay v-if="!form.img"></video>
<!--canvas截取流--> <!--canvas截取流-->
<canvas ref="canvas" width="500px" height="500px" id="canvas" v-show="form.img"></canvas> <canvas ref="canvas" width="500px" height="500px" id="canvas" v-show="form.img"></canvas>
<div v-if="dispalyTitle" style="position: absolute;color: #fff;top: 28vh;left: 40vw;font-size: 1.5em;">
{{ dispalyTitle }}
</div>
<canvas width="180px" height="180px" id="canvas1" <canvas width="180px" height="180px" id="canvas1"
style="position: absolute;top: 48vh;left: calc(50vw - 90px);"></canvas> style="position: absolute;top: 34vh;left: calc(50vw - 90px);"></canvas>
<el-row v-if="pngList.length" style="position: absolute;color: #fff;top: 57vh;left: 1vw;">
<el-col :span="6" v-for="( pngItem, pngIndex) in pngList">
<v-row>
<v-col :span="4">{{ pngItem.age }}</v-col>
<v-col :span="20"><img :src="pngItem.png" :alt="`${pngItem.age}岁`" width="150px"
height="150px" /></v-col>
</v-row>
</el-col>
</el-row>
</div> </div>
</div> </div>
</dv-border-box1> </dv-border-box1>
@ -70,12 +83,14 @@ export default {
img: '' img: ''
}, },
videoEL: null, videoEL: null,
isVip: true, isVip: false,
pngObj: {}, pngObj: {},
qrString: "", qrString: "",
shexiangotuBtn: false, shexiangotuBtn: false,
paizhaoBtn: true, paizhaoBtn: true,
uploadBtn: true, uploadBtn: true,
dispalyTitle: "",
pngList: []
} }
}, },
methods: { methods: {
@ -182,7 +197,7 @@ export default {
// let baseurl = "http://127.0.0.1:7001" // let baseurl = "http://127.0.0.1:7001"
that.qrString = `${baseurl}/?id=${_.get(that.pngObj, ["list", "_id"])}` that.qrString = `${baseurl}/?id=${_.get(that.pngObj, ["list", "_id"])}`
let canvas = document.getElementById('canvas1') let canvas = document.getElementById('canvas1')
console.log(777, that.pngObj, baseurl) console.log(777, that.pngObj, canvas)
QRCode.toCanvas(canvas, that.qrString, function (error) { QRCode.toCanvas(canvas, that.qrString, function (error) {
if (error) { if (error) {
ElMessage({ ElMessage({
@ -198,6 +213,8 @@ export default {
}) })
} }
}) })
this.dispalyTitle = `[${that.form.name || "未填写"}]10岁-80岁照片模拟`
this.pngList = _.get(that.pngObj, ["list", "createImgList"], [])
// 5 // 5
setTimeout(() => { setTimeout(() => {
that.qrString = "" that.qrString = ""
@ -205,6 +222,8 @@ export default {
ctx.width = 500 ctx.width = 500
ctx.height = 500 ctx.height = 500
ctx.clearRect(0, 0, 500, 500); ctx.clearRect(0, 0, 500, 500);
this.dispalyTitle = ""
this.pngList = []
}, 1000 * 60 * 10); }, 1000 * 60 * 10);
} }
}) })
@ -242,10 +261,9 @@ export default {
} }
}, },
async mounted() { async mounted() {
console.log(8877, QRCode)
this.watchPng()
// this.testFun() // this.testFun()
let fiveDay = dayjs('2024-05-21T00:00:00').valueOf() let fiveDay = dayjs('2024-05-24T00:00:00').valueOf()
if (!this.isVip) { if (!this.isVip) {
if (dayjs().valueOf() > fiveDay) { if (dayjs().valueOf() > fiveDay) {
this.isVip = false this.isVip = false
@ -254,6 +272,8 @@ export default {
this.isVip = true this.isVip = true
} }
} }
console.log(8877, QRCode)
this.watchPng()
}, },
watch: {}, watch: {},
computed: {} computed: {}
@ -296,4 +316,15 @@ export default {
background-color: #83838399; background-color: #83838399;
border: none; border: none;
} }
.noVip {
margin-top: 45vh;
margin-left: 25vw;
}
.noVipTag {
font-size: 48px;
line-height: 48px;
padding: 36px;
}
</style> </style>

Loading…
Cancel
Save