xiongxing 5 月之前
父節點
當前提交
3650508137

+ 1 - 0
src/api/elderly/assess/blood-glucose/index.ts

@@ -49,3 +49,4 @@ export const exportBloodGlucoseExcel = (data) => {
   })
 }
 
+

+ 1 - 0
src/views/elderly/assess/blood-glucose/component/form.vue

@@ -310,3 +310,4 @@ const handleClosed = () => {
 }
 </style>
 
+

+ 1 - 0
src/views/elderly/assess/blood-glucose/index.vue

@@ -153,3 +153,4 @@ onMounted(() => {
 })
 </script>
 
+

+ 1 - 1
src/views/elderly/nursing/keep-fit/constraint-records/index.vue

@@ -48,7 +48,7 @@
 
       <ButtonAdd @click="openForm(undefined)"  />
 <!--      <el-button @click="inputH" type="success"><Icon icon="fa:cloud-upload" :size="16" class="mr-1"/>导入</el-button>-->
-      <ButtonImport @click="handleImportCard"  />
+      <!-- <ButtonImport @click="handleImportCard"  /> -->
 
 
     </div>

+ 3 - 3
src/views/elderly/nursing/records/dispatchList/index.vue

@@ -76,12 +76,12 @@
       <el-table-column prop="elderAddress" header-align="center" align="center" label="地址" min-width="200" show-overflow-tooltip/>
       <el-table-column prop="orderTime" header-align="center" align="center" label="订单时间" min-width="150" show-overflow-tooltip>
         <template #default="scope">
-          {{(formatTimestamp(scope.row.orderTime))}}
+          {{(formatToDateTime(scope.row.orderTime))}}
         </template>
       </el-table-column>
       <el-table-column prop="comeTime" header-align="center" align="center" label="上门时间" min-width="150" show-overflow-tooltip>
         <template #default="scope">
-          {{formatTimestamp(scope.row.comeTime)}}
+          {{formatToDateTime(scope.row.comeTime)}}
         </template>
       </el-table-column>
       <el-table-column prop="isExpire" header-align="center" align="center" label="是否过期" min-width="220" show-overflow-tooltip/>
@@ -166,7 +166,7 @@ import {
 } from "@/api/member/appointment";
 import download from "@/utils/download";
 import { useUserStore } from '@/store/modules/user'
-import {formatTimestamp, getCurrentMonthRange} from "@/utils/dateUtil";
+import {formatToDateTime, getCurrentMonthRange} from "@/utils/dateUtil";
 import * as UserApi from "@/api/system/user";
 import Import from "@/components/ImportFile/index.vue";
 const message = useMessage() // 消息弹窗

+ 1 - 1
src/views/elderly/nursing/records/rehabilitation-assessment/EditForm.vue

@@ -328,7 +328,7 @@ const submitForm = async () => {
     }
     const res = await rehabilitationAssessmentUpdate(params)
     if (res) {
-      message.success(t('common.createSuccess'))
+      message.success('编辑成功')
       dialogVisible.value = false
       // 发送操作成功的事件
       emit('success')

+ 1 - 1
src/views/elderly/nursing/records/rehabilitation-training/EditForm.vue

@@ -277,7 +277,7 @@ const submitForm = async () => {
 
     const res = await trainingUpdate(params)
     if (res) {
-      message.success(t('common.updateSuccess'))
+      message.success('编辑成功')
       dialogVisible.value = false
       // 发送操作成功的事件
       emit('success')