zouyu
6 天以前 11c0c969f05fd3c546b44898a0020eed9ba65fbe
src/views/business/inspectionReview/index.vue
@@ -2,6 +2,12 @@
  <div class="app-container">
    <div>
      <el-form :model="entity" ref="entity" size="small" :inline="true">
        <el-form-item label="IFS域" prop="contract">
          <el-select @keyup.enter.native="refreshTable" v-model="entity.contract" clearable placeholder="请选择" size="small">
            <el-option label="ZTNS" value="ZTNS"/>
            <el-option label="KJNS" value="KJNS"/>
          </el-select>
        </el-form-item>
        <el-form-item label="批号" prop="updateBatchNo">
          <el-input v-model="entity.updateBatchNo" clearable placeholder="请输入" size="small"
            @keyup.enter.native="refreshTable()">
@@ -87,6 +93,7 @@
      active: 1,
      tabIndex: 0,
      entity: {
        contract: null,
        sonLaboratory: null,
        insState: '3',
        userId: 0,
@@ -96,6 +103,25 @@
      tableData: [],
      column: [
        {
          label: 'IFS域',
          prop: 'contract',
          width: '120px',
          dataType: 'tag',
          formatData: (params) => {
            return params
          },
          formatType: (params) => {
            if (params === 'ZTNS') {
              return ''
            } else if (params === 'KJNS') {
              return 'success'
            }else {
              return null
            }
          }
        },
        {
          label: "批号",
          prop: "updateBatchNo",
          width: "120px",