From ffe7d0bb6cb7d4ff3e9d27530f23963cca7317a0 Mon Sep 17 00:00:00 2001 From: odjbin <1042039504@qq.com> Date: Fri, 25 Oct 2024 21:41:26 +0800 Subject: [PATCH] =?UTF-8?q?feat=20:=20=E9=98=B6=E6=AE=B5=E5=8F=98=E6=9B=B4?= =?UTF-8?q?=E7=9A=84=E9=A1=B9=E7=9B=AE=E5=9F=BA=E6=9C=AC=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=8A=A0=E4=B8=8A"=E6=98=AF=E5=90=A6=E5=9C=A8=E9=A2=84?= =?UTF-8?q?=E7=AE=97=E5=86=85"=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../implementation/phase.vue | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) 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',