Commit 95b85ef1 by LJM

bug

parent 5ffe1914
...@@ -307,7 +307,6 @@ export default { ...@@ -307,7 +307,6 @@ export default {
closetab(path) { closetab(path) {
let tab_arr = JSON.parse(sessionStorage.getItem('tabs')) let tab_arr = JSON.parse(sessionStorage.getItem('tabs'))
for (var i = 0; i < tab_arr.length; i++) { for (var i = 0; i < tab_arr.length; i++) {
if (tab_arr[i].path == path) { if (tab_arr[i].path == path) {
tab_arr.splice(i, 1); tab_arr.splice(i, 1);
sessionStorage.setItem('tabs', JSON.stringify(tab_arr)); sessionStorage.setItem('tabs', JSON.stringify(tab_arr));
...@@ -507,6 +506,7 @@ export default { ...@@ -507,6 +506,7 @@ export default {
&.first { &.first {
background-color: transparent; background-color: transparent;
&::after { &::after {
display: none; display: none;
} }
......
...@@ -116,6 +116,7 @@ export default { ...@@ -116,6 +116,7 @@ export default {
}, },
//取消发货 //取消发货
cancelSend() { cancelSend() {
var self = this;
if (this.multipleSelection.length <= 0) { if (this.multipleSelection.length <= 0) {
this.$message({ this.$message({
message: "请勾选数据进行操作", message: "请勾选数据进行操作",
...@@ -148,7 +149,7 @@ export default { ...@@ -148,7 +149,7 @@ export default {
type: 'success', type: 'success',
duration: 2000, duration: 2000,
onClose() { onClose() {
this.getData(); self.getData();
} }
}); });
} else { } else {
......
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 sign in to comment