|
|
|
@ -1,15 +1,16 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<BasicTable class="ds-table-detail" @register="registerTable">
|
|
|
|
|
<!-- <template #tableTitle>
|
|
|
|
|
<template #tableTitle>
|
|
|
|
|
<span class="title">干系人列表</span>
|
|
|
|
|
<a-button type="link" @click="handleCreate">
|
|
|
|
|
<span class="iconfont icon-new_document"></span>
|
|
|
|
|
添加
|
|
|
|
|
</a-button>
|
|
|
|
|
<a-button type="link" @click="handleDel">
|
|
|
|
|
<!-- <a-button type="link" @click="handleDel">
|
|
|
|
|
<span class="iconfont icon-shanchu2"></span>
|
|
|
|
|
删除
|
|
|
|
|
</a-button>
|
|
|
|
|
</a-button> -->
|
|
|
|
|
</template>
|
|
|
|
|
<template #bodyCell="{ column, record }">
|
|
|
|
|
<template v-if="column.key === 'action'">
|
|
|
|
@ -23,7 +24,7 @@
|
|
|
|
|
]"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
</template> -->
|
|
|
|
|
</template>
|
|
|
|
|
</BasicTable>
|
|
|
|
|
<TenantAuditStepModal @register="registerModal" @success="handleSuccess" />
|
|
|
|
|
<a-modal
|
|
|
|
@ -138,8 +139,8 @@
|
|
|
|
|
}
|
|
|
|
|
function handleCreate() {
|
|
|
|
|
openModal(true, {
|
|
|
|
|
isParent: false,
|
|
|
|
|
isUpdate: false,
|
|
|
|
|
clientId: props.clientId,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
function handleDel() {
|
|
|
|
@ -160,3 +161,17 @@
|
|
|
|
|
reload()
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.ds-table-detail {
|
|
|
|
|
margin-top: -16px;
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 1px;
|
|
|
|
|
line-height: 15.84px;
|
|
|
|
|
color: rgba(51, 56, 61, 1);
|
|
|
|
|
text-align: left;
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|