feat : 阶段变更的项目基本信息加上"是否在预算内"字段

This commit is contained in:
2024-10-25 21:41:26 +08:00
parent e78ae692ee
commit ffe7d0bb6c

View File

@@ -15,6 +15,12 @@
</el-option>
</el-select>
</el-form-item>
<!-- <el-form-item label="是否项目终止" label-width="110" prop="isStop">-->
<!-- <el-radio-group v-model="formData.isStop" >-->
<!-- <el-radio label="1"></el-radio>-->
<!-- <el-radio label="0"></el-radio>-->
<!-- </el-radio-group>-->
<!-- </el-form-item>-->
</el-form>
<user-picker :multiple="true" ref="userPicker" title="请选择抄送人员" v-model:value="userList"
@ok="ccPersonPickerOkOrCancel" @cancelOrClear="ccPersonPickerOkOrCancel"/>
@@ -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(() => {
</div>
)
},
{
label: '是否在预算内',
prop: 'isWithinBudget',
colProps: {
span: 6
},
component: () => (
<div>
{
baseFormData.value?.isWithinBudget!=null ? baseFormData.value?.isWithinBudget?
<span>{'预算内'}</span>
: <span>{'预算外'}</span>:'--'
}
</div>
)
},
{
label: '部门分管领导',
prop: 'optionalChargeLeadership',