修改叫号记录菜单

This commit is contained in:
duan
2024-10-25 15:23:06 +08:00
parent 7acc762d59
commit 869da7f0f0
2 changed files with 31 additions and 4 deletions

View File

@@ -24,7 +24,7 @@
</div>
</div>
<div style="display: flex;align-items: center;flex-wrap: wrap; ">
<div class="lineUpBoxList" v-for="item in list.records" style="margin-right: 20px;" :key="item.id">
<div class="lineUpBoxList" v-for="item in list" style="margin-right: 20px;" :key="item.id">
<ul>
<li>
<div>用户</div>
@@ -122,7 +122,7 @@ export default {
total: 0
},
selecttopType: "",
list: "",
list: [],
dialogVisible: false,
dialogVisibles: false,
profilepictureInfo: "",
@@ -252,13 +252,12 @@ export default {
async getlist() {
const res = await callTablequeue({
shopId: localStorage.getItem('shopId'),
page: 1,
size: 9999,
callTableId: this.selecttopType,
state: 0
})
this.list = res
this.list = res.records
}
},