fix: 挂账管理更新,邀请列表更新,店铺配置更新
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user