jiangping
2025-05-30 500832387dd658dcfa5ca2ccca602208c16f6802
company/src/views/enterprise/settleClaimsCom.vue
@@ -131,8 +131,7 @@
            <pagination
                @size-change="handleSizeChange"
                @current-change="handlePageChange"
                :pagination="tableData.pagination"
            >
                :pagination="tableData.pagination">
            </pagination>
        </template>
        <!-- 详情 -->
@@ -166,9 +165,9 @@
        baseSolutionId: '',
        companyId: '',
        duName: '',
        createDateStr:null,
        createDateStr: null,
        memberName: '',
        applyCode:null,
        applyCode: null,
        memberIdcardNo: '',
        status: '',
        informantName: ''
@@ -189,42 +188,42 @@
    this.loadSelectList()
  },
  methods: {
      // 撤销
      revoke(id) {
          this.$confirm('撤销后,案件直接结束,无法继续进行理赔操作!', '是否撤销报案?', {
              confirmButtonText: '确定撤销',
              cancelButtonText: '我再想想',
              type: 'warning'
          }).then(() => {
              returnSettle({ id })
                  .then(res => {
                      this.search()
                  })
          }).catch(() => {
    // 撤销
    revoke (id) {
      this.$confirm('撤销后,案件直接结束,无法继续进行理赔操作!', '是否撤销报案?', {
        confirmButtonText: '确定撤销',
        cancelButtonText: '我再想想',
        type: 'warning'
      }).then(() => {
        returnSettle({ id })
          .then(res => {
            this.search()
          })
      }).catch(() => {
          });
      },
      })
    },
    loadSelectList () {
      solutionAll({ dataType: 0 }).then(res => {
        this.solutionList = res
      }).catch(err => {
      })
    },
      deleRow(id) {
          this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
              confirmButtonText: '确定',
              cancelButtonText: '取消',
              type: 'warning'
          }).then(() => {
              dele(id)
                .then(res => {
                    this.$message.success('删除成功')
                    this.search()
                })
          }).catch(() => {
    deleRow (id) {
      this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
        confirmButtonText: '确定',
        cancelButtonText: '取消',
        type: 'warning'
      }).then(() => {
        dele(id)
          .then(res => {
            this.$message.success('删除成功')
            this.search()
          })
      }).catch(() => {
          });
      }
      })
    }
  }
}