524cc4e6 by renchao@pashanhoo.com

style:高拍仪

1 parent 41588b3d
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-06-12 15:18:07
* @LastEditTime: 2023-06-14 09:25:12
-->
<template>
<div class="rlPopup">
......@@ -109,8 +109,18 @@
* @author: renchao
*/
handleOpenScan () {
this.isScan = true
this.scanTitle = '关闭高拍仪'
this.isScan = !this.isScan
if (this.isScan) {
this.$message({
message: '正在启动程序请稍等',
type: 'success'
})
setTimeout(() => {
this.scanTitle = '关闭高拍仪'
}, 4000)
} else {
this.scanTitle = '打开高拍仪'
}
},
/**
* @description: 拍照
......