|
|
@ -106,11 +106,15 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
onAddSubmit() {
|
|
|
|
onAddSubmit() {
|
|
|
|
let postRequesty = {
|
|
|
|
debugger
|
|
|
|
|
|
|
|
var postRequesty = {
|
|
|
|
invCode: this.inputQuery.code,
|
|
|
|
invCode: this.inputQuery.code,
|
|
|
|
selectActions: [],
|
|
|
|
selectActions: [],
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
var a=JSON.parse(sessionStorage.getItem('direction'))
|
|
|
|
|
|
|
|
if(a!="left"){
|
|
|
|
postRequesty.selectActions =JSON.parse(sessionStorage.getItem('userObj'));
|
|
|
|
postRequesty.selectActions =JSON.parse(sessionStorage.getItem('userObj'));
|
|
|
|
|
|
|
|
}
|
|
|
|
updateInvRelBusType(postRequesty).then((res) => {
|
|
|
|
updateInvRelBusType(postRequesty).then((res) => {
|
|
|
|
if (res.code == 20000) {
|
|
|
|
if (res.code == 20000) {
|
|
|
|
this.closeDialog();
|
|
|
|
this.closeDialog();
|
|
|
@ -127,6 +131,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
transferChange(value, direction, keyArr) {
|
|
|
|
transferChange(value, direction, keyArr) {
|
|
|
|
sessionStorage.setItem('userObj', JSON.stringify(keyArr))
|
|
|
|
sessionStorage.setItem('userObj', JSON.stringify(keyArr))
|
|
|
|
|
|
|
|
sessionStorage.setItem('direction', JSON.stringify(direction))
|
|
|
|
console.log(value);
|
|
|
|
console.log(value);
|
|
|
|
console.log(direction);
|
|
|
|
console.log(direction);
|
|
|
|
console.log(keyArr);
|
|
|
|
console.log(keyArr);
|
|
|
|