Jelajahi Sumber

优化提示信息。

xiaochan 3 tahun lalu
induk
melakukan
f89f22f4f8

+ 4 - 5
src/components/si-sheet-upload/JieSuanDanXiangQing.vue

@@ -661,10 +661,10 @@ const baoCunXiuGai = () => {
   data['opIdCode'] = code
   data['opIdName'] = name
   if (newData.decType !== oldData.decType) {
-    changeData = `申报类型变动:原:【${getTreatmentName(oldData.decType)}】新:【${getTreatmentName(newData.decType)}】。`
+    changeData = `申报类型变动:原:【${getDeclarationType(oldData.decType)}】新:【${getDeclarationType(newData.decType)}】。`
   }
   if (newData.operation !== oldData.operation) {
-    changeData += `治疗方式变动:原:【${getDeclarationType(oldData.operation)}】新:【${getTreatmentName(newData.operation)}】。`
+    changeData += `治疗方式变动:原:【${getTreatmentName(oldData.operation)}】新:【${getTreatmentName(newData.operation)}】。`
   }
   // 住院诊断信息
   if (!ArrayIsEqual(oldData.diseinfo, newData.diseinfo)) {
@@ -828,11 +828,10 @@ const init = () => {
   if (stringNotBlank(props.data.shenHeXinXi.id)) {
     diseinfo.value = clone(props.data.newYbZyDisDiag)
     oprninfo.value = clone(props.data.newBatjBa4)
+    console.log(props.data.shenHeXinXi)
     if (stringNotBlank(props.data.shenHeXinXi.reqRemark) && props.data.shenHeXinXi.auditFlag === 0) {
       setTimeout(() => {
-        ElMessageBox.alert(props.data.shenHeXinXi.reqRemark, '申请备注', {
-          type: 'warning',
-        })
+        shenHeRef.value = true
       }, 1000)
     }
   } else {

+ 7 - 3
src/components/si-sheet-upload/ShenHeXinXi.vue

@@ -1,18 +1,22 @@
 <template>
   <el-dialog v-model="shenHeDialog" title="审核信息" @close="emit('close')">
-    <el-descriptions title="基本信息" border style="width: 100%">
+    <el-descriptions border style="width: 100%" title="基本信息">
       <el-descriptions-item label="申请时间">{{ props.data.reqOpName }}</el-descriptions-item>
       <el-descriptions-item label="申请时间">{{ props.data.reqOpDate }}</el-descriptions-item>
       <el-descriptions-item label="申请备注">{{ props.data.reqRemark }}</el-descriptions-item>
       <el-descriptions-item label="审核人">{{ props.data.auditName }}</el-descriptions-item>
       <el-descriptions-item label="审核时间">{{ props.data.auditDate }}</el-descriptions-item>
-      <el-descriptions-item label="审核备注">{{ props.data.auditRemark }}</el-descriptions-item>
+      <el-descriptions-item label="审核备注">
+        <b style="color: red;font-size: 16px;">
+          {{ props.data.auditRemark }}
+        </b>
+      </el-descriptions-item>
       <el-descriptions-item label="审核状态">{{ shenHeZhuangTai(props.data.auditFlag) }}</el-descriptions-item>
     </el-descriptions>
   </el-dialog>
 </template>
 
-<script setup name="ShenHeXinXi">
+<script name="ShenHeXinXi" setup>
 const props = defineProps({
   data: {},
 })