Commit ef342d83 authored by 刘怀志's avatar 刘怀志

bug修改

parent 0e5e0f74
......@@ -7,4 +7,4 @@ export const RESULT_ENCRYPT_ABLE = true
// 是否开启参数加密
export const IS_ENCRYPT = true
// 需要排除的不进行加密的接口,正则匹配
export const EXCLUE_PATH = ['.*/captchaImage','.*/common/uploadMinioPublic','.*/uploadMinioPrivate','.*/export','.*/logout']
export const EXCLUE_PATH = ['.*/captchaImage','.*/common/uploadMinioPublic','.*/uploadMinioPrivate','.*/export','.*/logout','.*/common/download/resource']
......@@ -384,6 +384,7 @@ export default {
'fileSize': this.form.fileSize,
'isSave': '0',
'isShare': '1',
'path': this.form.uploadFile,
'pileNumber': this.form.pileNumber,
'monitorPoint': this.form.monitorPoint,
'line': this.form.line,
......
......@@ -337,14 +337,17 @@ export default {
methods: {
// 播放滚动条
playSwiper() {
this.swiperInter = setInterval(()=>{
this.swiper.slideNext()
},1500)
if (!this.swiperInter){
this.swiperInter = setInterval(()=>{
this.swiper.slideNext()
},1500)
}
},
// 停止播放滚动条
stopSwiper(){
if (this.swiperInter){
clearInterval(this.swiperInter)
this.swiperInter = null
}
},
/** 打开弹窗*/
......
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