WXL
5 天以前 952ce5369317b40f6c6f2e11e70969d50108d240
src/views/patient/patient/outpatient.vue
@@ -55,6 +55,7 @@
                v-model="pickertime"
                type="daterange"
                range-separator="至"
                value-format="yyyy-MM-dd"
                start-placeholder="开始日期"
                end-placeholder="结束日期"
              >
@@ -159,12 +160,12 @@
          <el-table-column
            label="就诊时间"
            align="center"
            key="admindate"
            prop="admindate"
            key="admitdate"
            prop="admitdate"
            width="160"
          >
            <template slot-scope="scope">
              <span>{{ formatTime(scope.row.admindate) }}</span>
              <span>{{ formatTime(scope.row.admitdate) }}</span>
            </template>
          </el-table-column>
@@ -603,8 +604,8 @@
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.queryParams.starttime=pickertime[0];
      this.queryParams.endtime=pickertime[1];
      this.queryParams.starttime=this.pickertime[0];
      this.queryParams.endtime=this.pickertime[1];
      this.getList();
    },
    /** 重置按钮操作 */