|
|
@@ -196,6 +196,32 @@
|
|
|
</template>
|
|
|
</el-popconfirm>
|
|
|
</template>
|
|
|
+
|
|
|
+ <template v-slot:templateList="{ row }">
|
|
|
+ <div style="width: 250px; max-height: 60px; overflow: auto">
|
|
|
+ <el-tag
|
|
|
+ v-for="item in row.templateList"
|
|
|
+ :key="item.id"
|
|
|
+ :type="
|
|
|
+ inspectionProjectStatus.find(
|
|
|
+ (ProjectStatus) => ProjectStatus.value == item.status
|
|
|
+ )?.type
|
|
|
+ "
|
|
|
+ effect="dark"
|
|
|
+ style="margin-top: 4px"
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ :title="
|
|
|
+ inspectionProjectStatus.find(
|
|
|
+ (ProjectStatus) => ProjectStatus.value == item.status
|
|
|
+ )?.label
|
|
|
+ "
|
|
|
+ >
|
|
|
+ {{ item.inspectionName }}
|
|
|
+ </span>
|
|
|
+ </el-tag>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
</ele-pro-table>
|
|
|
<!-- -->
|
|
|
<!-- <el-dialog title="修改" :visible.sync="certificateVisible" width="25%" :before-close="handleClose">
|