1
lkk
昨天 b3df10f4259711c7448e0b548f0ce69776144fed
1
1个文件已修改
4 ■■■■ 已修改文件
src/views/doctor/examination/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/doctor/examination/index.vue
@@ -12,10 +12,10 @@
          v-model="queryParams.name"
          placeholder="请输入姓名"
          clearable
          @blur="queryParams.name = queryParams.name.trim()"
          @keyup.enter.native="handleQuery"
          style="width: 110px"
        />
        <!--  @blur="queryParams.name = queryParams.name.trim()" -->
      </el-form-item>
      <el-form-item label="体检号" prop="tjNumber">
        <el-input
@@ -753,7 +753,7 @@
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.name = this.queryParams.name.trim(); // 去除空格
      // this.queryParams.name = this.queryParams.name.trim();
      this.queryParams.page = 1;
      this.getList();
    },