|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-form :model="inputQuery" label-width="120px" :rules="rules">
|
|
|
|
|
<el-form :model="inputQuery" label-width="120px" :rules="rules" ref="inputQuery">
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-row>
|
|
|
|
|
<div style="margin: 0px 60px 10px auto; height: 35px; float: right;">
|
|
|
|
@ -8,7 +8,7 @@
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
ref="mainTable"
|
|
|
|
|
@click.native.stop="addSet()"
|
|
|
|
|
@click.native.stop="addSet('inputQuery')"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>保存
|
|
|
|
|
</el-button
|
|
|
|
@ -285,7 +285,7 @@ export default {
|
|
|
|
|
frequency: [
|
|
|
|
|
{required: true, message: '请输入周期', trigger: 'blur'},
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -388,7 +388,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
saveSet(this.inputQuery,"add").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.$message.error("添加成功");
|
|
|
|
|
this.$message.success("添加成功");
|
|
|
|
|
this.inputQuery.id = response.data.id;
|
|
|
|
|
this.relationId = this.inputQuery.id;
|
|
|
|
|
this.productVisible = true;
|
|
|
|
@ -421,42 +421,48 @@ export default {
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addSet(){
|
|
|
|
|
if (this.actDateRange !== null) {
|
|
|
|
|
this.inputQuery.startDate = this.actDateRange[0]+" 00:00:00";
|
|
|
|
|
this.inputQuery.endDate = this.actDateRange[1]+" 23:59:59";
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.startDate = null;
|
|
|
|
|
this.inputQuery.endDate = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!this.inputQuery.id){
|
|
|
|
|
saveSet(this.inputQuery,"add").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.inputQuery.id = response.data.id;
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
addSet(inputQuery){
|
|
|
|
|
this.$refs[inputQuery].validate((valid) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.actDateRange !== null) {
|
|
|
|
|
this.inputQuery.startDate = this.actDateRange[0]+" 00:00:00";
|
|
|
|
|
this.inputQuery.endDate = this.actDateRange[1]+" 23:59:59";
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.startDate = null;
|
|
|
|
|
this.inputQuery.endDate = null;
|
|
|
|
|
}
|
|
|
|
|
if(!this.inputQuery.id){
|
|
|
|
|
saveSet(this.inputQuery,"add").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.inputQuery.id = response.data.id;
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.$message.error("添加失败");
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
saveSet(this.inputQuery,"edit").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.$message.error("添加失败");
|
|
|
|
|
});
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
saveSet(this.inputQuery,"edit").then((response) => {
|
|
|
|
|
if(response.code == 20000){
|
|
|
|
|
this.closeDialog()
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
console.log(e)
|
|
|
|
|
this.$message.error("修改失败");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch((e) => {
|
|
|
|
|
console.log(e)
|
|
|
|
|
this.$message.error("修改失败");
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
console.log('error submit!!');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
|
|