spring
2025-04-02 b34e4348df3f9f697fcb4da64ee7ff11deca3170
src/components/view/b1-report-preparation.vue
@@ -114,6 +114,13 @@
              @keyup.enter.native="refreshTable()"></el-input>
          </div>
        </div>
        <div class="search_thing">
          <div class="search_label">样品编号:</div>
          <div class="search_input">
            <el-input size="small" placeholder="请输入" clearable v-model="componentData.entity.sampleCode"
              @keyup.enter.native="refreshTable()"></el-input>
          </div>
        </div>
        <div class="search_thing" style="padding-left: 30px;">
          <el-button size="small" @click="refresh()">重 置</el-button>
          <el-button size="small" type="primary" @click="refreshTable()">查 询</el-button>
@@ -257,6 +264,7 @@
        entity: {
          entrustCode: null,
          code: null,
          sampleCode: null,
          orderBy: {
            field: 'id',
            order: 'desc'
@@ -291,7 +299,7 @@
            },
            method: 'handleUpload',
            disabFun: (row, index) => {
              return row.isExamine != null
              return row.isExamine != null || row.orderType == 'C'
            }
          }, {
            id: 'handleRestore',
@@ -299,7 +307,7 @@
            type: 'text',
            method: 'handleRestore',
            disabFun: (row, index) => {
              return row.isExamine != null
              return row.isExamine != null || row.orderType == 'C'
            }
          }, {
            id: 'handleSubmit',