Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c9000eb5
authored
2023-06-16 11:19:40 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:高拍仪
1 parent
f19ed400
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
18 deletions
src/utils/operation.js
src/views/components/imagePreview.vue
src/views/djbworkflow/djbBook/clxx.vue
src/views/djbworkflow/djbBook/components/djbeditDialog.vue
src/views/workflow/components/clxx.vue
src/utils/operation.js
View file @
c9000eb
...
...
@@ -134,7 +134,25 @@ export function getUrlParam (paraName) {
return
''
;
}
}
/**
* @description: 身份证读卡器组件
* @author: renchao
*/
export
function
getIdCardInfo
()
{
return
axios
.
post
(
Vue
.
prototype
.
BASE_API
.
IDCARDURL
)
}
/**
* @description: 高拍仪组件
* @author: renchao
*/
export
function
getAltimeterInfo
()
{
let
data
=
{
"filepath"
:
"base64"
,
"rotate"
:
"0"
,
"cutpage"
:
"0"
,
"camidx"
:
"0"
,
"ColorMode"
:
"0"
,
"quality"
:
"3"
}
return
axios
.
post
(
"http://127.0.0.1:38088/video=grabimage"
,
JSON
.
stringify
(
data
))
}
\ No newline at end of file
...
...
src/views/components/imagePreview.vue
View file @
c9000eb
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-06-1
4 11:10:26
* @LastEditTime: 2023-06-1
6 11:12:13
-->
<
template
>
<div
class=
"rlPopup"
>
...
...
@@ -46,7 +46,7 @@
</div>
</
template
>
<
script
>
import
axios
from
'axio
s'
import
{
getAltimeterInfo
}
from
'@/utils/operation.j
s'
import
PhotoZoom
from
'@/components/PhotoZoom'
import
{
uploadSjClmx
,
deleteClmx
}
from
"@/api/clxx.js"
;
import
publicPicture
from
'@/components/publicPicture/index.vue'
...
...
@@ -149,20 +149,11 @@
const
file
=
new
File
([
blob
],
options
);
return
file
;
}
let
data
=
{
"filepath"
:
"base64"
,
"rotate"
:
"0"
,
"cutpage"
:
"0"
,
"camidx"
:
"0"
,
"ColorMode"
:
"0"
,
"quality"
:
"3"
}
axios
.
post
(
"http://127.0.0.1:38088/video=grabimage"
,
JSON
.
stringify
(
data
)).
then
((
res
)
=>
{
getAltimeterInfo
().
then
(
res
=>
{
let
blob
=
dataURLtoBlob
(
'data:image/png;base64,'
+
res
.
data
.
photoBase64
);
let
file
=
blobToFile
(
blob
);
var
formData
=
new
FormData
();
formData
.
append
(
'file'
,
file
.
raw
)
formData
.
append
(
'file'
,
file
)
formData
.
append
(
"bsmSj"
,
this
.
previewImg
.
bsmSj
);
formData
.
append
(
"bsmSlsq"
,
this
.
previewImg
.
bsmSlsq
);
uploadSjClmx
(
formData
).
then
((
res
)
=>
{
...
...
src/views/djbworkflow/djbBook/clxx.vue
View file @
c9000eb
...
...
@@ -24,7 +24,7 @@
</div>
<el-button
type=
"primary"
native-type=
"submit"
style=
"width:100%"
@
click=
"handleAdd()"
v-if=
"!this.$route.query.viewtype"
>
新增
</el-button>
</div>
<image-preview
ref=
'imageRef'
:previewImg=
"previewImg"
@
updateList=
"updateList"
@
nextPriview=
"nextPriview"
<image-preview
ref=
'imageRef'
v-if=
"tableData.length>0"
:previewImg=
"previewImg"
@
updateList=
"updateList"
@
nextPriview=
"nextPriview"
@
prevPriview=
"prevPriview"
/>
</div>
</div>
...
...
@@ -39,7 +39,7 @@
import
{
InitClml
,
saveClml
,
deleteSjClml
,
moveClml
}
from
"@/api/clxx.js"
;
import
{
popupDialog
}
from
"@/utils/popup.js"
;
export
default
{
components
:
{
clxxAddDialog
,
imagePreview
},
components
:
{
clxxAddDialog
,
imagePreview
},
data
()
{
return
{
isDialog
:
false
,
...
...
src/views/djbworkflow/djbBook/components/djbeditDialog.vue
View file @
c9000eb
This diff is collapsed.
Click to expand it.
src/views/workflow/components/clxx.vue
View file @
c9000eb
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-0
5-17 10:40:46
* @LastEditTime: 2023-0
6-16 11:12:40
-->
<
template
>
<div
class=
"clxx"
>
...
...
@@ -33,7 +33,7 @@
</div>
</div>
</div>
<image-preview
ref=
'imageRef'
:previewImg=
"previewImg"
@
updateList=
"updateList"
@
nextPriview=
"nextPriview"
<image-preview
ref=
'imageRef'
v-if=
"tableData.length>0"
:previewImg=
"previewImg"
@
updateList=
"updateList"
@
nextPriview=
"nextPriview"
@
prevPriview=
"prevPriview"
/>
</div>
</div>
...
...
Please
register
or
sign in
to post a comment