update 流程完善

This commit is contained in:
danshihao
2023-12-12 15:46:10 +08:00
parent 2d3a253f4d
commit 37e3e65814
11 changed files with 47 additions and 74 deletions
@@ -16,6 +16,15 @@
:scroll="{x: '100%'}"
@change="tableOnChange">
<!-- 企标号企标名称 -->
<template v-slot:standard="{text, record}">
<a-tooltip overlay-class-name="tooltip-style">
<template slot="title">{{ text || text === 0 ? text : global.emptyLine }}</template>
<a v-if="text" class="link-a" @click="detailClick(record)">{{ text }}</a>
<div v-else class="table-text">{{ global.emptyLine }}</div>
</a-tooltip>
</template>
<!-- 操作 -->
<template slot="action" slot-scope="{text, record, index}">
<a @click="handleDelete(index)" >{{ $t('delete') }}</a>
@@ -55,15 +64,15 @@ export default {
title: this.$t('workCenter.esInspectionPlan.inspectionBasisStandardNumber'),
align: 'center',
width: 180,
dataIndex: 'standardName',
scopedSlots: { customRender: 'text' }
dataIndex: 'standardNumber',
scopedSlots: { customRender: 'standard' }
},
{ // 企标名称
title: this.$t('workCenter.esInspectionPlan.inspectionBasisStandardName'),
align: 'center',
width: 180,
dataIndex: 'standardNumber',
scopedSlots: { customRender: 'text' }
dataIndex: 'standardName',
scopedSlots: { customRender: 'standard' }
},
{
// 操作
@@ -110,7 +119,7 @@ export default {
this.$openPageNewSheet({
path: '/enterpriseStandardLibrary/enterpriseStandardDetail',
query: {
id: record.id
standardNumber: record.standardNumber
}
})
},