“zhuo”
2023-08-09 ae7722004ef0ce44416dd080650acc3e4cbea396
src/views/experiment/reportAuditing/index.vue
@@ -1,13 +1,209 @@
<template>
  <div>报告审核</div>
  <div class="content-main">
    <div class="top-bar">
      <el-form ref="form" :inline="true">
        <el-form-item class="sermargin">
          <el-input
            v-model="input"
            class="input-form"
            placeholder="请直接输入样式编号/报告编号/样品名称/进行搜索或下拉选择进行组合查询"
            @keyup.enter.native="getData"
          />
        </el-form-item>
        <el-form-item>
          <el-button type="primary" @click="getData()">查询</el-button>
          <el-button type="primary" plain @click="resetData()">重置</el-button>
        </el-form-item>
      </el-form>
      <el-form>
        <el-button class="rightBtn" type="primary" @click="exportData">审核</el-button>
      </el-form>
    </div>
    <div class="library-table">
      <div class="table-header">
        <div class="search-bar">
          <el-radio-group v-model="checkStatus" @change="handleRadioChange">
            <el-radio-button>全部</el-radio-button>
            <el-radio-button label="0">待提交</el-radio-button>
            <el-radio-button label="2">待通过</el-radio-button>
          </el-radio-group>
        </div>
      </div>
      <div class="table-box">
        <el-table
          ref="reportTable"
          :max-height="800"
          :cell-style="{textAlign: 'center'}"
          :header-cell-style="{border:'0px',background:'#f5f7fa',color:'#606266',boxShadow: 'inset 0 1px 0 #ebeef5',textAlign: 'center'}"
          :data="reportTable"
          style="width: 100%"
        >
          <el-table-column
            type="selection"
            label=""
            min-width="5%"
          />
          <el-table-column
            prop="materialCode"
            label="样品编号"
            min-width="10%"
          />
          <el-table-column
            prop="reportCode"
            label="报告单号"
            min-width="10%"
          />
          <el-table-column
            prop="materialName"
            label="样品名称"
            min-width="10%"
          />
          <el-table-column
            prop="status"
            label="审批状态"
            min-width="8%"
          >
            <template slot-scope="scope">
              <span>
                <el-tag type="warning">{{ scope.row.status == 0 ? '待提交' : '已审核' }}</el-tag>
              </span>
            </template></el-table-column>
          <el-table-column
            prop="approver"
            label="审批人"
            min-width="8%"
          />
          <el-table-column
            prop="submitTime"
            label="提交日期"
            min-width="8%"
          />
          <el-table-column
            prop="checkTime"
            label="审核日期"
            min-width="8%"
          />
          <el-table-column
            label="操作"
            min-width="8%"
          >
            <template slot-scope="scope">
              <el-button type="text" size="small" @click="handleClick(scope.row)">查看详细</el-button>
            </template>
          </el-table-column>
        </el-table>
        <!-- 分页器 -->
        <div>
          <el-pagination
            :current-page="page"
            :page-sizes="[10, 20, 30, 40]"
            :page-size="pageSize"
            layout="total, sizes, prev, pager, next, jumper"
            :total="total"
            @size-change="handleSizeChange"
            @current-change="handleCurrentChange"
          />
        </div>
      </div>
    </div>
  </div>
</template>
<script>
import { selectAllReportCheck } from '@/api/experiment/reportAuditing'
export default {
  data() {
    return {
      input: '',
      checkStatus: undefined,
      reportTable: [],
      page: 1,
      total: 0,
      pageSize: 10
    }
  },
  created() {
    this.getData()
  },
  methods: {
    // 状态按钮
    handleRadioChange() {
      this.getData()
    },
    // 每页条数改变时触发 选择一页显示多少行
    handleSizeChange(val) {
      console.log(`每页 ${val} 条`)
      this.pageSize = val
      this.getData()
    },
    // 当前页改变时触发 跳转其他页
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`)
      this.page = val
      this.getData()
    },
    // 重置按钮
    resetData() {
      this.input = undefined
      this.page = 1
      this.pageSize = 10
      this.checkStatus = undefined
      this.getData()
    },
    // 查询列表
    async getData() {
      const params = {
        page: this.page,
        pageSize: this.pageSize,
        name: this.input ? this.input : undefined,
        status: this.checkStatus ? this.checkStatus : undefined
      }
      const { data } = await selectAllReportCheck(params)
      this.reportTable = data.row
      this.total = data.total
    }
  }
}
</script>
<style lang="scss" scoped>
.top-bar{
    margin: -25px -15px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 5px 24px 0px 24px;
    .input-form {
    width: 800px;
    }
}
.library-table{
      background-color: #fff;
      flex: 1;
      margin: 0px -15px;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      .table-header{
        padding: 20px;
        display: flex;
        justify-content: space-between;
        .el-form-item{
          margin-bottom: 30px !important;
        }
      }
      .table-box{
          padding: 0px 20px;
          margin-top: 0px;
          flex: 1;
          background: #fff;
          display: flex;
          flex-direction: column;
          >div:nth-child(2){
            display: flex;
            justify-content: end;
            margin: 10px 0;
          }
      }
    }
</style>