Explorar el Código

搜索去除空格

zsw007 hace 3 años
padre
commit
b05072ccff
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/components/callRecord/CallRecordManager.vue

+ 3 - 3
src/components/callRecord/CallRecordManager.vue

@@ -430,14 +430,14 @@ export default {
       const param = {
         current: this.inCurrentPage || this.currentPage,
         size: this.pageSize,
-        patientId: this.filter.patientId, // 患者标识
-        sceneName: this.filter.sceneName, // 服务名
+        patientId: this.filter.patientId.trim(), // 患者标识
+        sceneName: this.filter.sceneName.trim(), // 服务名
         successFlag: this.filter.successFlag,
         startGmtReq: startGmtReq,
         endGmtReq: endGmtReq,
         startGmtResp: startGmtResp,
         endGmtResp: endGmtResp,
-        subHospitalName: this.filter.subHospitalName.trim()
+        subHospitalName: this.filter.subHospitalName.trim() // 子院区
       };
       return param;
     },