|
|
@ -460,6 +460,17 @@ export default {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onDetailModifySubmit() {
|
|
|
|
onDetailModifySubmit() {
|
|
|
|
|
|
|
|
if (this.inputDetailQuery.fromType === 3) {
|
|
|
|
|
|
|
|
if (isBlank(this.inputDetailQuery.time)) {
|
|
|
|
|
|
|
|
this.$message.error("接口请求时间不能为空");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.inputDetailQuery.time < 0) {
|
|
|
|
|
|
|
|
this.$message.error("接口请求时间不能小于0");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
updateDetailBasicThirdSys(this.inputDetailQuery)
|
|
|
|
updateDetailBasicThirdSys(this.inputDetailQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
if (response.code == 20000) {
|
|
|
|