fix: 修改桌台统计跳转订单页面展示效果,增加员工修改密码弹窗,修改店铺添加激活码为非必填

This commit is contained in:
2025-03-20 10:06:38 +08:00
parent d48199b991
commit b76e67c207
7 changed files with 114 additions and 10 deletions

View File

@@ -41,10 +41,10 @@ const searchConfig: ISearchConfig = {
},
{
type: "input",
label: "台桌编码",
prop: "tableCode",
label: "台桌名称",
prop: "tableName",
attrs: {
placeholder: "请输入台桌编码",
placeholder: "请输入台桌名称",
clearable: true,
style: {
width: "200px",

View File

@@ -154,9 +154,10 @@ function returnOriginAmount(order: OrderInfoVo) {
const route = useRoute();
onMounted(() => {
const { orderNo, tableName, tableCode } = route.query;
handleQueryClick({ orderNo, tableCode });
handleQueryClick({ orderNo, tableCode, tableName });
searchRef.value?.setQueryValue("orderNo", orderNo);
searchRef.value?.setQueryValue("tableCode", tableCode);
searchRef.value?.setQueryValue("tableName", tableName);
route;
});
// 新增