qinxianzhangyao
2024-06-21 f0ad3b00ae1cdbd12f64d870927f96ec6b7593a3
src/views/sampling/sampling/index.vue
@@ -70,7 +70,7 @@
        <el-button
          type="primary"
          icon="el-icon-thumb"
          size="mini"
          size="mini" style="margin:0 15px;"
          @click="Confirmreceipt"
          >确认采样</el-button
        >
@@ -380,7 +380,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
  mounted() {
@@ -395,6 +395,7 @@
          moment(res.data).format("YYYY-MM-DD 00:00:00"),
          moment(res.data).format("YYYY-MM-DD 23:59:00"),
        ];
        this.getList();
      });
    },
    handleSizeChange(val) {
@@ -432,8 +433,14 @@
    getList() {
      this.loading = true;
      this.queryParams.isSignFor = this.tjStatus;
      this.queryParams.beginTime = this.createTimeList[0];
      if(this.createTimeList){
        this.queryParams.beginTime = this.createTimeList[0];
      this.queryParams.endTime = this.createTimeList[1];
      }else if(this.createTimeList == null){
        this.queryParams.beginTime = null;
      this.queryParams.endTime = null;
      }
      getList(this.queryParams).then((response) => {
        if (response.data) {
          if (response.data.list == null) {
@@ -487,7 +494,7 @@
      this.resetForm("form");
    },
    hb() {
      console.log(this.queryParams.tjNum);
      // console.log(this.queryParams.tjNum);
      if (this.queryParams.tjNum != null) {
        this.handleQuery();
      }
@@ -499,6 +506,7 @@
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.createTimeList=[]
      this.resetForm("queryForm");
      this.handleQuery();
    },