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

bug修改

parent 0e5e0f74
...@@ -7,4 +7,4 @@ export const RESULT_ENCRYPT_ABLE = true ...@@ -7,4 +7,4 @@ export const RESULT_ENCRYPT_ABLE = true
// 是否开启参数加密 // 是否开启参数加密
export const IS_ENCRYPT = 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 { ...@@ -384,6 +384,7 @@ export default {
'fileSize': this.form.fileSize, 'fileSize': this.form.fileSize,
'isSave': '0', 'isSave': '0',
'isShare': '1', 'isShare': '1',
'path': this.form.uploadFile,
'pileNumber': this.form.pileNumber, 'pileNumber': this.form.pileNumber,
'monitorPoint': this.form.monitorPoint, 'monitorPoint': this.form.monitorPoint,
'line': this.form.line, 'line': this.form.line,
......
...@@ -337,14 +337,17 @@ export default { ...@@ -337,14 +337,17 @@ export default {
methods: { methods: {
// 播放滚动条 // 播放滚动条
playSwiper() { playSwiper() {
this.swiperInter = setInterval(()=>{ if (!this.swiperInter){
this.swiper.slideNext() this.swiperInter = setInterval(()=>{
},1500) this.swiper.slideNext()
},1500)
}
}, },
// 停止播放滚动条 // 停止播放滚动条
stopSwiper(){ stopSwiper(){
if (this.swiperInter){ if (this.swiperInter){
clearInterval(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