fix : 修复细节

This commit is contained in:
2024-05-14 21:07:17 +08:00
parent de2f566bd0
commit 1f9a3603d8
4 changed files with 84 additions and 74 deletions

View File

@@ -1,10 +1,23 @@
<template>
<div>
项目立项申请
<div class="apply-block">
<el-form :model="formData" ref="applyForm" label-width="auto" :rules="rules">
<baseTitle title="项目立项-申请"></baseTitle>
<el-row>
<el-col :span="12">
<el-form-item label="前置流程">
<el-input v-model="formData.requirementName" clearable></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</template>
<script setup lang="jsx">
const formData = ref({})
const rules = reactive({
auditOpinion: [{required: true, message: '请输入审核意见', trigger: 'blur'}],
})
</script>
<style scoped>

View File

@@ -165,7 +165,7 @@ const tableConfig = reactive({
}
}
],
api: '/workflow/mosr/requirement',
api: '',
params: {},
})