|
@@ -133,6 +133,10 @@ export default {
|
|
|
finishNum: this.reportForm.finishNum,
|
|
|
isFinish: this.reportForm.isFinish
|
|
|
};
|
|
|
+ const { id, reportBoolean } = this.$route.query;
|
|
|
+ if(reportBoolean == 'true') {
|
|
|
+ postData.id = id;
|
|
|
+ }
|
|
|
if (this.reportForm.isFinish) {
|
|
|
if (this.reportForm.check_type != 0) {
|
|
|
if (this.reportForm.checker_id == null) {
|
|
@@ -159,7 +163,11 @@ export default {
|
|
|
console.log(this.reportForm.checkedSteelNum);
|
|
|
},
|
|
|
getMyPlanProcedureList() {
|
|
|
- this.$axios.post("/plan-procedure-total/getFillProcedureDetail", { id: this.$route.query.id,inputSteelNum:this.inputSteelNum})
|
|
|
+ const { id, reportBoolean } = this.$route.query;
|
|
|
+ this.$axios.post("/plan-procedure-total/getFillProcedureDetail", {
|
|
|
+ id: id,
|
|
|
+ inputSteelNum:this.inputSteelNum
|
|
|
+ })
|
|
|
.then(res => {
|
|
|
if (res.code == "ok") {
|
|
|
this.reportForm = res.data;
|