feige
2024-11-28 7fc578dc2032fac935267e92208f7f11384e3800
修改了相关bug
2个文件已修改
20 ■■■■■ 已修改文件
ruoyi-ui/src/views/healthy/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/search/index.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/healthy/index.vue
@@ -20,7 +20,7 @@
      <el-form-item label="救病医院" prop="hospital" >
        <el-input
          v-model="queryParams.hospital"
          placeholder="请输入就病医院"
          placeholder="请输入救病医院"
          clearable
          style="width: 200px;
                   height: 35px;
@@ -134,7 +134,7 @@
        <template slot-scope="scope">{{scope.row.checkTime? scope.row.checkTime: '————'}}</template>
      </el-table-column>
      <el-table-column label="就病医院" prop="hospital" sortable width="120" >
      <el-table-column label="救病医院" prop="hospital" sortable width="120" >
      </el-table-column>
      <el-table-column label="题名" prop="title" sortable width="150" />
@@ -214,8 +214,8 @@
        </el-form-item>
        <el-form-item label="就病医院" prop="hospital">
          <el-input v-model="formDat.hospital" placeholder="请输入就病医院" clearable :style="{width: '100%'}" >
        <el-form-item label="救病医院" prop="hospital">
          <el-input v-model="formDat.hospital" placeholder="请输入救病医院" clearable :style="{width: '100%'}" >
          </el-input>
        </el-form-item>
        <el-form-item label="题名" prop="title">
@@ -468,7 +468,7 @@
        hospital: [{
          required: true,
          message: '请输入就病医院',
          message: '请输入救病医院',
          trigger: 'blur'
        }],
        type: [{
ruoyi-ui/src/views/search/index.vue
@@ -30,7 +30,7 @@
      </el-form-item>
      <el-form-item>
        <el-button size="mini" @click="getList" style=" width: 67px;height: 27px;background: #FFDDE3;
        <el-button size="mini" @click="handleQuery" style=" width: 67px;height: 27px;background: #FFDDE3;
            border-radius: 7px 7px 7px 7px;opacity: 1; " >搜索</el-button>
        <el-button  size="mini" @click="resetQuery" style=" width: 67px;height: 27px;background: #FFDDE3;
            border-radius: 7px 7px 7px 7px;opacity: 1; ">重置</el-button>
@@ -239,13 +239,17 @@
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
      if(this.keyword!=''||this.dateRange.length!=0)
        this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRange = [];
      this.keyword = '';
      this.getList();
      this.queryParams.pageNum = 1;
             this.searchList = []
     // this.getList();
    },
    // 多选框选中数据
    handleSelectionChange(selection) {