fix : 添加征集详情

This commit is contained in:
2024-06-30 19:17:56 +08:00
parent e43213d9a7
commit fd3231db4d
11 changed files with 182 additions and 58 deletions

View File

@@ -38,35 +38,35 @@ const formDataArray = ref([
label: '征集名称',
prop: 'requirementName',
colProps: {
span: 12
span: 8
}
},
{
label: '项目名称',
prop: 'projectName',
colProps: {
span: 12
span: 8
}
},
{
label: '项目负责人',
prop: 'projectChargePerson',
colProps: {
span: 12
span: 8
}
},
{
label: '项目开始时间',
prop: 'startTime',
colProps: {
span: 12
span: 8
}
},
{
label: '项目预计持续时间',
prop: 'endTime',
colProps: {
span: 12
span: 8
}
},
{
@@ -84,7 +84,7 @@ const formDataArray = ref([
}
},
{
label: '项目总体完成率%',
label: '项目总体完成率',
prop: 'projectCompletionRate',
colProps: {
span: 6
@@ -257,10 +257,25 @@ const getBaseInfo = async () => {
try {
const {code, data} = await getBaseInfoApi(route.query.id)
baseForm.value.setValues(data)
await init()
} catch {
}
}
const init = async () => {
const {code, msg, data} = await searchUpdateLedgerData(route.query.id)
console.log('data',data)
if (data) {
tableData.value = data
baseForm.value.setValues(data)
}
// if (code !== 1000) {
// ElNotification({
// title: '提示',
// message: msg,
// type: 'error'
// })
// }
}
getBaseInfo()
const headBtnClick = (key) => {
switch (key) {
@@ -308,21 +323,7 @@ const search = (val) => {
tableConfig.params = {...val, projectId: route.query.id}
tableIns.value.refresh()
}
const init = async () => {
const {code, msg, data} = await searchUpdateLedgerData(route.query.id)
if (data) {
tableData.value = data
baseForm.value.setValues(data)
}
// if (code !== 1000) {
// ElNotification({
// title: '提示',
// message: msg,
// type: 'error'
// })
// }
}
init()
</script>
<style scoped>