MrShi
2026-05-14 e9a7cddce776382916e975402986144a88899ac5
admin/src/views/business/driverVerification.vue
@@ -97,6 +97,7 @@
        auditStatus: '',
        sex: '',
        createTime1: '',
        versionType: 1,
        startTime: '',
        endTime: ''
      }
@@ -111,8 +112,8 @@
  },
  methods: {
    handleDateChange (val) {
      this.searchForm.startTime = val ? val[0] : ''
      this.searchForm.endTime = val ? val[1] : ''
      this.searchForm.createTimeStart = val ? val[0] : ''
      this.searchForm.createTimeEnd = val ? val[1] : ''
      this.search()
    },
    reset () {
@@ -121,9 +122,10 @@
        carNo: '',
        status: '',
        sex: '',
        versionType: 1,
        createTime1: '',
        startTime: '',
        endTime: ''
        createTimeStart: '',
        createTimeEnd: ''
      }
      this.search()
    },
@@ -141,20 +143,6 @@
        row.status = val === 1 ? 0 : 1
        this.$tip.apiFailed(e)
      })
    },
    handleExport () {
      this.isWorking.export = true
      exportExcel(this.getTableParams())
          .then(res => {
            this.download(res)
            this.$tip.apiSuccess('导出成功')
          })
          .catch(e => {
            this.$tip.apiFailed(e)
          })
          .finally(() => {
            this.isWorking.export = false
          })
    }
  }
}