diff --git a/src/views/project-management/implementation/phase.vue b/src/views/project-management/implementation/phase.vue index 4ad4806..7e36b12 100644 --- a/src/views/project-management/implementation/phase.vue +++ b/src/views/project-management/implementation/phase.vue @@ -15,6 +15,12 @@ + + + + + + @@ -79,7 +85,8 @@ const singleList = ref([]) const name = ref(router.currentRoute.value.name) const loading = ref(false) const formData = ref({ - changeState:'0' + changeState:'0', + isStop:'0' }) const file = ref({}) const deploymentId = ref() @@ -291,6 +298,22 @@ const schema = computed(() => { ) }, + { + label: '是否在预算内', + prop: 'isWithinBudget', + colProps: { + span: 6 + }, + component: () => ( +
+ { + baseFormData.value?.isWithinBudget!=null ? baseFormData.value?.isWithinBudget? + {'预算内'} + : {'预算外'}:'--' + } +
+ ) + }, { label: '部门分管领导', prop: 'optionalChargeLeadership',