ll
liukangdong
2025-02-24 b94daf4ea357eafce26f37a1f0a799d55cbfa1a4
h5/pages/applicationRecord/applicationRecord.vue
@@ -90,23 +90,34 @@
      status: '',
      statusMap: {
        0: '待审核',
        1: '已提交',
        0: '待审批',
        1: '审批中',
        2: '审核通过',
        3: '审核驳回',
        4: '取消',
        5: '下发成功',
        6: '下发失败',
        7: '拜访中',
        8: '已签离',
        9: '已失效',
      }
    }
  },
  onLoad() {
    this.getList()
  onShow() {
     this.pagination.page = 0
     this.list = []
     this.getList()
  },
  onReachBottom() {
    if (this.total > 10) {
      this.getList()
    }
      const {
         total,
         list
      } = this
      if (list.length < total) {
         this.getList()
      } else {
         this.showToast('暂无更多数据')
      }
  },
  methods: {
    handleDetail(id) {