faet: 项目详情

This commit is contained in:
huangchenhao 2026-04-09 18:23:33 +08:00
parent dad31969d5
commit 17b0871ab5

View File

@ -8,7 +8,8 @@
<h4 style="margin:0 0 20px 50px;">基本信息</h4> <h4 style="margin:0 0 20px 50px;">基本信息</h4>
</el-col> </el-col>
<el-col :span="4" style="display: flex; justify-content: center;"> <el-col :span="4" style="display: flex; justify-content: center;">
<el-tag :type="getApprovalStatusType(form.approvalStatus)">{{ getApprovalStatusText(form.approvalStatus) }}</el-tag> <el-tag :type="getApprovalStatusType(form.approvalStatus)">{{
getApprovalStatusText(form.approvalStatus) }}</el-tag>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
@ -336,6 +337,14 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<div v-if="form.rejectReason">
<el-row>
<h4 style="margin:0 0 20px 50px;">驳回原因</h4>
</el-row>
<el-row>
<span style="margin:0 0 20px 50px;"> {{form.rejectReason}} </span>
</el-row>
</div>
</el-form> </el-form>
</div> </div>
<div class="button-box"> <div class="button-box">
@ -419,11 +428,10 @@ const getDetail = async (id) => {
} }
onMounted(() => { onMounted(async() => {
if (route.params.data) { if (route.params.data) {
const data = JSON.parse(decodeURIComponent(route.params.data)); const data = JSON.parse(decodeURIComponent(route.params.data));
await getDetail(data)
getDetail(data)
} }
}) })