Commit cb85b5a5 by 张超军

倒查-暂无图像

parent f980f343
......@@ -1430,6 +1430,7 @@ div {
justify-content: center;
position: relative;
.body-container {
position: relative;
z-index: 99;
width: 540px;
height: 540px;
......@@ -1442,6 +1443,7 @@ div {
height: 540px !important;
position: relative;
overflow: hidden;
box-sizing: content-box;
}
.tui-image-editor2 {
box-sizing: content-box;
......@@ -1456,6 +1458,12 @@ div {
}
/deep/.lower-canvas,
/deep/.upper-canvas {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
margin: auto;
max-height: 540px !important;
max-width: 540px !important;
height: 100%;
......
<template>
<div class="tl-candidate">
<div class="tl-search">
<div class="label">手纹</div>
<div class="label">{{searchType}}</div>
<el-input class="input" v-model="input3" placeholder="请输入条码号/指位" @keydown.enter="search"></el-input>
<div class="btn" @click="search">筛选</div>
</div>
......@@ -39,7 +39,8 @@ export default {
loading: null,
timer: null,
// 是否被删除
isDelete: false
isDelete: false,
searchType: '手纹'
};
},
created () {
......@@ -50,6 +51,10 @@ export default {
},
mounted () {
let self = this;
// 监听掌纹/手纹
self.$bus.on('searchType', (searchType) => {
self.searchType = searchType
})
// 监听是否被删除
self.$bus.on('deleteMessage', (obj) => {
if (obj.delTime != null) {
......@@ -141,7 +146,7 @@ export default {
}
this.$axios
.post("/api/org/caseBybarcode/barcode/seq", {
.post("/api/org/case/barcode/seqNo", {
barcode: val.destbarcode,
seqno: val.destseqno,
qqid: val.qqid
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment