Merge remote-tracking branch 'origin/dev_2nd_LCYH' into dev_2nd_LCYH

This commit is contained in:
zyx.net
2023-03-25 19:47:01 +08:00
4 changed files with 8 additions and 6 deletions
@@ -70,7 +70,7 @@ public class OtaBaCxJsfzbacsServiceImpl extends ServiceImpl<OtaBaCxJsfzbacsMappe
if (null != kzqObj) {
try {
field.setAccessible(true);
field.set(sjmk, kzqObj.toString());
field.set(sjmk, kzqObj);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
@@ -93,7 +93,7 @@ public class OtaBaCxJsfzbacsServiceImpl extends ServiceImpl<OtaBaCxJsfzbacsMappe
if (null != bjObj) {
try {
field.setAccessible(true);
field.set(otaBaCxJsfzbacs, bjObj.toString());
field.set(otaBaCxJsfzbacs, bjObj);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
@@ -48,7 +48,7 @@ public class OtaBaCxKsjjsmccsServiceImpl extends ServiceImpl<OtaBaCxKsjjsmccsMap
if (null != bjObj) {
try {
field.setAccessible(true);
field.set(otaBaCxJsfzbacs, bjObj.toString());
field.set(otaBaCxJsfzbacs, bjObj);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
@@ -47,7 +47,7 @@ public class OtaBaCxKsjxtmccsServiceImpl extends ServiceImpl<OtaBaCxKsjxtmccsMap
if (null != bjObj) {
try {
field.setAccessible(true);
field.set(otaBaCxKsjxtmccs, bjObj.toString());
field.set(otaBaCxKsjxtmccs, bjObj);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
@@ -56,14 +56,16 @@ export default {
otaIdT=''
}
getAction('/ota/otaBaCxQt/queryByOtaId',{otaIdT:otaIdT,otaId:localStorage.getItem('otaId')}).then(res=>{
console.log(res);
if(res.code==200){
this.queryParam=res.result
}
})
},
save(){
this.$refs.ruleForm.validate( valid =>{
if (valid) {
postAction('/ota/otaBaCxQt/add',{otaId:localStorage.getItem('otaId'),...this.queryParam}).then(res=>{
console.log(res);
console.log(res);
})
} else {
return false;