| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <headerBar
- title="拍摄物体镜头矫正"
- :menu="menu"
- />
- <div class="check-wrap flex">
- <div class="check-page flex-col">
- <div class="main-container flex-col">
- <div class="content-wrapper flex-row justify-between">
- <div class="left-panel flex-col justify-between">
- <div class="tips-container flex-row" v-if="show">
- <img class="tips-icon" referrerpolicy="no-referrer" src="@/assets/images/Photography/tips-icon.png" />
- <span class="tips-tex">请在圆盘上摆上鞋子(注意左右脚),要求鞋外侧朝向拍照机,鞋子中轴线和红外线对齐</span>
- <img class="close-icon cu-p" referrerpolicy="no-referrer" src="@/assets/images/Photography/close-icon.png" @click="show = false"/>
- </div>
- <div class="camera-preview flex col center ">
- <span v-if="step === 1" class="fs-14">
- <img v-if="previewKey" class="camera-img" :src="preview+'?key='+previewKey" />
- </span>
- <template v-if="step === 2" >
- <img class="camera-img" :src="imageUrl+'?key='+imageUrlkey" />
- <span class="camera-description">这是一张用于检查镜头是否合适的测试图</span>
- </template>
- </div>
- </div>
- <div class="example-image flex-col"><span class="example-text">示范图片</span></div>
- </div>
- <div v-if="step === 1" class="action-button flex cente">
- <div @click="takePictures" class="check-button button--primary1 flex-col"><span class="button-text" v-loading="loading">拍照检查</span>
- </div>
- </div>
- <div v-else class="action-button flex center">
- <div @click="checkConfirm(false)" class="check-button button--white flex-col">
- <span class="button-text cu-p">重新拍照检查</span>
- </div>
- <router-link class="mar-left-20 " :to="{
- name: 'PhotographyShot'
- }">
- <div class="check-button button--primary1 flex-col">
- <span class="button-text cu-p">确认无误,下一步</span>
- </div>
- </router-link>
- </div>
- </div>
- </div>
- </div>
- <hardware-check
- @confirm="checkConfirm(true)"
- />
- </template>
- <script setup lang="ts">
- import { watchEffect,ref, reactive } from 'vue'
- import client from "@/stores/modules/client";
- import icpList from '@/utils/ipc'
- import useUserInfo from "@/stores/modules/user";
- import headerBar from '@/components/header-bar/index.vue'
- const clientStore = client();
- const menu = reactive([])
- const show = ref(true)
- const useUserInfoStore = useUserInfo()
- import HardwareCheck from '@/components/check/index.vue'
- function onCheckComplete(){
- }
- import { ref } from 'vue'
- import socket from "../../stores/modules/socket";
- import { digiCamControlWEB } from '@/utils/appconfig'
- const imageUrl = ref(digiCamControlWEB+'preview.jpg')
- const imageUrlkey = ref(0)
- const previewKey = ref(0)
- const preview = ref(digiCamControlWEB+'liveview.jpg')
- const step = ref(1)
- function checkConfirm(init){
- step.value =1
- if(menu.length === 0){
- menu.push({
- type:'setting'
- })
- }
- if(!init) previewKey.value++;
- showVideo()
- }
- let interval:any = null
- function showVideo(){
- clientStore.ipc.removeAllListeners(icpList.camera.PreviewShow);
- clientStore.ipc.send(icpList.camera.PreviewShow);
- clientStore.ipc.on(icpList.camera.PreviewShow, async (event, result) => {
- setTimeout(()=>{
- interval = setInterval(()=>{
- previewKey.value++;
- },200)
- },2000)
- })
- }
- function hideVideo(){
- clientStore.ipc.removeAllListeners(icpList.camera.PreviewHide);
- clientStore.ipc.send(icpList.camera.PreviewHide);
- clientStore.ipc.on(icpList.camera.PreviewHide, async (event, result) => {
- if(interval) clearInterval(interval)
- })
- }
- const loading = ref(false)
- function takePictures() {
- if (clientStore.isClient) {
- clientStore.ipc.removeAllListeners(icpList.camera.takePictures);
- clientStore.ipc.send(icpList.camera.takePictures);
- clientStore.ipc.on(icpList.camera.takePictures, async (event, result) => {
- if(interval) clearInterval(interval)
- loading.value = true;
- imageUrlkey.value++;
- setTimeout(()=>{
- hideVideo()
- step.value = 2
- imageUrlkey.value++;
- loading.value = false;
- },8000)
- })
- }
- }
- </script>
- <style scoped lang="scss">
- .check-wrap {
- background-color: rgba(234, 236, 237, 1);
- width: 100%;
- min-height: calc(100vh - 30px);
- display: flex;
- }
- .check-page {
- position: relative;
- width: 1200px;
- height: 768px;
- overflow: hidden;
- .main-container {
- width: 1200px;
- height: 739px;
- margin-bottom: 1px;
- .content-wrapper {
- width: 896px;
- height: 644px;
- margin: 10px 0 0 284px;
- .left-panel {
- width: 633px;
- height: 644px;
- .tips-container {
- background-color: rgba(255, 241, 222, 0.8);
- border-radius: 4px;
- width: 633px;
- height: 40px;
- border: 1px solid rgba(255, 228, 190, 1);
- justify-content: flex-center;
- .tips-icon {
- width: 16px;
- height: 16px;
- margin: 12px 0 0 16px;
- }
- .tips-tex {
- width: 549px;
- height: 22px;
- overflow-wrap: break-word;
- color: rgba(0, 0, 0, 0.85);
- font-size: 14px;
- font-weight: NaN;
- text-align: left;
- white-space: nowrap;
- line-height: 22px;
- margin: 9px 0 0 7px;
- }
- .close-icon {
- width: 12px;
- height: 12px;
- margin: 14px 16px 0 17px;
- }
- }
- .camera-preview {
- box-shadow: 0px 2px 10px 0px rgba(0, 32, 78, 0.1);
- background-color: rgba(255, 255, 255, 1);
- height: 600px;
- width: 600px;
- margin: 4px 0 0 16px;
- position: relative;
- .camera-description {
- position: absolute;
- bottom: 20px;
- width: 60%;
- padding: 8px 20px;
- background: rgba($color: #ffffff, $alpha: .2);
- border-radius: 20px;
- font-size: 14px;
- }
- .camera-img {
- width: 100%;
- }
- }
- }
- .example-image {
- background-color: rgba(216, 216, 216, 1);
- height: 200px;
- margin-top: 10px;
- width: 200px;
- .example-text {
- width: 56px;
- height: 20px;
- overflow-wrap: break-word;
- color: rgba(71, 71, 71, 1);
- font-size: 14px;
- font-weight: NaN;
- text-align: left;
- white-space: nowrap;
- line-height: 20px;
- margin: 90px 0 0 72px;
- }
- }
- }
- .action-button {
- width: 100%;
- text-align: center;
- margin-top: 28px;
- .check-button {
- .button-text {
- width: 180px;
- overflow-wrap: break-word;
- font-size: 16px;
- text-align: center;
- white-space: nowrap;
- height: 40px;
- line-height: 40px;
- }
- }
- }
- }
- }
- </style>
|