|
@@ -754,7 +754,9 @@
|
|
|
@click.native.prevent="
|
|
|
revokeplansRow(scope.$index, schedulingList, scope.row)
|
|
|
"
|
|
|
- :disabled="scope.row.billStatus < 6||!scope.row.billStatus"
|
|
|
+ :disabled="
|
|
|
+ scope.row.billStatus < 6 || !scope.row.billStatus
|
|
|
+ "
|
|
|
>撤销</el-button
|
|
|
>
|
|
|
<el-button
|
|
@@ -762,7 +764,9 @@
|
|
|
type="text"
|
|
|
icon="el-icon-refresh"
|
|
|
@click.native.prevent="changeplansRow(scope.row)"
|
|
|
- :disabled="scope.row.billStatus < 6||!scope.row.billStatus"
|
|
|
+ :disabled="
|
|
|
+ scope.row.billStatus < 6 || !scope.row.billStatus
|
|
|
+ "
|
|
|
>变更</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -1283,11 +1287,21 @@
|
|
|
>提 交</el-button
|
|
|
>
|
|
|
<!-- <el-button type="success" @click="submitFix">修改</el-button> -->
|
|
|
- <el-button type="success" @click="submitAllowChanges" :disabled="!this.form.billStatus">修 改</el-button>
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ @click="submitAllowChanges"
|
|
|
+ :disabled="!this.form.billStatus"
|
|
|
+ >修 改</el-button
|
|
|
+ >
|
|
|
<el-button type="info" @click="submitSave" :disabled="disabled"
|
|
|
>保 存</el-button
|
|
|
>
|
|
|
- <el-button type="warning" @click="submitRetreat" :disabled="!this.form.billStatus">撤 回</el-button>
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ @click="submitRetreat"
|
|
|
+ :disabled="!this.form.billStatus"
|
|
|
+ >撤 回</el-button
|
|
|
+ >
|
|
|
<el-button @click="showDialog = false">取 消</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
@@ -1356,10 +1370,10 @@ export default {
|
|
|
type: Array,
|
|
|
default: [],
|
|
|
},
|
|
|
- relevantAttachments:{
|
|
|
+ relevantAttachments: {
|
|
|
type: Array,
|
|
|
default: [],
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
components: {
|
|
|
UploadFile,
|
|
@@ -1482,8 +1496,7 @@ export default {
|
|
|
this.fWbuOptions = response.rows;
|
|
|
});
|
|
|
company({
|
|
|
- delFlag: "0",
|
|
|
- billStatus: 6,
|
|
|
+ fStatus: 1,
|
|
|
}).then((response) => {
|
|
|
this.companyList = response.rows;
|
|
|
});
|
|
@@ -1769,7 +1782,7 @@ export default {
|
|
|
if (response.code == 200) {
|
|
|
this.$set(row, "billStatus", 6);
|
|
|
// this.$set(row, "disabled", true);
|
|
|
- this.$set(row, "id", response.data.plan.id);
|
|
|
+ this.$set(row, "id", response.data.plan.id);
|
|
|
this.$set(row, "orgId", response.data.plan.orgId);
|
|
|
this.$parent.getSave2(response.data.cntrs);
|
|
|
}
|
|
@@ -1779,7 +1792,7 @@ export default {
|
|
|
this.msgSuccess("成功提交");
|
|
|
if (response.code == 200) {
|
|
|
this.$set(row, "billStatus", 6);
|
|
|
- this.$set(row, "id", response.data.plan.id);
|
|
|
+ this.$set(row, "id", response.data.plan.id);
|
|
|
this.$set(row, "orgId", response.data.plan.orgId);
|
|
|
this.$parent.getSave2(response.data.cntrs);
|
|
|
}
|