style:高拍仪
Showing
1 changed file
with
13 additions
and
3 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-06-12 15:18:07 | 4 | * @LastEditTime: 2023-06-14 09:25:12 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="rlPopup"> | 7 | <div class="rlPopup"> |
| ... | @@ -109,8 +109,18 @@ | ... | @@ -109,8 +109,18 @@ |
| 109 | * @author: renchao | 109 | * @author: renchao |
| 110 | */ | 110 | */ |
| 111 | handleOpenScan () { | 111 | handleOpenScan () { |
| 112 | this.isScan = true | 112 | this.isScan = !this.isScan |
| 113 | this.scanTitle = '关闭高拍仪' | 113 | if (this.isScan) { |
| 114 | this.$message({ | ||
| 115 | message: '正在启动程序请稍等', | ||
| 116 | type: 'success' | ||
| 117 | }) | ||
| 118 | setTimeout(() => { | ||
| 119 | this.scanTitle = '关闭高拍仪' | ||
| 120 | }, 4000) | ||
| 121 | } else { | ||
| 122 | this.scanTitle = '打开高拍仪' | ||
| 123 | } | ||
| 114 | }, | 124 | }, |
| 115 | /** | 125 | /** |
| 116 | * @description: 拍照 | 126 | * @description: 拍照 | ... | ... |
-
Please register or sign in to post a comment