parent
4d2374a38d
commit
39534bf322
16 changed files with 953 additions and 766 deletions
@ -1,278 +0,0 @@ |
|||||||
<template> |
|
||||||
<!-- 行内 --> |
|
||||||
<el-table class="c-table" |
|
||||||
:data="form" |
|
||||||
max-height="calc(100vh - 230px)" |
|
||||||
:cell-style="{background:'#fff'}" |
|
||||||
:span-method="span" |
|
||||||
border> |
|
||||||
<el-table-column prop="name" |
|
||||||
label="五级分类" |
|
||||||
min-width="100" |
|
||||||
align="center"> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="未结清是否进黑名单" |
|
||||||
min-width="100" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row, $index }"> |
|
||||||
<span v-if="$index == 4">不存在未结清情况</span> |
|
||||||
<el-radio-group v-else |
|
||||||
v-model="row.enterBlacklist"> |
|
||||||
<el-radio v-for="(item, i) in whethers" |
|
||||||
:key="i" |
|
||||||
:label="item.id">{{ item.name }}</el-radio> |
|
||||||
</el-radio-group> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="进黑名单条件" |
|
||||||
width="330" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<div class="flex items-center"> |
|
||||||
<span v-if="row.recordChildren" |
|
||||||
class="whitespace-nowrap">{{ row?.recordChildren[1]?.recordChildren[0]?.name }}:认定{{row.name}}</span> |
|
||||||
<div class="min-w-[95px] "> |
|
||||||
<el-select class="mx-2" |
|
||||||
clearable |
|
||||||
v-model="row.enterRuleOne"> |
|
||||||
<el-option v-for="item in nums" |
|
||||||
:key="item" |
|
||||||
:label="item" |
|
||||||
:value="item" /> |
|
||||||
</el-select> |
|
||||||
</div> |
|
||||||
<span class="whitespace-nowrap">天以上进入黑名单。</span> |
|
||||||
</div> |
|
||||||
<div class="flex items-center mt-2"> |
|
||||||
<span v-if="row.recordChildren" |
|
||||||
class="whitespace-nowrap">{{ row?.recordChildren[1]?.recordChildren[1]?.name }}:认定{{row.name}}</span> |
|
||||||
<div class="min-w-[95px] "> |
|
||||||
<el-select class="mx-2" |
|
||||||
clearable |
|
||||||
v-model="row.enterRuleTwo"> |
|
||||||
<el-option v-for="item in nums" |
|
||||||
:key="item" |
|
||||||
:label="item" |
|
||||||
:value="item" /> |
|
||||||
</el-select> |
|
||||||
</div> |
|
||||||
<span class="whitespace-nowrap">天以上进入黑名单。</span> |
|
||||||
</div> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="结清是否能出黑名单" |
|
||||||
min-width="120" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<el-radio-group v-model="row.outBlacklist"> |
|
||||||
<el-radio v-for="(item, i) in whethers" |
|
||||||
:key="i" |
|
||||||
:label="item.id">{{ item.name }}</el-radio> |
|
||||||
</el-radio-group> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="出黑名单条件" |
|
||||||
width="380" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<div class="flex items-center"> |
|
||||||
<span v-if="row.recordChildren" |
|
||||||
class="whitespace-nowrap">{{ row?.recordChildren[1]?.recordChildren[0]?.name }}:结清后,</span> |
|
||||||
<div class="min-w-[95px] "> |
|
||||||
<el-select class="mx-2" |
|
||||||
clearable |
|
||||||
v-model="row.num"> |
|
||||||
<el-option v-for="item in nums" |
|
||||||
:key="item" |
|
||||||
:label="item" |
|
||||||
:value="item" /> |
|
||||||
</el-select> |
|
||||||
</div> |
|
||||||
<div class="min-w-[95px] "> |
|
||||||
<el-select class="mr-2" |
|
||||||
clearable |
|
||||||
v-model="row.symbol"> |
|
||||||
<el-option v-for="item in units" |
|
||||||
:key="item" |
|
||||||
:label="item" |
|
||||||
:value="item" /> |
|
||||||
</el-select> |
|
||||||
</div> |
|
||||||
<span class="whitespace-nowrap">后出黑名单。</span> |
|
||||||
</div> |
|
||||||
<div class="flex items-center mt-2"> |
|
||||||
<span v-if="row.recordChildren" |
|
||||||
class="whitespace-nowrap">{{ row?.recordChildren[1]?.recordChildren[1]?.name }}:结清后,</span> |
|
||||||
<div class="min-w-[95px] "> |
|
||||||
<el-select class="mx-2" |
|
||||||
clearable |
|
||||||
v-model="row.num1"> |
|
||||||
<el-option v-for="item in nums" |
|
||||||
:key="item" |
|
||||||
:label="item" |
|
||||||
:value="item" /> |
|
||||||
</el-select> |
|
||||||
</div> |
|
||||||
<div class="min-w-[95px] "> |
|
||||||
<el-select class="mr-2" |
|
||||||
clearable |
|
||||||
v-model="row.symbol1"> |
|
||||||
<el-option v-for="item in units" |
|
||||||
:key="item" |
|
||||||
:label="item" |
|
||||||
:value="item" /> |
|
||||||
</el-select> |
|
||||||
</div> |
|
||||||
<span class="whitespace-nowrap">后出黑名单。</span> |
|
||||||
</div> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
</el-table> |
|
||||||
|
|
||||||
<div class="flex justify-end"> |
|
||||||
<div class="submit" |
|
||||||
@click="submit">确认完成配置</div> |
|
||||||
</div> |
|
||||||
</template> |
|
||||||
|
|
||||||
<script setup lang="ts"> |
|
||||||
import { ref, watch } from 'vue'; |
|
||||||
import { ElMessage } from 'element-plus'; |
|
||||||
import { accessStrategyInlineBlacklistFind, accessStrategyInlineBlacklistSave } from '@/api/model'; |
|
||||||
import { getProcessInformationBasedOnRoles, addOperation } from '@/api/judgment'; |
|
||||||
import type { TableColumnCtx } from 'element-plus'; |
|
||||||
import { useRoute } from 'vue-router'; |
|
||||||
import { handleId, getNum, getChinese, getIds } from '@/utils/common'; |
|
||||||
import Cookies from 'js-cookie'; |
|
||||||
|
|
||||||
const route = useRoute(); |
|
||||||
const form = ref<Record<string, any>[]>([]); |
|
||||||
const info = ref<Record<string, any>[]>([]); |
|
||||||
const nums: Array<number> = [1, 3, 5, 10, 20, 30, 40]; |
|
||||||
const units: Array<string> = ['年', '个月', '天']; |
|
||||||
const whethers: Record<string, any>[] = [ |
|
||||||
{ |
|
||||||
id: 345, |
|
||||||
name: '是', |
|
||||||
}, |
|
||||||
{ |
|
||||||
id: 346, |
|
||||||
name: '否', |
|
||||||
}, |
|
||||||
]; |
|
||||||
// 配置项 |
|
||||||
const getConfig = async () => { |
|
||||||
const { process } = await getProcessInformationBasedOnRoles(153); |
|
||||||
const result = []; |
|
||||||
process.map((e) => { |
|
||||||
const cur = info.value.find((n) => n.stRecordId === e.id); |
|
||||||
let temp = { |
|
||||||
...getIds(), |
|
||||||
name: e.name, |
|
||||||
recordChildren: e.recordChildren, |
|
||||||
enterBlacklist: cur?.enterBlacklist, |
|
||||||
outBlacklist: cur?.outBlacklist, |
|
||||||
enterRuleOne: cur?.enterRuleOne || '', |
|
||||||
enterRuleTwo: cur?.enterRuleTwo || '', |
|
||||||
num: getNum(cur?.outRuleOne) || '', |
|
||||||
num1: getNum(cur?.outRuleTwo) || '', |
|
||||||
symbol: getChinese(cur?.outRuleOne) || '', |
|
||||||
symbol1: getChinese(cur?.outRuleTwo) || '', |
|
||||||
stRecordId: e.id, |
|
||||||
}; |
|
||||||
result.push(temp); |
|
||||||
}); |
|
||||||
result.push({ |
|
||||||
name: '正常', |
|
||||||
remark: '不存在未结清情况', |
|
||||||
}); |
|
||||||
form.value = result; |
|
||||||
}; |
|
||||||
// 详情 |
|
||||||
const getDetail = async () => { |
|
||||||
try { |
|
||||||
const { data } = await accessStrategyInlineBlacklistFind(); |
|
||||||
info.value = data; |
|
||||||
getConfig(); |
|
||||||
} finally { |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
watch( |
|
||||||
() => route.query, |
|
||||||
() => { |
|
||||||
route.query.id === '153' && getDetail(); |
|
||||||
}, |
|
||||||
{ |
|
||||||
immediate: true, |
|
||||||
}, |
|
||||||
); |
|
||||||
|
|
||||||
interface SpanMethodProps { |
|
||||||
row: Record<string, any>; |
|
||||||
column: TableColumnCtx<Record<string, any>>; |
|
||||||
rowIndex: number; |
|
||||||
columnIndex: number; |
|
||||||
} |
|
||||||
// 表格合并 |
|
||||||
const span = ({ row, column, rowIndex, columnIndex }: SpanMethodProps) => { |
|
||||||
if (rowIndex === 4) { |
|
||||||
if (columnIndex === 1) { |
|
||||||
return { |
|
||||||
rowspan: 1, |
|
||||||
colspan: 4, |
|
||||||
}; |
|
||||||
} else if (columnIndex > 1) { |
|
||||||
return { |
|
||||||
rowspan: 0, |
|
||||||
colspan: 0, |
|
||||||
}; |
|
||||||
} |
|
||||||
} |
|
||||||
}; |
|
||||||
// 提交 |
|
||||||
const submit = async () => { |
|
||||||
let param = JSON.parse(JSON.stringify(form.value)); |
|
||||||
param.map((e, i) => { |
|
||||||
if (info.value.length) e.id = info.value.find((n) => n.stRecordId === e.stRecordId)?.id; |
|
||||||
e.outRuleOne = e.num + e.symbol; |
|
||||||
e.outRuleTwo = e.num1 + e.symbol1; |
|
||||||
}); |
|
||||||
param.map((e) => { |
|
||||||
delete e.recordChildren; |
|
||||||
}); |
|
||||||
await accessStrategyInlineBlacklistSave({ inlineBlacklistList: param }); |
|
||||||
addRecord(param); |
|
||||||
getDetail(); |
|
||||||
ElMessage.success('提交成功!'); |
|
||||||
}; |
|
||||||
// 新增判分记录 |
|
||||||
const addRecord = async (data: Record<string, any>) => { |
|
||||||
const preIds = `1,${Cookies.get('sand-level')},42,67,147,153`; // 1,关卡id,角色(这个页面是风控经理策略) |
|
||||||
const rule: Array<Record<string, any>> = []; |
|
||||||
|
|
||||||
data.map((e) => { |
|
||||||
e.enterBlacklist && rule.push(handleId(363, 140, e.enterBlacklist, preIds + ',' + e.stRecordId + ',363', 1)); |
|
||||||
e.enterRuleOne && rule.push(handleId(367, 166, e.enterRuleOne, preIds + ',' + e.stRecordId + ',364,367', 5)); |
|
||||||
e.enterRuleTwo && rule.push(handleId(368, 167, e.enterRuleTwo, preIds + ',' + e.stRecordId + ',364,368', 5)); |
|
||||||
e.outBlacklist && rule.push(handleId(365, 140, e.outBlacklist, preIds + ',' + e.stRecordId + ',365', 1)); |
|
||||||
e.outRuleOne && rule.push(handleId(367, 166, e.outRuleOne, preIds + ',' + e.stRecordId + ',366,367', 5)); |
|
||||||
e.outRuleTwo && rule.push(handleId(368, 167, e.outRuleTwo, preIds + ',' + e.stRecordId + ',366,368', 5)); |
|
||||||
}); |
|
||||||
|
|
||||||
await addOperation({ |
|
||||||
...getIds(), |
|
||||||
parentId: preIds, |
|
||||||
lcJudgmentRuleReq: rule, |
|
||||||
}); |
|
||||||
}; |
|
||||||
</script> |
|
||||||
|
|
||||||
<style lang="scss" scoped> |
|
||||||
@import url(../../../styles/form.scss); |
|
||||||
.c-table { |
|
||||||
:deep(.el-input__inner) { |
|
||||||
@apply px-2; |
|
||||||
} |
|
||||||
} |
|
||||||
</style> |
|
@ -0,0 +1,166 @@ |
|||||||
|
<template> |
||||||
|
<div class="block"> |
||||||
|
<div class="flex justify-between items-center mb-5"> |
||||||
|
<search v-model="keyWord" |
||||||
|
@change="initList"></search> |
||||||
|
<div class="filter"> |
||||||
|
<el-popconfirm title="确定要删除吗?" |
||||||
|
:disabled="!multipleSelection.length" |
||||||
|
@confirm.stop="delAll"> |
||||||
|
<template #reference> |
||||||
|
<div :class="['add-btn mr-2', {'cursor-not-allowed': !multipleSelection.length}]"> |
||||||
|
<el-icon :size="24" |
||||||
|
color="#fff"> |
||||||
|
<Delete /> |
||||||
|
</el-icon> |
||||||
|
批量删除 |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
</el-popconfirm> |
||||||
|
|
||||||
|
<div class="add-btn" |
||||||
|
@click="toAdd"> |
||||||
|
<img src="@/assets/images/plus.png" |
||||||
|
alt="" |
||||||
|
class="icon" /> |
||||||
|
新增 |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<el-table ref="table" |
||||||
|
v-loading="loading" |
||||||
|
:data="list" |
||||||
|
@selection-change="handleSelectionChange"> |
||||||
|
<el-table-column type="selection" |
||||||
|
width="55" /> |
||||||
|
<el-table-column label="序号" |
||||||
|
type="index" |
||||||
|
width="60" |
||||||
|
align="center" /> |
||||||
|
<el-table-column prop="strategyName" |
||||||
|
label="反欺诈策略名称" |
||||||
|
min-width="180" /> |
||||||
|
<el-table-column prop="createTime" |
||||||
|
label="新增日期" |
||||||
|
min-width="140" /> |
||||||
|
<el-table-column label="操作" |
||||||
|
width="140"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-button type="text" |
||||||
|
@click="toDetail(row, true)" |
||||||
|
size="small">查看</el-button> |
||||||
|
<el-button type="text" |
||||||
|
@click="toDetail(row)" |
||||||
|
size="small">编辑</el-button> |
||||||
|
<el-popconfirm title="您确定删除吗?" |
||||||
|
@confirm.stop="handleDelete([row.strategyId])"> |
||||||
|
<template #reference> |
||||||
|
<el-button type="text" |
||||||
|
size="small">删除</el-button> |
||||||
|
</template> |
||||||
|
</el-popconfirm> |
||||||
|
</template></el-table-column> |
||||||
|
</el-table> |
||||||
|
<el-pagination v-model:currentPage="currentPage" |
||||||
|
v-model:pageSize="pageSize" |
||||||
|
:total="total" |
||||||
|
:page-sizes="pageSizes" |
||||||
|
:layout="pageLayout" |
||||||
|
@size-change="getList()" |
||||||
|
@current-change="getList()" |
||||||
|
small |
||||||
|
background |
||||||
|
class="px-3 py-2 justify-end"></el-pagination> |
||||||
|
|
||||||
|
<el-drawer v-model="visible" |
||||||
|
:title="(isDetail ? '查看' : curRow.strategyId ? '编辑' : '新增') + '反欺诈策略'" |
||||||
|
size="100%" |
||||||
|
custom-class="model-drawer"> |
||||||
|
<Detail v-model:row="curRow" |
||||||
|
:disabled="isDetail" |
||||||
|
:key="i" |
||||||
|
@close="closeDrawer" /> |
||||||
|
</el-drawer> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup lang="ts"> |
||||||
|
import { onMounted, ref, watch, defineAsyncComponent } from 'vue'; |
||||||
|
import { ElMessage } from 'element-plus'; |
||||||
|
import { Delete } from '@element-plus/icons-vue'; |
||||||
|
import { pageSizes, pageLayout } from '@/utils/common'; |
||||||
|
import { accessStrategyAntiFraudStrategy, accessStrategyAntiFraudStrategyDel } from '@/api/model'; |
||||||
|
import Search from '@/components/Search.vue'; |
||||||
|
const Detail = defineAsyncComponent(() => import('./Detail.vue')); |
||||||
|
|
||||||
|
const keyWord = ref<string>(); |
||||||
|
const currentPage = ref<number>(1); |
||||||
|
const pageSize = ref<number>(10); |
||||||
|
const total = ref<number>(0); |
||||||
|
const table = ref<any>(); |
||||||
|
|
||||||
|
const multipleSelection = ref<Record<string, any>[]>([]); |
||||||
|
const list = ref<Record<string, any>[]>([]); |
||||||
|
const loading = ref<boolean>(false); |
||||||
|
const visible = ref<boolean>(false); |
||||||
|
const curRow = ref<Record<string, any>>({ |
||||||
|
strategyId: '', |
||||||
|
strategyName: '', |
||||||
|
}); |
||||||
|
const isDetail = ref<boolean>(false); |
||||||
|
const i = ref<number>(0); |
||||||
|
// 列表 |
||||||
|
const getList = async () => { |
||||||
|
loading.value = true; |
||||||
|
try { |
||||||
|
const { page } = await accessStrategyAntiFraudStrategy({ pageNum: currentPage.value, pageSize: pageSize.value, keyWord: keyWord.value }); |
||||||
|
list.value = page.records; |
||||||
|
total.value = page.total; |
||||||
|
} finally { |
||||||
|
loading.value = false; |
||||||
|
} |
||||||
|
}; |
||||||
|
// 重置列表 |
||||||
|
const initList = async () => { |
||||||
|
currentPage.value = 1; |
||||||
|
getList(); |
||||||
|
}; |
||||||
|
watch(keyWord, initList); |
||||||
|
onMounted(getList); |
||||||
|
|
||||||
|
// 多选 |
||||||
|
const handleSelectionChange = (val: Record<string, any>[]) => { |
||||||
|
multipleSelection.value = val; |
||||||
|
}; |
||||||
|
// 批量删除 |
||||||
|
const delAll = async () => { |
||||||
|
handleDelete(multipleSelection.value.map((e) => e.strategyId)); |
||||||
|
}; |
||||||
|
// 新增 |
||||||
|
const toAdd = () => { |
||||||
|
i.value++; |
||||||
|
isDetail.value = false; |
||||||
|
curRow.value = { |
||||||
|
strategyId: '', |
||||||
|
strategyName: '', |
||||||
|
}; |
||||||
|
visible.value = true; |
||||||
|
}; |
||||||
|
// 产品详情 |
||||||
|
const toDetail = async (row: Record<string, any>, detail: boolean = false) => { |
||||||
|
i.value++; |
||||||
|
isDetail.value = detail; |
||||||
|
curRow.value = row; |
||||||
|
visible.value = true; |
||||||
|
}; |
||||||
|
// 关闭详情弹框 |
||||||
|
const closeDrawer = (refresh?: number) => { |
||||||
|
visible.value = false; |
||||||
|
refresh && initList(); |
||||||
|
}; |
||||||
|
const handleDelete = async (ids: number[]) => { |
||||||
|
await accessStrategyAntiFraudStrategyDel({ ids }); |
||||||
|
getList(); |
||||||
|
ElMessage.success('删除成功!'); |
||||||
|
}; |
||||||
|
</script> |
@ -1,225 +0,0 @@ |
|||||||
<template> |
|
||||||
<!-- 负面行业策略 --> |
|
||||||
<el-table class="c-table" |
|
||||||
:data="form" |
|
||||||
max-height="calc(100vh - 230px)" |
|
||||||
:cell-style="{background:'#fff'}" |
|
||||||
:span-method="span" |
|
||||||
border> |
|
||||||
<el-table-column label="序号" |
|
||||||
width="80" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row, $index }"> |
|
||||||
<p v-if="isRule($index)" |
|
||||||
class="text-left font-semibold text-base text-[#333]">{{ row.name }}</p> |
|
||||||
<span v-else>{{ row.index }}</span> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column prop="name" |
|
||||||
label="负面行业" |
|
||||||
min-width="150" |
|
||||||
align="center"> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="本人工作单位命中进黑名单" |
|
||||||
min-width="150" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<el-checkbox v-model="row.myselfWorkplace" |
|
||||||
@change="e => checkRow(e, row)"></el-checkbox> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="配偶工作单位命中拒入" |
|
||||||
min-width="150" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<el-checkbox v-model="row.spouseWorkplace" |
|
||||||
@change="e => checkRow(e, row)"></el-checkbox> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="本人名下企业命中进黑名单" |
|
||||||
min-width="150" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<el-checkbox v-model="row.myselfEnterprise" |
|
||||||
@change="e => checkRow(e, row)"></el-checkbox> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="配偶名下企业命中拒入" |
|
||||||
min-width="150" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<el-checkbox v-model="row.spouseEnterprise" |
|
||||||
@change="e => checkRow(e, row)"></el-checkbox> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
<el-table-column label="可以准入" |
|
||||||
min-width="150" |
|
||||||
align="center"> |
|
||||||
<template #default="{ row }"> |
|
||||||
<el-checkbox v-model="row.admittance" |
|
||||||
@change="checkNone(row)"></el-checkbox> |
|
||||||
</template> |
|
||||||
</el-table-column> |
|
||||||
</el-table> |
|
||||||
|
|
||||||
<div class="flex justify-end"> |
|
||||||
<div class="submit" |
|
||||||
@click="submit">确认完成配置</div> |
|
||||||
</div> |
|
||||||
</template> |
|
||||||
|
|
||||||
<script setup lang="ts"> |
|
||||||
import { ref, computed, watch, onMounted } from 'vue'; |
|
||||||
import { ElMessage } from 'element-plus'; |
|
||||||
import { accessStrategyNegativeIndustryStrategyFind, accessStrategyNegativeIndustryStrategySave } from '@/api/model'; |
|
||||||
import { getProcessInformationBasedOnRoles, addOperation } from '@/api/judgment'; |
|
||||||
import type { TableColumnCtx } from 'element-plus'; |
|
||||||
import { useRouter, useRoute } from 'vue-router'; |
|
||||||
import { handleId, getIds } from '@/utils/common'; |
|
||||||
import Cookies from 'js-cookie'; |
|
||||||
|
|
||||||
const router = useRouter(); |
|
||||||
const route = useRoute(); |
|
||||||
const form = ref<Record<string, any>[]>([]); |
|
||||||
const info = ref<Record<string, any>[]>([]); |
|
||||||
// 配置项 |
|
||||||
const getConfig = async () => { |
|
||||||
const { process } = await getProcessInformationBasedOnRoles(156); |
|
||||||
const result = []; |
|
||||||
let index = 0; |
|
||||||
process.map((e) => { |
|
||||||
let temp = { |
|
||||||
...getIds(), |
|
||||||
name: e.name, |
|
||||||
}; |
|
||||||
result.push(temp); |
|
||||||
e?.recordChildren.forEach((n, i) => { |
|
||||||
index++; |
|
||||||
temp = JSON.parse(JSON.stringify(temp)); |
|
||||||
const cur = info.value.find((j) => j.stRecordId === n.id); |
|
||||||
temp.stRecordId = n.id; |
|
||||||
temp.subjectId = n.subjectId; |
|
||||||
temp.parentId = e.id; |
|
||||||
temp.name = n.name; |
|
||||||
temp.index = index; |
|
||||||
temp.myselfEnterprise = !!cur?.myselfEnterprise; |
|
||||||
temp.myselfWorkplace = !!cur?.myselfWorkplace; |
|
||||||
temp.spouseEnterprise = !!cur?.spouseEnterprise; |
|
||||||
temp.spouseWorkplace = !!cur?.spouseWorkplace; |
|
||||||
temp.admittance = !!cur?.admittance; |
|
||||||
result.push(temp); |
|
||||||
}); |
|
||||||
}); |
|
||||||
form.value = result; |
|
||||||
}; |
|
||||||
// 详情 |
|
||||||
const getDetail = async () => { |
|
||||||
try { |
|
||||||
const { data } = await accessStrategyNegativeIndustryStrategyFind(); |
|
||||||
info.value = data; |
|
||||||
getConfig(); |
|
||||||
} finally { |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
watch( |
|
||||||
() => route.query, |
|
||||||
() => { |
|
||||||
route.query.id === '156' && getDetail(); |
|
||||||
}, |
|
||||||
{ |
|
||||||
immediate: true, |
|
||||||
}, |
|
||||||
); |
|
||||||
|
|
||||||
const isRule = (rule: number): boolean => { |
|
||||||
return !rule || rule === 43 || rule === 63 || rule === 89; |
|
||||||
}; |
|
||||||
interface SpanMethodProps { |
|
||||||
row: Record<string, any>; |
|
||||||
column: TableColumnCtx<Record<string, any>>; |
|
||||||
rowIndex: number; |
|
||||||
columnIndex: number; |
|
||||||
} |
|
||||||
// 表格合并 |
|
||||||
const span = ({ row, column, rowIndex, columnIndex }: SpanMethodProps) => { |
|
||||||
if (isRule(rowIndex)) { |
|
||||||
if (!columnIndex) { |
|
||||||
return { |
|
||||||
rowspan: 1, |
|
||||||
colspan: 7, |
|
||||||
}; |
|
||||||
} else { |
|
||||||
return { |
|
||||||
rowspan: 0, |
|
||||||
colspan: 0, |
|
||||||
}; |
|
||||||
} |
|
||||||
} |
|
||||||
}; |
|
||||||
const checkRow = (e: boolean, row: Record<string, any>) => { |
|
||||||
if (e) row.admittance = false; |
|
||||||
}; |
|
||||||
const checkNone = (row: Record<string, any>) => { |
|
||||||
if (row.admittance) { |
|
||||||
row.myselfEnterprise = false; |
|
||||||
row.myselfWorkplace = false; |
|
||||||
row.spouseEnterprise = false; |
|
||||||
row.spouseWorkplace = false; |
|
||||||
} |
|
||||||
}; |
|
||||||
// 提交 |
|
||||||
const submit = async () => { |
|
||||||
let param = []; |
|
||||||
form.value.map((e, i) => { |
|
||||||
if (e.index) { |
|
||||||
param.push({ |
|
||||||
...getIds(), |
|
||||||
stRecordId: e.stRecordId, |
|
||||||
id: info.value.find((j) => j.stRecordId === e.stRecordId)?.id ?? '', |
|
||||||
myselfEnterprise: e.myselfEnterprise ? 1 : 0, |
|
||||||
myselfWorkplace: e.myselfWorkplace ? 1 : 0, |
|
||||||
spouseEnterprise: e.spouseEnterprise ? 1 : 0, |
|
||||||
spouseWorkplace: e.spouseWorkplace ? 1 : 0, |
|
||||||
admittance: e.admittance ? 1 : 0, |
|
||||||
}); |
|
||||||
} |
|
||||||
}); |
|
||||||
await accessStrategyNegativeIndustryStrategySave({ negativeIndustryStrategyList: param }); |
|
||||||
addRecord(param); |
|
||||||
getDetail(); |
|
||||||
ElMessage.success('提交成功!'); |
|
||||||
}; |
|
||||||
// 新增判分记录 |
|
||||||
const addRecord = async (data: Record<string, any>) => { |
|
||||||
const preIds = `1,${Cookies.get('sand-level')},42,67,147,156`; // 1,关卡id,角色(这个页面是风控经理策略) |
|
||||||
const rule: Array<Record<string, any>> = []; |
|
||||||
|
|
||||||
form.value.map((e) => { |
|
||||||
if (e.index) { |
|
||||||
const temp = []; |
|
||||||
e.myselfWorkplace && temp.push(383); |
|
||||||
e.spouseWorkplace && temp.push(384); |
|
||||||
e.myselfEnterprise && temp.push(385); |
|
||||||
e.spouseEnterprise && temp.push(386); |
|
||||||
e.admittance && temp.push(758); |
|
||||||
temp.length && rule.push(handleId(e.stRecordId, e.subjectId, temp.join(), preIds + ',' + e.parentId + ',' + e.stRecordId, 1)); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
await addOperation({ |
|
||||||
...getIds(), |
|
||||||
parentId: preIds, |
|
||||||
lcJudgmentRuleReq: rule, |
|
||||||
}); |
|
||||||
}; |
|
||||||
</script> |
|
||||||
|
|
||||||
<style lang="scss" scoped> |
|
||||||
@import url(../../../styles/form.scss); |
|
||||||
.c-table { |
|
||||||
:deep(.el-input__inner) { |
|
||||||
@apply px-2; |
|
||||||
} |
|
||||||
} |
|
||||||
</style> |
|
@ -0,0 +1,254 @@ |
|||||||
|
<template> |
||||||
|
<el-form label-width="90px" |
||||||
|
label-suffix=":" |
||||||
|
class="form" |
||||||
|
:disabled="disabled"> |
||||||
|
<el-form-item label="策略名称" |
||||||
|
prop="fundName"> |
||||||
|
<el-input class="w-[320px]" |
||||||
|
placeholder="请输入20以内字符" |
||||||
|
maxlength="20" |
||||||
|
clearable |
||||||
|
v-model="strategyName"></el-input> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="策略规则"> |
||||||
|
<el-table class="c-table" |
||||||
|
:data="form" |
||||||
|
max-height="calc(100vh - 230px)" |
||||||
|
:cell-style="{background:'#fff'}" |
||||||
|
:span-method="span" |
||||||
|
border> |
||||||
|
<el-table-column label="序号" |
||||||
|
width="80" |
||||||
|
align="center"> |
||||||
|
<template #default="{ row, $index }"> |
||||||
|
<p v-if="isRule($index)" |
||||||
|
class="text-left font-semibold text-base text-[#333]">{{ row.name }}</p> |
||||||
|
<span v-else>{{ row.index }}</span> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column prop="name" |
||||||
|
label="负面行业" |
||||||
|
min-width="150" |
||||||
|
align="center"> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column label="本人工作单位命中进黑名单" |
||||||
|
min-width="150" |
||||||
|
align="center"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-checkbox v-model="row.myselfWorkplace" |
||||||
|
@change="e => checkRow(e, row)"></el-checkbox> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column label="配偶工作单位命中拒入" |
||||||
|
min-width="150" |
||||||
|
align="center"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-checkbox v-model="row.spouseWorkplace" |
||||||
|
@change="e => checkRow(e, row)"></el-checkbox> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column label="本人名下企业命中进黑名单" |
||||||
|
min-width="150" |
||||||
|
align="center"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-checkbox v-model="row.myselfEnterprise" |
||||||
|
@change="e => checkRow(e, row)"></el-checkbox> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column label="配偶名下企业命中拒入" |
||||||
|
min-width="150" |
||||||
|
align="center"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-checkbox v-model="row.spouseEnterprise" |
||||||
|
@change="e => checkRow(e, row)"></el-checkbox> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
<el-table-column label="可以准入" |
||||||
|
min-width="150" |
||||||
|
align="center"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-checkbox v-model="row.admittance" |
||||||
|
@change="checkNone(row)"></el-checkbox> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
</el-table> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
<div v-if="!disabled" |
||||||
|
class="flex justify-end mt-3"> |
||||||
|
<div class="dia-btn cancel" |
||||||
|
@click="emit('close')">取消</div> |
||||||
|
<div class="dia-btn" |
||||||
|
@click="confirmSubmit">确定</div> |
||||||
|
</div> |
||||||
|
|
||||||
|
<Confirm v-model="syncVisible" |
||||||
|
@submit="submit" /> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup lang="ts"> |
||||||
|
import { ref, defineAsyncComponent, onMounted, toRefs } from 'vue'; |
||||||
|
import { ElMessage } from 'element-plus'; |
||||||
|
import { accessStrategyNegativeIndustryStrategyFind, accessStrategyNegativeIndustryStrategySave } from '@/api/model'; |
||||||
|
import { getProcessInformationBasedOnRoles, addOperation } from '@/api/judgment'; |
||||||
|
import type { TableColumnCtx } from 'element-plus'; |
||||||
|
import { useRouter, useRoute } from 'vue-router'; |
||||||
|
import { handleId, getIds } from '@/utils/common'; |
||||||
|
import Cookies from 'js-cookie'; |
||||||
|
|
||||||
|
const Confirm = defineAsyncComponent(() => import('@/components/StrategyConfirm.vue')); |
||||||
|
|
||||||
|
const props = defineProps({ |
||||||
|
disabled: { type: Boolean, default: false }, |
||||||
|
row: { type: Object }, |
||||||
|
}); |
||||||
|
|
||||||
|
const emit = defineEmits(['clsoe']); |
||||||
|
const form = ref<Record<string, any>[]>([]); |
||||||
|
const { strategyId, strategyName } = toRefs(props.row); |
||||||
|
const info = ref<Record<string, any>[]>([]); |
||||||
|
const syncVisible = ref<boolean>(false); |
||||||
|
// 配置项 |
||||||
|
const getConfig = async () => { |
||||||
|
const { process } = await getProcessInformationBasedOnRoles(156); |
||||||
|
const result = []; |
||||||
|
let index = 0; |
||||||
|
process.map((e) => { |
||||||
|
let temp = { |
||||||
|
...getIds(), |
||||||
|
name: e.name, |
||||||
|
}; |
||||||
|
result.push(temp); |
||||||
|
e?.recordChildren.forEach((n, i) => { |
||||||
|
index++; |
||||||
|
temp = JSON.parse(JSON.stringify(temp)); |
||||||
|
const cur = info.value.find((j) => j.stRecordId === n.id); |
||||||
|
temp.stRecordId = n.id; |
||||||
|
temp.subjectId = n.subjectId; |
||||||
|
temp.parentId = e.id; |
||||||
|
temp.name = n.name; |
||||||
|
temp.index = index; |
||||||
|
temp.myselfEnterprise = !!cur?.myselfEnterprise; |
||||||
|
temp.myselfWorkplace = !!cur?.myselfWorkplace; |
||||||
|
temp.spouseEnterprise = !!cur?.spouseEnterprise; |
||||||
|
temp.spouseWorkplace = !!cur?.spouseWorkplace; |
||||||
|
temp.admittance = !!cur?.admittance; |
||||||
|
result.push(temp); |
||||||
|
}); |
||||||
|
}); |
||||||
|
form.value = result; |
||||||
|
}; |
||||||
|
// 详情 |
||||||
|
const getDetail = async () => { |
||||||
|
try { |
||||||
|
if (strategyId.value) { |
||||||
|
const { data } = await accessStrategyNegativeIndustryStrategyFind({ |
||||||
|
strategyId: strategyId.value, |
||||||
|
}); |
||||||
|
info.value = data; |
||||||
|
} |
||||||
|
getConfig(); |
||||||
|
} finally { |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
onMounted(getDetail); |
||||||
|
|
||||||
|
const isRule = (rule: number): boolean => { |
||||||
|
return !rule || rule === 43 || rule === 63 || rule === 89; |
||||||
|
}; |
||||||
|
interface SpanMethodProps { |
||||||
|
row: Record<string, any>; |
||||||
|
column: TableColumnCtx<Record<string, any>>; |
||||||
|
rowIndex: number; |
||||||
|
columnIndex: number; |
||||||
|
} |
||||||
|
// 表格合并 |
||||||
|
const span = ({ row, column, rowIndex, columnIndex }: SpanMethodProps) => { |
||||||
|
if (isRule(rowIndex)) { |
||||||
|
if (!columnIndex) { |
||||||
|
return { |
||||||
|
rowspan: 1, |
||||||
|
colspan: 7, |
||||||
|
}; |
||||||
|
} else { |
||||||
|
return { |
||||||
|
rowspan: 0, |
||||||
|
colspan: 0, |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
const checkRow = (e: boolean, row: Record<string, any>) => { |
||||||
|
if (e) row.admittance = false; |
||||||
|
}; |
||||||
|
const checkNone = (row: Record<string, any>) => { |
||||||
|
if (row.admittance) { |
||||||
|
row.myselfEnterprise = false; |
||||||
|
row.myselfWorkplace = false; |
||||||
|
row.spouseEnterprise = false; |
||||||
|
row.spouseWorkplace = false; |
||||||
|
} |
||||||
|
}; |
||||||
|
// 新增判分记录 |
||||||
|
const addRecord = async (data: Record<string, any>) => { |
||||||
|
const preIds = `1,${Cookies.get('sand-level')},42,67,147,156`; // 1,关卡id,角色(这个页面是风控经理策略) |
||||||
|
const rule: Array<Record<string, any>> = []; |
||||||
|
|
||||||
|
form.value.map((e) => { |
||||||
|
if (e.index) { |
||||||
|
const temp = []; |
||||||
|
e.myselfWorkplace && temp.push(383); |
||||||
|
e.spouseWorkplace && temp.push(384); |
||||||
|
e.myselfEnterprise && temp.push(385); |
||||||
|
e.spouseEnterprise && temp.push(386); |
||||||
|
e.admittance && temp.push(758); |
||||||
|
temp.length && rule.push(handleId(e.stRecordId, e.subjectId, temp.join(), preIds + ',' + e.parentId + ',' + e.stRecordId, 1)); |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
await addOperation({ |
||||||
|
...getIds(), |
||||||
|
parentId: preIds, |
||||||
|
lcJudgmentRuleReq: rule, |
||||||
|
}); |
||||||
|
ElMessage.success('提交成功!'); |
||||||
|
syncVisible.value = false; |
||||||
|
emit('close', 1); |
||||||
|
}; |
||||||
|
// 提交 |
||||||
|
const submit = async (synchronizeUpdate?: number) => { |
||||||
|
let param = []; |
||||||
|
form.value.map((e, i) => { |
||||||
|
if (e.index) { |
||||||
|
param.push({ |
||||||
|
...getIds(), |
||||||
|
stRecordId: e.stRecordId, |
||||||
|
id: info.value.find((j) => j.stRecordId === e.stRecordId)?.id ?? '', |
||||||
|
myselfEnterprise: e.myselfEnterprise ? 1 : 0, |
||||||
|
myselfWorkplace: e.myselfWorkplace ? 1 : 0, |
||||||
|
spouseEnterprise: e.spouseEnterprise ? 1 : 0, |
||||||
|
spouseWorkplace: e.spouseWorkplace ? 1 : 0, |
||||||
|
admittance: e.admittance ? 1 : 0, |
||||||
|
}); |
||||||
|
} |
||||||
|
}); |
||||||
|
await accessStrategyNegativeIndustryStrategySave({ |
||||||
|
...getIds(), |
||||||
|
strategyId: strategyId.value, |
||||||
|
strategyName: strategyName.value, |
||||||
|
synchronizeUpdate, |
||||||
|
negativeIndustryStrategyList: param, |
||||||
|
}); |
||||||
|
addRecord(param); |
||||||
|
}; |
||||||
|
const confirmSubmit = () => { |
||||||
|
if (!strategyName.value) return ElMessage.error('请输入策略名称!'); |
||||||
|
syncVisible.value = true; |
||||||
|
}; |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped> |
||||||
|
@import url(../../../../styles/form.scss); |
||||||
|
</style> |
@ -0,0 +1,166 @@ |
|||||||
|
<template> |
||||||
|
<div class="block"> |
||||||
|
<div class="flex justify-between items-center mb-5"> |
||||||
|
<search v-model="keyWord" |
||||||
|
@change="initList"></search> |
||||||
|
<div class="filter"> |
||||||
|
<el-popconfirm title="确定要删除吗?" |
||||||
|
:disabled="!multipleSelection.length" |
||||||
|
@confirm.stop="delAll"> |
||||||
|
<template #reference> |
||||||
|
<div :class="['add-btn mr-2', {'cursor-not-allowed': !multipleSelection.length}]"> |
||||||
|
<el-icon :size="24" |
||||||
|
color="#fff"> |
||||||
|
<Delete /> |
||||||
|
</el-icon> |
||||||
|
批量删除 |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
</el-popconfirm> |
||||||
|
|
||||||
|
<div class="add-btn" |
||||||
|
@click="toAdd"> |
||||||
|
<img src="@/assets/images/plus.png" |
||||||
|
alt="" |
||||||
|
class="icon" /> |
||||||
|
新增 |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<el-table ref="table" |
||||||
|
v-loading="loading" |
||||||
|
:data="list" |
||||||
|
@selection-change="handleSelectionChange"> |
||||||
|
<el-table-column type="selection" |
||||||
|
width="55" /> |
||||||
|
<el-table-column label="序号" |
||||||
|
type="index" |
||||||
|
width="60" |
||||||
|
align="center" /> |
||||||
|
<el-table-column prop="strategyName" |
||||||
|
label="负面行业黑名单策略名称" |
||||||
|
min-width="180" /> |
||||||
|
<el-table-column prop="createTime" |
||||||
|
label="新增日期" |
||||||
|
min-width="140" /> |
||||||
|
<el-table-column label="操作" |
||||||
|
width="140"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-button type="text" |
||||||
|
@click="toDetail(row, true)" |
||||||
|
size="small">查看</el-button> |
||||||
|
<el-button type="text" |
||||||
|
@click="toDetail(row)" |
||||||
|
size="small">编辑</el-button> |
||||||
|
<el-popconfirm title="您确定删除吗?" |
||||||
|
@confirm.stop="handleDelete([row.strategyId])"> |
||||||
|
<template #reference> |
||||||
|
<el-button type="text" |
||||||
|
size="small">删除</el-button> |
||||||
|
</template> |
||||||
|
</el-popconfirm> |
||||||
|
</template></el-table-column> |
||||||
|
</el-table> |
||||||
|
<el-pagination v-model:currentPage="currentPage" |
||||||
|
v-model:pageSize="pageSize" |
||||||
|
:total="total" |
||||||
|
:page-sizes="pageSizes" |
||||||
|
:layout="pageLayout" |
||||||
|
@size-change="getList()" |
||||||
|
@current-change="getList()" |
||||||
|
small |
||||||
|
background |
||||||
|
class="px-3 py-2 justify-end"></el-pagination> |
||||||
|
|
||||||
|
<el-drawer v-model="visible" |
||||||
|
:title="(isDetail ? '查看' : curRow.strategyId ? '编辑' : '新增') + '负面行业黑名单策略'" |
||||||
|
size="100%" |
||||||
|
custom-class="model-drawer"> |
||||||
|
<Detail v-model:row="curRow" |
||||||
|
:disabled="isDetail" |
||||||
|
:key="i" |
||||||
|
@close="closeDrawer" /> |
||||||
|
</el-drawer> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup lang="ts"> |
||||||
|
import { onMounted, ref, watch, defineAsyncComponent } from 'vue'; |
||||||
|
import { ElMessage } from 'element-plus'; |
||||||
|
import { Delete } from '@element-plus/icons-vue'; |
||||||
|
import { pageSizes, pageLayout } from '@/utils/common'; |
||||||
|
import { accessStrategyNegativeIndustryStrategy, accessStrategyNegativeIndustryStrategyDel } from '@/api/model'; |
||||||
|
import Search from '@/components/Search.vue'; |
||||||
|
const Detail = defineAsyncComponent(() => import('./Detail.vue')); |
||||||
|
|
||||||
|
const keyWord = ref<string>(); |
||||||
|
const currentPage = ref<number>(1); |
||||||
|
const pageSize = ref<number>(10); |
||||||
|
const total = ref<number>(0); |
||||||
|
const table = ref<any>(); |
||||||
|
|
||||||
|
const multipleSelection = ref<Record<string, any>[]>([]); |
||||||
|
const list = ref<Record<string, any>[]>([]); |
||||||
|
const loading = ref<boolean>(false); |
||||||
|
const visible = ref<boolean>(false); |
||||||
|
const curRow = ref<Record<string, any>>({ |
||||||
|
strategyId: '', |
||||||
|
strategyName: '', |
||||||
|
}); |
||||||
|
const isDetail = ref<boolean>(false); |
||||||
|
const i = ref<number>(0); |
||||||
|
// 列表 |
||||||
|
const getList = async () => { |
||||||
|
loading.value = true; |
||||||
|
try { |
||||||
|
const { page } = await accessStrategyNegativeIndustryStrategy({ pageNum: currentPage.value, pageSize: pageSize.value, keyWord: keyWord.value }); |
||||||
|
list.value = page.records; |
||||||
|
total.value = page.total; |
||||||
|
} finally { |
||||||
|
loading.value = false; |
||||||
|
} |
||||||
|
}; |
||||||
|
// 重置列表 |
||||||
|
const initList = async () => { |
||||||
|
currentPage.value = 1; |
||||||
|
getList(); |
||||||
|
}; |
||||||
|
watch(keyWord, initList); |
||||||
|
onMounted(getList); |
||||||
|
|
||||||
|
// 多选 |
||||||
|
const handleSelectionChange = (val: Record<string, any>[]) => { |
||||||
|
multipleSelection.value = val; |
||||||
|
}; |
||||||
|
// 批量删除 |
||||||
|
const delAll = async () => { |
||||||
|
handleDelete(multipleSelection.value.map((e) => e.strategyId)); |
||||||
|
}; |
||||||
|
// 新增 |
||||||
|
const toAdd = () => { |
||||||
|
i.value++; |
||||||
|
isDetail.value = false; |
||||||
|
curRow.value = { |
||||||
|
strategyId: '', |
||||||
|
strategyName: '', |
||||||
|
}; |
||||||
|
visible.value = true; |
||||||
|
}; |
||||||
|
// 产品详情 |
||||||
|
const toDetail = async (row: Record<string, any>, detail: boolean = false) => { |
||||||
|
i.value++; |
||||||
|
isDetail.value = detail; |
||||||
|
curRow.value = row; |
||||||
|
visible.value = true; |
||||||
|
}; |
||||||
|
// 关闭详情弹框 |
||||||
|
const closeDrawer = (refresh?: number) => { |
||||||
|
visible.value = false; |
||||||
|
refresh && initList(); |
||||||
|
}; |
||||||
|
const handleDelete = async (ids: number[]) => { |
||||||
|
await accessStrategyNegativeIndustryStrategyDel({ ids }); |
||||||
|
getList(); |
||||||
|
ElMessage.success('删除成功!'); |
||||||
|
}; |
||||||
|
</script> |
Loading…
Reference in new issue