From dc082351978a1e9f75d7a1471a0ca7ebeac552a5 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期一, 01 六月 2026 11:07:50 +0800
Subject: [PATCH] opo维护
---
src/views/project/DonationProcess/index.vue | 37 +++++++++++++++++++++++++------------
1 files changed, 25 insertions(+), 12 deletions(-)
diff --git a/src/views/project/DonationProcess/index.vue b/src/views/project/DonationProcess/index.vue
index 451ca73..4fa2c40 100644
--- a/src/views/project/DonationProcess/index.vue
+++ b/src/views/project/DonationProcess/index.vue
@@ -172,7 +172,12 @@
</template>
</el-table-column>
- <el-table-column label="濮撳悕" align="center" prop="name" width="100" />
+ <el-table-column
+ label="鎹愮尞鑰呭鍚�"
+ align="center"
+ prop="name"
+ width="100"
+ />
<el-table-column label="鎬у埆" align="center" prop="sex" width="80">
<template slot-scope="scope">
@@ -190,12 +195,13 @@
/>
</template>
</el-table-column>
- <el-table-column
- label="浼犳煋鐥�"
- align="center"
- prop="infectious"
- width="180"
- />
+ <el-table-column label="浼犳煋鐥�" align="center" prop="infectious">
+ <template slot-scope="scope">
+ <span v-for="item in scope.row.infectious.split(',')"
+ ><dict-tag :options="dict.type.sys_Infectious" :value="item" />
+ </span>
+ </template>
+ </el-table-column>
<el-table-column
label="棣栬瘖鍖婚櫌"
@@ -396,7 +402,13 @@
components: {
TerminateRestoreModal
},
- dicts: ["sys_donornode",'sys_BloodType', "sys_EthicalReview", "sys_BaseAssessConclusion"],
+ dicts: [
+ "sys_donornode",
+ "sys_BloodType",
+ "sys_EthicalReview",
+ 'sys_Infectious',
+ "sys_BaseAssessConclusion"
+ ],
data() {
return {
loading: false,
@@ -458,8 +470,7 @@
this.stats.pendingCount = response.data.terminationCase[0];
this.stats.approvedCount = response.data.terminationCase[1];
this.stats.terminatedCount = response.data.terminationCase[2];
- this.stats.totalCount =
- response.total - response.data.terminationCase[2];
+ this.stats.totalCount = response.total;
this.allTableData = realData;
let filteredData = this.applyFrontendFilter(realData);
@@ -593,8 +604,10 @@
/** 鏌ョ湅璇︽儏 */
handleDetail(row) {
- this.currentRecord = { ...row };
- this.detailVisible = true;
+ this.$router.push({
+ path: "/case/course",
+ query: { id: row.id, organType: "edit" }
+ });
},
/** 缁堟鎿嶄綔 */
--
Gitblit v1.9.3