Merge branch 'dev' of https://e.coding.net/g-cphe0354/yinshoukeguanliduan/management into ymf
This commit is contained in:
@@ -57,7 +57,8 @@
|
|||||||
<!-- <el-table-column label="区域id" prop="areaId"></el-table-column> -->
|
<!-- <el-table-column label="区域id" prop="areaId"></el-table-column> -->
|
||||||
<el-table-column label="区域名称" prop="areaName"></el-table-column>
|
<el-table-column label="区域名称" prop="areaName"></el-table-column>
|
||||||
<!-- <el-table-column label="门店id" prop="shopId"></el-table-column> -->
|
<!-- <el-table-column label="门店id" prop="shopId"></el-table-column> -->
|
||||||
<el-table-column label="台桌号" prop="tableId"></el-table-column>
|
<!-- <el-table-column label="台桌Id" prop="tableId"></el-table-column> -->
|
||||||
|
<el-table-column label="台桌号" prop="tableName"></el-table-column>
|
||||||
<el-table-column label="订单数量" prop="orderCount">
|
<el-table-column label="订单数量" prop="orderCount">
|
||||||
<template v-slot="scope">
|
<template v-slot="scope">
|
||||||
<div class="cursor-pointer" @click="toTableOrderList(scope.row)">
|
<div class="cursor-pointer" @click="toTableOrderList(scope.row)">
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ export default {
|
|||||||
num: '',
|
num: '',
|
||||||
categoryId: ''
|
categoryId: ''
|
||||||
},
|
},
|
||||||
|
resetQuery: '',
|
||||||
downloadLoading: false,
|
downloadLoading: false,
|
||||||
uploadLoading: false,
|
uploadLoading: false,
|
||||||
warnLine: null, // 警戒线
|
warnLine: null, // 警戒线
|
||||||
@@ -167,6 +168,7 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
this.resetQuery = { ...this.query }
|
||||||
this.tbShopCategoryGet()
|
this.tbShopCategoryGet()
|
||||||
this.getTableData()
|
this.getTableData()
|
||||||
},
|
},
|
||||||
@@ -352,9 +354,7 @@ export default {
|
|||||||
},
|
},
|
||||||
// 重置查询
|
// 重置查询
|
||||||
resetHandle() {
|
resetHandle() {
|
||||||
this.query.name = ''
|
this.query = { ...this.resetQuery }
|
||||||
this.query.num = ''
|
|
||||||
this.query.isStock = ''
|
|
||||||
this.tableData.page = 0;
|
this.tableData.page = 0;
|
||||||
this.tableData.list = []
|
this.tableData.list = []
|
||||||
this.getTableData()
|
this.getTableData()
|
||||||
|
|||||||
@@ -106,7 +106,8 @@ export default {
|
|||||||
page: this.tableData.page,
|
page: this.tableData.page,
|
||||||
size: this.tableData.size,
|
size: this.tableData.size,
|
||||||
sort: 'id',
|
sort: 'id',
|
||||||
shopId: localStorage.getItem('shopId')
|
shopId: localStorage.getItem('shopId'),
|
||||||
|
name: this.query.blurry
|
||||||
})
|
})
|
||||||
this.tableData.loading = false
|
this.tableData.loading = false
|
||||||
this.tableData.list = res.content
|
this.tableData.list = res.content
|
||||||
|
|||||||
Reference in New Issue
Block a user