fix: 挂账管理更新,邀请列表更新,店铺配置更新

This commit is contained in:
2025-03-10 18:33:42 +08:00
parent 34068cf8dd
commit 89fe9b7639
31 changed files with 3292 additions and 202 deletions

View File

@@ -116,16 +116,22 @@ async function handleEditClick(row: IObject) {
console.log({ ...row });
editModalRef.value?.setFormData({ ...row, url: [row.url] });
}
1;
const router = useRouter();
// 其他工具栏
function handleToolbarClick(name: string) {
console.log(name);
if (name === "custom1") {
ElMessage.success("点击了自定义1按钮");
}
}
function handleToolbarClick(name: string, row: any) {}
// 其他操作列
async function handleOperatClick(data: IOperatData) {
if (data.name == "detail") {
router.push({
path: "/credit-detail",
query: {
id: data.row.id,
repaymentMethod: data.row.repaymentMethod,
},
});
return;
}
console.log(data);
}
</script>