feat: 台桌列表增加绑定桌码功能(暂时隐藏)

This commit is contained in:
2025-03-31 15:57:19 +08:00
parent 274833d548
commit 3af175c506
3 changed files with 107 additions and 3 deletions

View File

@@ -45,7 +45,15 @@ const API = {
method: "delete",
data: { id },
});
}
},
//绑定桌码
bindTableCode(data: any) {
return request({
url: `${baseURL}/bind`,
method: "post",
data
});
},
}
export default API;
/**