|
|
@@ -383,6 +383,13 @@
|
|
|
>{{ scope.row.experimentCode }}
|
|
|
</el-link>
|
|
|
</template>
|
|
|
+ <template v-slot:useTools="{ row }">
|
|
|
+ <toolButtom
|
|
|
+ v-model="row.useTools"
|
|
|
+ :type="'detail'"
|
|
|
+ :sList="row.toolList"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
<template v-slot:defaultValue="{ row }">
|
|
|
<div style="display: flex; justify-content: center">
|
|
|
<span v-if="row.textType != 8">{{ row.symbol }}</span>
|
|
|
@@ -505,6 +512,7 @@
|
|
|
import { getById as getByIdProjectTask } from '@/api/inspectionProjectTask';
|
|
|
import { getById as getByIdProjectRequest } from '@/api/inspectionProjectRequest';
|
|
|
import RuleCycle from '@/components/rule-cycle.vue';
|
|
|
+ import toolButtom from './components/toolButtom.vue';
|
|
|
|
|
|
export default {
|
|
|
mixins: [detailMixins],
|
|
|
@@ -513,8 +521,10 @@
|
|
|
experimentReport,
|
|
|
inspectionProjectReport,
|
|
|
inspectionProjectReportView,
|
|
|
- sampleReport,sampleListView,
|
|
|
- RuleCycle
|
|
|
+ sampleReport,
|
|
|
+ sampleListView,
|
|
|
+ RuleCycle,
|
|
|
+ toolButtom
|
|
|
},
|
|
|
data() {
|
|
|
return {
|