修改打印机页面,增加叫号管理页面、霸王餐、店铺优惠券
This commit is contained in:
34
src/views/application/list/lineUplist/index.vue
Normal file
34
src/views/application/list/lineUplist/index.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-tabs v-model="activeName" type="card">
|
||||
<el-tab-pane label="排队列表" name="1"></el-tab-pane>
|
||||
<el-tab-pane label="基本设置" name="2"></el-tab-pane>
|
||||
</el-tabs>
|
||||
<index v-if="activeName == 1" />
|
||||
<basic v-if="activeName == 2" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import index from "./components/index.vue";
|
||||
import basic from "./components/basic.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
index,
|
||||
basic,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
activeName: "1",
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.app-container {
|
||||
background-color: #fff;
|
||||
min-height: 100%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user