Browse Source

【nev-pc】报检单高拍仪清晰度处理开发

ag_report_nev
安虹睿 10 months ago
parent
commit
fc2bae2091
  1. 4
      fe/PC/public/config.js
  2. 2
      fe/PC/src/App.vue
  3. 16
      fe/PC/src/views/rawMaterialManage/quality/InspectRequest.vue

4
fe/PC/public/config.js

@ -26,6 +26,9 @@ window.SITE_CONFIG['companyName'] = '长春富维东阳汽车零部件有限公
window.SITE_CONFIG['padKittingPackUpdate'] = 180000
// 高拍仪获取地址
window.SITE_CONFIG['grabimageURL'] = 'http://192.168.1.75:33336/video/index.html'
window.SITE_CONFIG['showGrabimageIframeTest'] = false//登录页调试高拍仪显示按钮
window.SITE_CONFIG['grabRegulateIframePage'] = 'http://10.164.230.173:33336/video/index4.html'//高拍仪-iframe内嵌对焦界面
// 供应商接口地址(如立体库等)
window.SITE_CONFIG['supplierOuterURL'] = 'http://7e42682n64.goho.co:21171'
@ -40,7 +43,6 @@ window.SITE_CONFIG['MOrDFasterUrl_inventory'] = 'http://dev.ccwin-in.com:60075/'
window.SITE_CONFIG['pageHasMOrDList'] = [
// 'PurchaseOrder_mrt','PurchaseOrder_det',//采购订单信息
]
window.SITE_CONFIG['showGrabimageIframeTest'] = false//登录页调试高拍仪显示按钮

2
fe/PC/src/App.vue

@ -34,7 +34,7 @@ localStorage.setItem('MOrDFasterUrl_job',window.SITE_CONFIG['MOrDFasterUrl_job']
localStorage.setItem('MOrDFasterUrl_inventory',window.SITE_CONFIG['MOrDFasterUrl_inventory'])
localStorage.setItem('pageHasMOrDList',window.SITE_CONFIG['pageHasMOrDList'])
localStorage.setItem('showGrabimageIframeTest',window.SITE_CONFIG['showGrabimageIframeTest'])
localStorage.setItem('grabRegulateIframePage',window.SITE_CONFIG['grabRegulateIframePage'])
</script>
<style lang="scss">

16
fe/PC/src/views/rawMaterialManage/quality/InspectRequest.vue

@ -1,7 +1,5 @@
<template>
<div class="page-box InspectNoticePage" v-loading="Loading.appMainLoading">
<iframe v-show="false" id="getGrabimageIframe" :src='getGrabimageIframeUrl' style="z-index:200;background:#fff;width:100px;height:100px;position:fixed;left:0"></iframe>
<tablePagination
:currenButtonData="currenButtonData"
:tableData="tableData"
@ -169,7 +167,13 @@
:modal-append-to-body="false"
:show-close="false"
>
<!-- 高拍仪调获取base64页面 -->
<iframe v-show="false" id="getGrabimageIframe" :src='getGrabimageIframeUrl' style="z-index:200;background:#fff;width:100px;height:100px;position:fixed;left:0"></iframe>
<!-- 高拍仪调试页面-目的自动对焦 -->
<iframe v-show="false" id="grabRegulateIframePage" :src='grabRegulateIframePage' style="background:#fff;width:200px;height:200px;position:fixed;right:15px;bottom:10px;opacity:0"></iframe>
<curren-Form
v-loading="gpyLoading"
element-loading-text="正在加载高拍仪"
class="handleForm"
size="medium"
:searchData="inspectNoticeDetailsFormData"
@ -322,7 +326,9 @@ export default {
},
data () {
return {
getGrabimageIframeUrl:localStorage.getItem('grabimageURL'),
gpyLoading:false,
getGrabimageIframeUrl:localStorage.getItem('grabimageURL'),//-
grabRegulateIframePage:localStorage.getItem('grabRegulateIframePage'),//-iframe
URL: 'wms/store/inspect-job',
// tab
currentTagName:'hz',
@ -914,6 +920,10 @@ export default {
this.Loading.appMainLoading = false
})
this.inspectNoticeDetailsShow = true
this.gpyLoading=true
setTimeout(()=>{
this.gpyLoading=false
},5000)
},300)
},
// -

Loading…
Cancel
Save