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