Commit e4df6f55 by 张超军

上传进度条修改。路由增加打印

parent 6b9ae5dc
......@@ -30,6 +30,15 @@ export default[
},
component: () => import("@/views/zwxt/fingerprint3.vue")
},
// {
// path: "/print/:rybh",
// name: "print",
// meta: {
// title: '指纹界面',
// auth: 5
// },
// component: () => import("@/views/zwxt/rymb.vue")
// },
{
path: "/fingerprintIndex6/:rybh/:username",
name: "fingerprintIndex6",
......
......@@ -8551,13 +8551,17 @@ export default {
// self.uploadingTitle = '指纹上传失败'
this.uploadingStart = true
let timePercentage = setInterval(() => {
this.percentage++
if (self.percentage < 90) {
this.percentage++
}
if (this.percentage == 90) {
clearInterval(timePercentage)
}
}, 20);
let timePercentage2 = setInterval(() => {
this.percentage++
if (self.percentage < 99) {
this.percentage++
}
if (this.percentage == 99) {
clearInterval(timePercentage2)
}
......
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