From 2698387e653c6a25059c3ae9976f18b814eba892 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期五, 12 九月 2025 15:16:46 +0800
Subject: [PATCH] 医疗权限
---
src/views/project/ethicalReview/index.vue | 27 ++++++++++++++++++---------
1 files changed, 18 insertions(+), 9 deletions(-)
diff --git a/src/views/project/ethicalReview/index.vue b/src/views/project/ethicalReview/index.vue
index 262cadb..3eb4d3e 100644
--- a/src/views/project/ethicalReview/index.vue
+++ b/src/views/project/ethicalReview/index.vue
@@ -123,7 +123,7 @@
:data="listnews"
border
>
- <el-table-column
+ <el-table-column
label="妗堜緥鏃堕棿"
align="center"
prop="donatetime"
@@ -134,7 +134,19 @@
</template>
</el-table-column>
<el-table-column label="鎹愮尞鑰�" align="center" prop="name" width="120" />
- <el-table-column label="骞撮緞" align="center" prop="age" width="100" />
+ <el-table-column label="骞撮緞" align="center" prop="age" width="100">
+ <template slot-scope="scope">
+ {{
+ `${
+ scope.row.age && scope.row.age !== 0 ? `${scope.row.age}${scope.row.ageunit?scope.row.ageunit:''}` : ""
+ } ${
+ scope.row.age2 && scope.row.age2 !== 0
+ ? `${scope.row.age2}${scope.row.ageunit2}`
+ : ""
+ }`.trim()
+ }}
+ </template>
+ </el-table-column>
<el-table-column label="鎬у埆" align="center" prop="sex" width="100">
<template slot-scope="scope">
<dict-tag
@@ -151,17 +163,17 @@
<el-table-column
label="浼︾悊瀹℃煡缁撹"
align="center"
- prop="flowconclusion"
+ prop="expertconclusion"
width="100"
>
<template slot-scope="scope">
<dict-tag
:options="dict.type.sys_EthicalReview"
- :value="scope.row.flowconclusion"
+ :value="scope.row.expertconclusion"
/>
</template>
</el-table-column>
- <el-table-column label="瀹℃煡鎰忚" align="center" prop="flowcontent" />
+ <el-table-column label="瀹℃煡鎰忚" align="center" prop="expertopinion" />
<el-table-column
label="瀹℃煡鏃堕棿"
align="center"
@@ -751,10 +763,7 @@
this.loading = true;
this.queryParams.params = {};
sessionStorage.removeItem("ethicalReview");
- sessionStorage.setItem(
- "ethicalReview",
- JSON.stringify(this.queryParams)
- );
+ sessionStorage.setItem("ethicalReview", JSON.stringify(this.queryParams));
if (null != this.daterangeReporttime && "" != this.daterangeReporttime) {
this.queryParams.params[
--
Gitblit v1.9.3