gaoluyang
2025-04-16 1ea1ad2c56e95e71e1756cfca73e7183f9795ac9
src/views/business/materialOrderComponents/materialOrder/dataLookVisible.vue
@@ -15,7 +15,6 @@
</template>
<script>
import ValueTable from "@/components/Table/value-table.vue";
import UnPassRetestResult from "./unPassRetestResult.vue";
import limsTable from "@/components/Table/lims-table.vue";
import {getRetestResult, selectSampleAndProductByOrderId} from "@/api/business/rawMaterialOrder";
@@ -23,7 +22,7 @@
export default {
  name: "dataLookVisible",
  // import 引入的组件需要注入到对象中才能使用
  components: {limsTable, UnPassRetestResult, ValueTable},
  components: {limsTable, UnPassRetestResult},
  props: {
    dataDialogVisible: {
      type: Boolean,
@@ -91,7 +90,7 @@
                this.getRetestResult(row);
              },
              disabled: (row, index) =>  {
                return row.insResult!==0
                return row.insResult!=0
              }
            },
          ]
@@ -139,7 +138,7 @@
        this.entity.id = this.dataLookInfo.quarterOrderId
      }
      this.tableLoading = true
      const params = {...this.entity}
      const params = {...this.entity, ...this.page}
      selectSampleAndProductByOrderId(params).then(res => {
        this.tableLoading = false
        if (res.code === 200) {