Bladeren bron

患者就诊信息和检测报告先按年份加住院号显示,点击后可以显示患者该次住院的多个诊断信息和多个检验检测报告

lsw 3 maanden geleden
bovenliggende
commit
baa7f05726
3 gewijzigde bestanden met toevoegingen van 165 en 183 verwijderingen
  1. 41 60
      admin-ui/src/views/work/visit/index.vue
  2. 123 122
      admin-ui/src/views/work/visit/search.vue
  3. 1 1
      app/pages/user/login.vue

+ 41 - 60
admin-ui/src/views/work/visit/index.vue

@@ -2,40 +2,21 @@
   <div class="app-container">
     <el-row :gutter="20" style="margin-top: 0">
       <el-col :span="4" style="box-shadow: 0 3px 10px 0 rgb(0 0 0 / 6%); border-right: 1px solid #f1f2f4; overflow-y: auto; height: 100%">
-          <el-input
-            placeholder="输入部门关键字"
-            :clearable="true"
-            v-model="filterText">
-          </el-input>
-        <div style="height: calc(-203px + 100vh);overflow-y: auto; margin-top: 3px">
-          <el-tree
-            :highlight-current="true"
-            class="filter-tree"
-            :data="deptOptions"
-            node-key="id"
-            :default-expanded-keys="[100]"
-            :filter-node-method="filterNode"
-            @node-click="handleNodeClick"
-            ref="tree">
-          </el-tree>
+        <el-input placeholder="输入部门关键字" :clearable="true" v-model="filterText"></el-input>
+        <div style="height: calc(-203px + 100vh); overflow-y: auto; margin-top: 3px">
+          <el-tree :highlight-current="true" class="filter-tree" :data="deptOptions" node-key="id" :default-expanded-keys="[100]" :filter-node-method="filterNode" @node-click="handleNodeClick" ref="tree"></el-tree>
         </div>
       </el-col>
       <el-col :span="20" style="height: 100%">
-        <el-form :model="queryParams" ref="queryForm" :inline="true" style="margin-top: 0;">
+        <el-form :model="queryParams" ref="queryForm" :inline="true" style="margin-top: 0">
           <el-form-item prop="physician">
             <el-input v-model="queryParams.physician" placeholder="请输入主治医生" clearable @keyup.enter.native="handleQuery" class="se" />
           </el-form-item>
           <el-form-item prop="name">
             <el-input v-model="queryParams.name" placeholder="请输入患者姓名" clearable @keyup.enter.native="handleQuery" class="se" />
           </el-form-item>
-          <el-form-item >
-            <el-date-picker
-              v-model="dischargeTime"
-              type="daterange"
-              start-placeholder="开始时间"
-              end-placeholder="结束时间"
-              value-format="yyyy-MM-dd"
-            />
+          <el-form-item>
+            <el-date-picker v-model="dischargeTime" type="daterange" start-placeholder="开始时间" end-placeholder="结束时间" value-format="yyyy-MM-dd" />
           </el-form-item>
           <el-form-item>
             <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
@@ -49,56 +30,56 @@
           <el-table-column label="主治医生" align="center" prop="physician" />
           <el-table-column label="出院方式" align="center" prop="dischargeMethod">
             <template slot-scope="scope">
-            <dict-tag :options="dict.type.discharge_method" :value="scope.row.dischargeMethod"></dict-tag>
+              <dict-tag :options="dict.type.discharge_method" :value="scope.row.dischargeMethod"></dict-tag>
             </template>
           </el-table-column>
           <el-table-column label="出院时间" align="center" prop="dischargeTime" />
           <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
             <template slot-scope="scope">
-              <el-button size="mini" type="text" icon="el-icon-search" @click="op('search',scope.row)">查看</el-button>
+              <el-button size="mini" type="text" icon="el-icon-search" @click="op('search', scope.row)">查看</el-button>
             </template>
           </el-table-column>
         </el-table>
-        <pagination v-if="total>0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList"/>
+        <pagination v-if="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
       </el-col>
     </el-row>
   </div>
 </template>
 
 <script>
-import search from "@/views/work/visit/search.vue";
+import search from '@/views/work/visit/search.vue';
 export default {
-  dicts:['discharge_method'],
+  dicts: ['discharge_method'],
   name: 'User',
   data() {
     return {
-      dischargeTime:[],
-      filterText:'',
-      total:0,
+      dischargeTime: [],
+      filterText: '',
+      total: 0,
       // 选中数组
       ids: [],
-      SearchShow:false,
+      SearchShow: false,
       // 非单个禁用
       single: true,
       // 非多个禁用
       multiple: true,
       //科室名称
-      deptName:undefined,
+      deptName: undefined,
       // 部门树选项
       deptOptions: null,
       //患者表
-      patientList:null,
+      patientList: null,
       //查询参数
       queryParams: {
-        pageNum:1,
-        pageSize:10,
+        pageNum: 1,
+        pageSize: 10,
         physician: undefined,
-        name:undefined,
-        department:undefined,
-        deptId:undefined,
-        startTime:undefined,
+        name: undefined,
+        department: undefined,
+        deptId: undefined,
+        startTime: undefined,
         endTime: undefined
-      },
+      }
     };
   },
   watch: {
@@ -107,7 +88,7 @@ export default {
         this.queryParams.startTime = newVal[0]; // 开始日期
         this.queryParams.endTime = newVal[1]; // 结束日期
       }
-      if(!newVal){
+      if (!newVal) {
         this.queryParams.startTime = ''; // 开始日期
         this.queryParams.endTime = ''; // 结束日期
         this.handleQuery();
@@ -128,48 +109,48 @@ export default {
     // 表单重置
     reset() {
       this.form = {
-        physician:undefined,
-        name:undefined
+        physician: undefined,
+        name: undefined
       };
       this.resetForm('form');
     },
     /** 查询患者列表*/
-    getList(){
+    getList() {
       this.get({
-        url:'/work/visit/patientCard',
+        url: '/work/visit/patientCard',
         data: {
-          ...this.queryParams,
+          ...this.queryParams
         }
-      }).then((response)=>{
+      }).then((response) => {
         this.patientList = response.rows;
         this.total = response.total;
-      })
+      });
     },
     /** 查询部门 */
     getDepartment() {
       this.get({
-        url:'/system/user/deptTree'
+        url: '/system/user/deptTree'
       }).then((response) => {
         this.deptOptions = response.data;
-        if(response.data.id != null){
+        if (response.data.id != null) {
           this.queryParams.deptId = response.data[0].id;
         }
         this.getList();
       });
     },
-    handleNodeClick(data){
-      if(this.queryParams.deptId === data.id){
+    handleNodeClick(data) {
+      if (this.queryParams.deptId === data.id) {
         return;
       }
       this.queryParams.deptId = data.id;
       this.getList();
     },
     selects(rows) {
-      this.ids = rows.map(item => item.id)
+      this.ids = rows.map((item) => item.id);
     },
     op(tag, row) {
       if (tag === 'search') {
-        this.iframe({ obj: search, param: {id:row.patId, cardId:row.cardId, name:row.name, department:row.department}, title:'查看患者信息',width: '90%', height: '93%'});
+        this.iframe({ obj: search, param: { id: row.patId, cardId: row.cardId, name: row.name, department: row.department }, title: '查看患者信息', width: '85%', height: '85%' });
       }
     },
     handleQuery() {
@@ -180,11 +161,11 @@ export default {
     /** 重置按钮操作 */
     resetQuery() {
       this.dischargeTime = [];
-      this.queryParams.startTime='';
-      this.queryParams.endTime='';
+      this.queryParams.startTime = '';
+      this.queryParams.endTime = '';
       this.resetForm('queryForm');
       this.handleQuery();
-    },
+    }
   }
 };
 </script>

+ 123 - 122
admin-ui/src/views/work/visit/search.vue

@@ -13,7 +13,8 @@
                 <i class="el-icon-document"></i>
                 <span>就诊信息</span>
               </template>
-              <el-submenu v-for="(mouths, year) in groupedDates" :key="year" :index="year.toString()">
+              <div @click="getCard(id)" style="padding-left: 56px;color: #1890ff;font-size: 15px;">{{ year }} -{{ patientInfo.blh }}</div>
+              <!--            <el-submenu v-for="(mouths, year) in groupedDates" :key="year" :index="year.toString()">
                 <template slot="title">
                   <span>{{year}}年</span>
                 </template>
@@ -22,10 +23,10 @@
                     <span>{{month}}月</span>
                   </template>
                   <el-menu-item v-for="item in days" @click="getCard(item.id)" :key="item.id" :index="item.id.toString()">
-                    {{item.day}}日 {{item.HH}}:{{item.MM}}:{{item.SS}}
+                    {{item.day}}日 {{item.HH}}:{{item.MM}}:{{item.id}}
                   </el-menu-item>
                 </el-submenu>
-              </el-submenu>
+              </el-submenu> -->
             </el-submenu>
           </el-menu>
         </div>
@@ -34,33 +35,33 @@
         <div class="right-body">
           <div class="patient-info-nk" v-if="active === 1">
             <div class="patient-info">
-              <span style="font-size: 20px;font-weight: 800">患者基本信息</span>
-              <el-descriptions  style="width: 69vw;" :column="3" border>
-                <el-descriptions-item label="患者标识符" v-if="patientInfo">{{patientInfo.patientCode}}</el-descriptions-item>
-                <el-descriptions-item label="就诊卡号" v-if="patientInfo">{{patientInfo.cardNumber}}</el-descriptions-item>
-                <el-descriptions-item label="姓名" v-if="patientInfo">{{patientInfo.name}}</el-descriptions-item>
+              <span style="font-size: 20px; font-weight: 800">患者基本信息</span>
+              <el-descriptions style="width: 69vw" :column="3" border>
+                <el-descriptions-item label="患者标识符" v-if="patientInfo">{{ patientInfo.patientCode }}</el-descriptions-item>
+                <el-descriptions-item label="就诊卡号" v-if="patientInfo">{{ patientInfo.cardNumber }}</el-descriptions-item>
+                <el-descriptions-item label="姓名" v-if="patientInfo">{{ patientInfo.name }}</el-descriptions-item>
                 <el-descriptions-item label="性别" v-if="patientInfo">
-                  <dict-tag :options="dict.type.patient_sex" :value="patientInfo.sex"/>
+                  <dict-tag :options="dict.type.patient_sex" :value="patientInfo.sex" />
                 </el-descriptions-item>
-                <el-descriptions-item label="身份证号" v-if="patientInfo">{{patientInfo.sfzh}}</el-descriptions-item>
-                <el-descriptions-item label="出生时间" v-if="patientInfo">{{patientInfo.birthDate}}</el-descriptions-item>
-                <el-descriptions-item label="居住地址" v-if="patientInfo">{{patientInfo.address}}</el-descriptions-item>
-                <el-descriptions-item label="联系电话" v-if="patientInfo">{{patientInfo.phone}}</el-descriptions-item>
+                <el-descriptions-item label="身份证号" v-if="patientInfo">{{ patientInfo.sfzh }}</el-descriptions-item>
+                <el-descriptions-item label="出生时间" v-if="patientInfo">{{ patientInfo.birthDate }}</el-descriptions-item>
+                <el-descriptions-item label="居住地址" v-if="patientInfo">{{ patientInfo.address }}</el-descriptions-item>
+                <el-descriptions-item label="联系电话" v-if="patientInfo">{{ patientInfo.phone }}</el-descriptions-item>
                 <el-descriptions-item label="婚姻状况" v-if="patientInfo">
                   <dict-tag :options="dict.type.patient_marital" :value="patientInfo.marital" />
                 </el-descriptions-item>
-                <el-descriptions-item label="民族" v-if="patientInfo">{{patientInfo.nation}}</el-descriptions-item>
-                <el-descriptions-item label="职业" v-if="patientInfo">{{patientInfo.career}}</el-descriptions-item>
-                <el-descriptions-item label="国籍" v-if="patientInfo">{{patientInfo.nationality}}</el-descriptions-item>
-                <el-descriptions-item label="病历号" v-if="patientInfo">{{patientInfo.blh}}</el-descriptions-item>
-                <el-descriptions-item label="病人卡号" v-if="patientInfo">{{patientInfo.brkh}}</el-descriptions-item>
-                <el-descriptions-item label="婴儿序号" v-if="patientInfo">{{patientInfo.yexh}}</el-descriptions-item>
+                <el-descriptions-item label="民族" v-if="patientInfo">{{ patientInfo.nation }}</el-descriptions-item>
+                <el-descriptions-item label="职业" v-if="patientInfo">{{ patientInfo.career }}</el-descriptions-item>
+                <el-descriptions-item label="国籍" v-if="patientInfo">{{ patientInfo.nationality }}</el-descriptions-item>
+                <el-descriptions-item label="病历号" v-if="patientInfo">{{ patientInfo.blh }}</el-descriptions-item>
+                <el-descriptions-item label="病人卡号" v-if="patientInfo">{{ patientInfo.brkh }}</el-descriptions-item>
+                <el-descriptions-item label="婴儿序号" v-if="patientInfo">{{ patientInfo.yexh }}</el-descriptions-item>
               </el-descriptions>
             </div>
 
             <div class="patient-nk" style="margin-top: 10px">
-              <span style="font-size: 20px;font-weight: 800">亲属关系</span>
-              <el-table style="width:69vw;" height="calc(75vh - 270px)"  :data="nkList" highlight-current-row>
+              <span style="font-size: 20px; font-weight: 800">亲属关系</span>
+              <el-table style="width: 69vw" height="calc(75vh - 270px)" :data="nkList" highlight-current-row>
                 <el-table-column label="姓名" align="center" prop="name"></el-table-column>
                 <el-table-column label="所属关系" align="center" prop="kinship"></el-table-column>
                 <el-table-column label="近亲地址" align="center" prop="address"></el-table-column>
@@ -74,45 +75,45 @@
 
           <div class="dg-info" v-if="active === 2">
             <div class="pv">
-              <span style="font-size: 20px;font-weight: 800">就诊信息</span>
-              <el-descriptions :column="3" border style="width: 69vw;" >
+              <span style="font-size: 20px; font-weight: 800">就诊信息</span>
+              <el-descriptions :column="3" border style="width: 69vw">
                 <el-descriptions-item label="患者类别">
                   <dict-tag :options="dict.type.patient_category" :value="pvList.patientCategory"></dict-tag>
                 </el-descriptions-item>
-                <el-descriptions-item label="所在病区">{{pvList.wardName}}</el-descriptions-item>
-                <el-descriptions-item label="主治医生">{{pvList.physician}}</el-descriptions-item>
-                <el-descriptions-item label="主管护士">{{pvList.nurseCode}}</el-descriptions-item>
+                <el-descriptions-item label="所在病区">{{ pvList.wardName }}</el-descriptions-item>
+                <el-descriptions-item label="主治医生">{{ pvList.physician }}</el-descriptions-item>
+                <el-descriptions-item label="主管护士">{{ pvList.nurseCode }}</el-descriptions-item>
                 <el-descriptions-item label="在院状态">
-                  <dict-tag :options="dict.type.hospital_status" :value="pvList.hospitalStatus"/>
+                  <dict-tag :options="dict.type.hospital_status" :value="pvList.hospitalStatus" />
                 </el-descriptions-item>
-                <el-descriptions-item label="入院次数">{{pvList.hospitalizedNumber}}</el-descriptions-item>
-                <el-descriptions-item label="就诊号码">{{pvList.cardId}}</el-descriptions-item>
+                <el-descriptions-item label="入院次数">{{ pvList.hospitalizedNumber }}</el-descriptions-item>
+                <el-descriptions-item label="住院号">{{ patientInfo.blh }}</el-descriptions-item>
                 <el-descriptions-item label="出院方式">
-                  <dict-tag :options="dict.type.discharge_method" :value="pvList.dischargeMothod"/>
+                  <dict-tag :options="dict.type.discharge_method" :value="pvList.dischargeMothod" />
                 </el-descriptions-item>
-                <el-descriptions-item label="入院时间">{{pvList.admissionTime}}</el-descriptions-item>
-                <el-descriptions-item label="出院时间">{{pvList.dischargeTime}}</el-descriptions-item>
-                <el-descriptions-item label="危重级别">{{pvList.level}}</el-descriptions-item>
-                <el-descriptions-item label="入区时间">{{pvList.entryTime}}</el-descriptions-item>
-                <el-descriptions-item label="出区时间">{{pvList.exitTime}}</el-descriptions-item>
-                <el-descriptions-item label="出区原因">{{pvList.reasonArea}}</el-descriptions-item>
+                <el-descriptions-item label="入院时间">{{ pvList.admissionTime }}</el-descriptions-item>
+                <el-descriptions-item label="出院时间">{{ pvList.dischargeTime }}</el-descriptions-item>
+                <el-descriptions-item label="危重级别">{{ pvList.level }}</el-descriptions-item>
+                <el-descriptions-item label="入区时间">{{ pvList.entryTime }}</el-descriptions-item>
+                <el-descriptions-item label="出区时间">{{ pvList.exitTime }}</el-descriptions-item>
+                <el-descriptions-item label="出区原因">{{ pvList.reasonArea }}</el-descriptions-item>
               </el-descriptions>
             </div>
 
             <div class="dg" style="margin-top: 10px">
-              <span style="font-size: 20px;font-weight: 800">就诊结果</span>
-              <el-table style=" width:69vw;" height="calc(75vh - 270px)" :data="dgList" highlight-current-row>
+              <span style="font-size: 20px; font-weight: 800">就诊结果</span>
+              <el-table style="width: 69vw" height="calc(75vh - 270px)" :data="dgList" highlight-current-row>
                 <el-table-column label="诊断名称" align="center" prop="diagnosticName"></el-table-column>
                 <el-table-column label="诊断代码" align="center" prop="diagnosticCode"></el-table-column>
                 <el-table-column label="诊断时间" align="center" prop="diagnosisTime"></el-table-column>
                 <el-table-column label="诊断类型" align="center" prop="diagnosticType">
                   <template slot-scope="scope">
-                    <dict-tag :options="dict.type.diagnostic_type" :value="scope.row.diagnosticType"/>
+                    <dict-tag :options="dict.type.diagnostic_type" :value="scope.row.diagnosticType" />
                   </template>
                 </el-table-column>
                 <el-table-column label="诊断类别" align="center" prop="diagnosticCategoryCode">
                   <template slot-scope="scope">
-                    <dict-tag :options="dict.type.diagnostic_category_code" :value="scope.row.diagnosticCategoryCode"/>
+                    <dict-tag :options="dict.type.diagnostic_category_code" :value="scope.row.diagnosticCategoryCode" />
                   </template>
                 </el-table-column>
               </el-table>
@@ -129,76 +130,76 @@
 export default {
   computed: {
     index() {
-      return index
+      return index;
     }
   },
-  dicts: ['patient_category','diagnostic_type', 'diagnostic_category_code','hospital_status','discharge_method','patient_sex','patient_marital'],
-  data(){
-    return{
-      activeNow:'1',
+  dicts: ['patient_category', 'diagnostic_type', 'diagnostic_category_code', 'hospital_status', 'discharge_method', 'patient_sex', 'patient_marital'],
+  data() {
+    return {
+      activeNow: '1',
       //groupDates的变量
-      year:undefined,
-      month:undefined,
-      day:undefined,
-      id:undefined,
+      year: undefined,
+      month: undefined,
+      day: undefined,
+      id: undefined,
       //显示的界面标记
-      active:1,
+      active: 1,
       //获取就诊时间的记录
-      timeList:null,
+      timeList: null,
       //处理时间的分组
       groupedDates: {},
       //亲属表数据总条数
-      totalNk:0,
+      totalNk: 0,
       //诊断表数据总条数
-      totalDg:0,
+      totalDg: 0,
       //dg表数据
-      dgList:null,
+      dgList: null,
       //pv表数据
-      pvList:null,
+      pvList: null,
       //nk表数据
-      nkList:null,
+      nkList: null,
       //患者详细信息
-      patientInfo:null,
+      patientInfo: null,
       //就诊详细信息
-      pvInfo:null,
+      pvInfo: null,
       //查询参数
-      queryParams:{
-        pageNum:1,
-        pageSize:10,
-        visitId:undefined,
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        visitId: undefined
       }
-    }
-  },
-  watch:{
+    };
   },
-  created() {
+  watch: {},
+  created() {},
+  mounted() {
     this.getTime();
     this.getNowDg();
     this.getPatient();
     this.getNkList();
   },
-  methods:{
-    handleOpen(index){
-      if(index === "2"){
+  methods: {
+    handleOpen(index) {
+      if (index === '2') {
         this.activeIndex();
       }
     },
-    activeIndex(){
-      this.activeNow = this.pvList.id.toString()
-      this.active = 2
+    activeIndex() {
+      this.activeNow = this.pvList.id.toString();
+      this.active = 2;
       this.queryParams.visitId = this.pvList.id;
-      this.getDgList()
+      this.getDgList();
     },
     /** 获取当前选中的就诊记录 */
-    getNowDg(){
+    getNowDg() {
       this.get({
-        url:'work/visit/list',
-        data:{
-          cardId:this.param.cardId
+        url: 'work/visit/list',
+        data: {
+          cardId: this.param.cardId
         }
-      }).then((response)=>{
+      }).then((response) => {
         this.pvList = response.rows[0];
-      })
+      });
     },
     activePatient(sign) {
       if (sign === 1) {
@@ -210,46 +211,47 @@ export default {
       }
     },
     /** 查询某一次的就诊信息 */
-    getCard(id){
+    getCard(id) {
+      console.log('id:' + id);
       this.activePatient(2);
-      if(id === this.pvList.id){
+      if (id === this.pvList.id) {
         return;
       }
       this.queryParams.visitId = id;
       this.get({
-        url:'/work/visit/list',
-        data:{
-          id:id
+        url: '/work/visit/list',
+        data: {
+          id: id
         }
-      }).then((response)=>{
+      }).then((response) => {
         this.pvList = response.rows[0];
         this.activeNow = this.pvList.id.toString();
         this.getDgList();
-      })
+      });
     },
     /** 查询某科室某个病人的就诊记录 */
-    getTime(){
+    getTime() {
       this.get({
-        url:'/work/visit/list',
-        data:{
-          patId:this.param.id,
-          department:this.param.department,
-          pageSize:10000
+        url: '/work/visit/list',
+        data: {
+          patId: this.param.id,
+          department: this.param.department,
+          pageSize: 10000
         }
-      }).then( (response) => {
+      }).then((response) => {
         this.timeList = response.rows;
-        console.log(this.timeList)
+        console.log(this.timeList);
         this.groupDates(this.timeList);
-      })
+      });
     },
     groupDates(dates) {
-      dates.forEach(date => {
+      dates.forEach((date) => {
         this.year = date.admissionTime.substring(0, 4);
         this.month = date.admissionTime.substring(5, 7);
         this.day = date.admissionTime.substring(8, 10);
-        this.HH = date.admissionTime.substring(11,13);
-        this.MM = date.admissionTime.substring(14,16);
-        this.SS = date.admissionTime.substring(17,20);
+        this.HH = date.admissionTime.substring(11, 13);
+        this.MM = date.admissionTime.substring(14, 16);
+        this.SS = date.admissionTime.substring(17, 20);
         this.id = date.id;
         if (!this.groupedDates[this.year]) {
           this.groupedDates[this.year] = {};
@@ -257,48 +259,47 @@ export default {
         if (!this.groupedDates[this.year][this.month]) {
           this.groupedDates[this.year][this.month] = [];
         }
-        this.groupedDates[this.year][this.month].push(
-          {
-            id: this.id,
-            day: this.day,
-            HH: this.HH,
-            MM: this.MM,
-            SS: this.SS
-          });
-      })
+        this.groupedDates[this.year][this.month].push({
+          id: this.id,
+          day: this.day,
+          HH: this.HH,
+          MM: this.MM,
+          SS: this.SS
+        });
+      });
       this.$forceUpdate();
     },
     /** 查询患者信息 */
-    getPatient(){
+    getPatient() {
       this.get({
-        url:'/work/patient/detail/'+this.param.id,
-      }).then((response)=>{
+        url: '/work/patient/detail/' + this.param.id
+      }).then((response) => {
         this.patientInfo = response.data;
-      })
+      });
     },
     /** 查询亲属表 */
     getNkList() {
       this.get({
-        url:'/work/nk/list',
-        data:{
-          patId:this.param.id,
+        url: '/work/nk/list',
+        data: {
+          patId: this.param.id,
           ...this.queryParams
         }
-      }).then((response)=>{
+      }).then((response) => {
         this.nkList = response.rows;
         this.totalNk = response.total;
-      })
+      });
     },
     /** 查询诊断记录表 */
-    getDgList(){
+    getDgList() {
       this.get({
-        url:'/work/diagnosis/list',
+        url: '/work/diagnosis/list',
         data: this.queryParams
-      }).then((response)=>{
+      }).then((response) => {
         this.dgList = response.rows;
         this.totalDg = response.total;
-      })
+      });
     }
   }
-}
+};
 </script>

+ 1 - 1
app/pages/user/login.vue

@@ -3,7 +3,7 @@
 		<back></back>
 		<image src="https://chenglantimes.com/prod-api/profile/upload/2024/08/27/1724751981292.jpg" mode="widthFix" style="width: 100%"></image>
 		<view class="bg">
-			<image src="https://axure-file.lanhuapp.com/md5__f93627286149f825890eb821ab5d5abb.png" mode="widthFix" class="llg animated fadeInDown"></image>
+			<image src="https://chenglantimes.com/prod-api/profile/upload/2025/01/02/1735784855953.jpg" mode="widthFix" class="llg animated fadeInDown"></image>
 			<view class="xy">
 				<u-checkbox-group class="checkbox" v-model="item.checked">
 					<u-checkbox size="15" shape="circle" label="我已阅读并同意" labelSize="14" name="true"></u-checkbox>