f3fb7fa5 by renchao@pashanhoo.com

style:移动

1 parent ec8a3d61
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-12 08:51:36
* @LastEditTime: 2023-09-12 13:42:11
-->
<template>
<div class="rlPopup">
......@@ -136,7 +136,6 @@
this.scanTitle = '打开高拍仪'
}
},
// 左右移动
/**
* @description: 左右移动
* @param {*} direction
......@@ -144,11 +143,15 @@
*/
handleMove (direction) {
move(this.previewImg.imgList[this.previewImg.index].bsmFile, direction).then(res => {
this.$emit('updateList', { children: res.result, bsmMaterial: this.previewImg.bsmMaterial })
this.$message({
message: '移动成功!',
type: 'success'
})
if (res.code == 200) {
this.$emit('updateList', { children: res.result, bsmMaterial: this.previewImg.bsmMaterial })
this.$message({
message: '移动成功!',
type: 'success'
})
} else {
this.$message.error(res.message);
}
})
},
/**
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-12 11:26:18
* @LastEditTime: 2023-09-12 13:39:20
-->
<template>
<div class="from-clues">
......@@ -293,7 +293,6 @@
* @author: renchao
*/
ywhClick (item) {
sessionStorage.removeItem('keyPath')
//判断用户是否拥有该任务的权限,若有则跳转,无权限则给予提示并刷新页面
judgeUserTaskPermission({
bsmSlsq: item.bsmSlsq,
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-09-12 11:25:49
* @LastEditTime: 2023-09-12 13:39:30
-->
<template>
<div class="from-clues">
......@@ -219,7 +219,6 @@
* @author: renchao
*/
ywhClick (item) {
sessionStorage.removeItem('keyPath')
//有任务权限
if (item.sjlx == "3") {
item.djywbm = "DJBBL";
......@@ -241,9 +240,9 @@
);
window.open(href, `workFrameView${item.bsmSlsq}`);
}
},
},
};
}
}
}
</script>
<style scoped lang="scss">
@import "~@/styles/public.scss";
......