1.对接会员列表 2.对接排队叫号

This commit is contained in:
gyq
2025-03-06 19:28:01 +08:00
parent db3fc1f6dc
commit 5cf2355d28
29 changed files with 1920 additions and 1136 deletions

View File

@@ -11,10 +11,10 @@
<div class="number" @click="SelectVipUserRef.show()">
<div class="left">
<el-icon class="icon">
<UserFilled />
<CirclePlus />
</el-icon>
<template v-if="!goodsStore.vipUserInfo.id">
<el-text class="t">选择会员</el-text>
<span class="t">选择会员</span>
</template>
<template v-else>
<div class="user_info" @click="goodsStore.vipUserInfo = ''">
@@ -69,7 +69,7 @@
<div class="table_info" v-if="goodsStore.tableInfo.name">
<div class="left">
<span>台桌{{ goodsStore.tableInfo.name }}</span>
<span>{{ goodsStore.tableInfo.num }}</span>
<span>{{ goodsStore.tableInfo.num || 1 }}</span>
</div>
<div class="close" @click="goodsStore.selectTable()">
<el-icon class="icon">
@@ -390,7 +390,7 @@ function clearVipUserHandle() {
.menu {
background-color: var(--el-color-warning);
color: #fff;
width: 60px;
width: 80px;
display: flex;
align-items: center;
justify-content: center;
@@ -415,11 +415,11 @@ function clearVipUserHandle() {
align-items: center;
justify-content: space-between;
background-color: var(--el-color-info-light-7);
padding: 0 10px;
.left {
display: flex;
align-items: center;
margin-left: 14px;
}
.icon_wrap {
@@ -430,8 +430,8 @@ function clearVipUserHandle() {
justify-content: center;
.u_icon {
font-size: 20px;
color: #999;
font-size: 16px;
color: var(--el-color-primary);
.i {
display: flex;
@@ -446,7 +446,10 @@ function clearVipUserHandle() {
.t {
font-size: var(--el-font-size-base);
margin-left: 4px;
color: var(--el-color-primary);
margin-left: 6px;
position: relative;
top: -1px;
}
.user_info {
@@ -465,8 +468,9 @@ function clearVipUserHandle() {
.p {
width: 83px;
flex: 1;
color: #999;
color: var(--el-color-primary);
font-size: 14px;
margin-left: 6px;
}
}
}