【修改】分标为在研项目去掉立项文件 加禁用

This commit is contained in:
fengachen
2021-12-28 18:45:40 +08:00
parent d1486a69ab
commit cdc283d2bd
@@ -34,18 +34,19 @@
</template>
<!-- 立项文件-->
<span slot="project-approval" class="action-span-cell" slot-scope="text, record">
<a @click="viewProjectApproval(record)">查看</a>
</span>
<!-- 2021-12-28 客户提出 暂时注释 author:fac-->
<!-- <span slot="project-approval" class="action-span-cell" slot-scope="text, record">-->
<!-- <a @click="viewProjectApproval(record)" :disabled="record.FILE_LIST10.length === 0">查看</a>-->
<!-- </span>-->
<!-- 征求意见-->
<span slot="advice" class="action-span-cell" slot-scope="text, record">
<a @click="viewAdvice(record)">查看</a>
<a @click="viewAdvice(record)" :disabled=" (record.FILE_LIST20.length === 0) ">查看</a>
</span>
<!-- 送审材料-->
<span slot="review-material" class="action-span-cell" slot-scope="text, record">
<a @click="viewReviewMaterial(record)">查看</a>
<a @click="viewReviewMaterial(record)" :disabled="record.FILE_LIST30.length === 0">查看</a>
</span>
</a-table>
</div>
@@ -72,7 +73,16 @@ import { getSubBidCommitteeDetail, getCommitteeUnderStudyProject } from '@api/in
import MeetingList from '@comp/detailPage/MeetingList'
import FileList from '@comp/detailPage/FileList'
import CommitteeUnderStudyFilesModal from '@views/MessagePage/modules/UnderStudyFilesModal'
/*
{
title: '立项文件',
align: 'center',
width: 100,
fixed: 'right',
dataIndex: 'FILE_LIST10',
scopedSlots: { customRender: 'project-approval' }
},
*/
const columns = [
{
title: '序号',
@@ -103,13 +113,6 @@ const columns = [
align: 'center',
dataIndex: 'projectSchedule',
scopedSlots: { customRender: 'text' }
}, {
title: '立项文件',
align: 'center',
width: 100,
fixed: 'right',
dataIndex: 'FILE_LIST10',
scopedSlots: { customRender: 'project-approval' }
}, {
title: '征求意见',
align: 'center',