fuliqi
2024-10-15 0e944bfc16136c0a749fc6022e0dfc7f2b4af010
src/views/system/check/result/detail/index.vue
@@ -72,7 +72,7 @@
                size="mini"
                type="text"
                icon="el-icon-view"
                @click="handleDetail(scope.row.id)"
                @click="handleDetail(scope.row)"
              >详细
              </el-button>
            </div>
@@ -246,12 +246,13 @@
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`);
    },
    handleDetail(id) {
    handleDetail(row) {
      this.$router.push({
        path: '/check/detail/detail',
        query: {
          id: id,
          id: row.id,
          examineTag: this.activeIndex,
          examineCategory: row.examineCategory,
          deptId: this.queryParamsList.deptId
        }
      })