Commit ed1ecc25 by 张超军

复核界面按钮逻辑

parent bde77f56
<!--
* @Author: your name
* @Date: 2021-10-22 11:36:10
* @LastEditTime: 2021-12-17 10:42:08
* @LastEditTime: 2021-12-17 15:32:06
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\imageEd.vue
......@@ -364,7 +364,7 @@ export default {
data () {
return {
// 发查询对象
fcxData: {},
fcxData: [],
isShowFcx: false, //发查询
// 人像信息
rxInfo: [],
......@@ -607,6 +607,7 @@ export default {
tzdDrawingTop: 0,
// 路由传参
barcode: "",
id: "",
// 特征点全部数组
tzdall: [],
// 之前的手动特征点
......@@ -654,6 +655,15 @@ export default {
// 获取barcode,seq
this.barcode = this.$route.params.barcode;
if(this.$route.params.id != 'xz') {
this.id = this.$route.params.id;
} else {
this.id = this.$route.query.id
}
this.fcxData.push({
barcode: this.barcode,
id: this.id
})
},
mounted () {
//console.log(this.$route.name);
......
<!--
* @Author: your name
* @Date: 2021-10-22 11:36:10
* @LastEditTime: 2021-12-17 10:37:03
* @LastEditTime: 2021-12-17 15:31:49
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\imageEd.vue
......@@ -612,7 +612,7 @@
</div>
</div>
<!-- 发查询弹窗 -->
<fcx :isShowFcx="isShowFcx" :rowData="rowData" :type="'aj'" @closeFcx="closeFcx">
<fcx :isShowFcx="isShowFcx" :rowData="fcxData" :type="'aj'" @closeFcx="closeFcx">
</fcx>
</div>
</template>
......@@ -959,6 +959,7 @@ export default {
isSLT: false,
// 路由传参
barcode: "",
id: "",
// 特征点全部数组
tzdall: [],
// 之前的手动特征点
......@@ -991,6 +992,8 @@ export default {
height_ratio: 1,
// 自由绘制数组
Fcanvasarr: [],
// 发查询
fcxData: []
};
},
computed: {
......@@ -1010,8 +1013,6 @@ export default {
let w2 = window.innerWidth;
this.canvasWidth = (this.canvasWidth * w2) / w1;
this.canvasHeight = (this.canvasHeight * w2) / w1;
// 获取barcode,seq
this.barcode = this.$route.params.barcode;
// 从新增案件进入
if (this.$route.params.id == 'xz') {
......@@ -1022,6 +1023,18 @@ export default {
this.isHideImageExport = false
this.startEditImage = false
}
// 获取barcode,seq
this.barcode = this.$route.params.barcode;
if(this.$route.params.id != 'xz') {
this.id = this.$route.params.id;
} else {
this.id = this.$route.query.id
}
this.fcxData.push({
barcode: this.barcode,
id: this.id
})
},
mounted () {
this.startZoomAndTranslation()
......
<!--
* @Author: your name
* @Date: 2021-10-22 09:42:07
* @LastEditTime: 2021-12-16 11:30:35
* @LastEditTime: 2021-12-17 15:48:34
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\ryzwbjLeft.vue
......@@ -373,6 +373,23 @@ export default {
if (self.finger && self.finger.code) {
this.activerollFinger = self.finger.code
self.preSeq = this.activerollFinger
if (self.finger.code >= 1 && self.finger.code <= 5) {
// 右手-滚动
this.zwSelect = '滚动'
this.activeRollHand = 'right'
} else if(self.finger.code >= 6 && self.finger.code <= 10) {
// 左手-滚动
this.zwSelect = '滚动'
this.activeRollHand = 'left'
} else if(self.finger.code >= 11 && self.finger.code <= 15) {
// 右手-平面
this.zwSelect = '平面'
this.activePainHand = 'right'
} else if(self.finger.code >= 16 && self.finger.code <= 20) {
// 左手-平面
this.zwSelect = '平面'
this.activePainHand = 'left'
}
// 默认选中第一个出现的指纹
this.getRollOrPainFinger(self.finger)
/*if (self.finger.code > 10) {
......
<!--
* @Author: your name
* @Date: 2021-12-01 15:25:22
* @LastEditTime: 2021-12-16 23:52:00
* @LastEditTime: 2021-12-17 15:52:56
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\views\AllPersonnelBase\bzxxfh.vue
......@@ -406,25 +406,25 @@ export default {
let routeUrl = this.$router.resolve({
path: "fhxxTT/"+rowData.id,
});
window.open(routeUrl.href, "_blank");
window.open(routeUrl.href, "_self");
} else if (rowData.querytype == '1') {
// 倒查
let routeUrl = this.$router.resolve({
path: "fhxxTL/"+rowData.id,
});
window.open(routeUrl.href, "_blank");
window.open(routeUrl.href, "_self");
} else if (rowData.querytype == '2') {
// 正查
let routeUrl = this.$router.resolve({
path: "fhxxLT/"+rowData.id,
});
window.open(routeUrl.href, "_blank");
window.open(routeUrl.href, "_self");
} else if (rowData.querytype == '3') {
// 串查
let routeUrl = this.$router.resolve({
path: "fhxxLL/"+rowData.id,
});
window.open(routeUrl.href, "_blank");
window.open(routeUrl.href, "_self");
}
},
/**
......
<!--
* @Author: your name
* @Date: 2021-12-03 15:35:26
* @LastEditTime: 2021-12-17 15:15:24
* @LastEditTime: 2021-12-17 15:59:56
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\views\bzxxgl\fhxxLT.vue
......@@ -355,6 +355,7 @@ export default {
console.log(res)
if (res.data.code === 0) {
self.$message.success('解除比中关系成功!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -419,7 +420,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('未通过成功!')
self.$message.success('复核未通过!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -446,7 +448,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('通过成功!')
self.$message.success('复核通过!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......
<!--
* @Author: your name
* @Date: 2021-12-03 15:35:26
* @LastEditTime: 2021-12-17 15:15:16
* @LastEditTime: 2021-12-17 15:57:54
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\views\bzxxgl\fhxxLT.vue
......@@ -393,6 +393,7 @@ export default {
console.log(res)
if (res.data.code === 0) {
self.$message.success('解除比中关系成功!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -458,7 +459,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('未通过成功!')
self.$message.success('未通过复核!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -485,7 +487,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('通过成功!')
self.$message.success('通过复核!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......
<!--
* @Author: your name
* @Date: 2021-12-03 15:35:26
* @LastEditTime: 2021-12-17 15:12:24
* @LastEditTime: 2021-12-17 16:02:09
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\views\bzxxgl\fhxxLT.vue
......@@ -409,6 +409,7 @@ export default {
console.log(res)
if (res.data.code === 0) {
self.$message.success('解除比中关系成功!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -473,7 +474,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('未通过成功!')
self.$message.success('复核未通过!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -500,7 +502,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('通过成功!')
self.$message.success('复核通过!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......
<!--
* @Author: your name
* @Date: 2021-12-03 15:35:26
* @LastEditTime: 2021-12-17 15:12:28
* @LastEditTime: 2021-12-17 16:02:53
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\views\bzxxgl\fhxxLT.vue
......@@ -977,6 +977,7 @@ export default {
console.log(res)
if (res.data.code === 0) {
self.$message.success('解除比中关系成功!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -1041,7 +1042,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('未通过成功!')
self.$message.success('复核未通过!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......@@ -1068,7 +1070,8 @@ export default {
}).then(res => {
console.log(res)
if (res.data.code === 0) {
self.$message.success('通过成功!')
self.$message.success('复核通过!')
self.$router.back()
}
}).catch(err => {
console.log(err)
......
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