feat : 需求上报和详情新增是否在预算内字段

This commit is contained in:
2024-10-24 22:04:46 +08:00
parent c2c1cfd6e1
commit a8feed2d7f
2 changed files with 20 additions and 30 deletions

View File

@@ -153,27 +153,6 @@ const baseForm = ref()
const baseFormData = ref([])
const schema = computed(() => {
return [
// {
// label: '征集公司',
// prop: 'affiliatedCompany',
// colProps: {
// span: 6
// }
// },
// {
// label: '征集名称',
// prop: 'requirementName',
// colProps: {
// span: 6
// }
// },
// {
// label: '征集说明',
// prop: 'collectExplain',
// colProps: {
// span: 24
// }
// },
{
label: '承办单位',
prop: 'affiliatedCompany',
@@ -347,13 +326,6 @@ const schema = computed(() => {
</div>
)
},
// {
// label: '是否专项资金项目',
// prop: 'isSpecialFund',
// colProps: {
// span: 6
// }
// },
{
label: '所属专项资金',
prop: 'specialFund',
@@ -377,6 +349,13 @@ const schema = computed(() => {
</div>
)
},
{
label: '是否在预算内',
prop: 'isWithinBudget',
colProps: {
span: 6
}
},
{
label: '部门分管领导',
prop: 'optionalChargeLeadership',
@@ -393,7 +372,7 @@ const handlePrint = (print) => {
}
// 格式化详情步骤条
const formatProcedure = (data) => {
console.info("🚀 ~method:formatProcedure -----", data)
// console.info("🚀 ~method:formatProcedure -----", data)
let arr = []
if (data instanceof Array) {
data.forEach(item => {