|
@@ -1,13 +1,124 @@
|
|
<template>
|
|
<template>
|
|
- <div>订单</div>
|
|
|
|
|
|
+ <div class="padding-20">
|
|
|
|
+ <div class="search-box">
|
|
|
|
+ <el-form ref="form"
|
|
|
|
+ :inline="true"
|
|
|
|
+ :model="searchForm"
|
|
|
|
+ clearable
|
|
|
|
+ label-width="100px"
|
|
|
|
+ class="mt-10">
|
|
|
|
+ <el-form-item label="座位名称:">
|
|
|
|
+ <el-input v-model="searchForm.department_name" placeholder="请输入座位名称" clearable></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item class="ml-10">
|
|
|
|
+ <el-button icon="el-icon-search" type="primary" @click="searchSubmit">查询</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item class="ml-10">
|
|
|
|
+ <el-button icon="el-icon-plus" type="primary" @click="add">添加分类</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ </div>
|
|
|
|
+ <el-table :data="tableData"
|
|
|
|
+ stripe
|
|
|
|
+ v-loading="tableLoading"
|
|
|
|
+ fit
|
|
|
|
+ class="marginT-10 order-table"
|
|
|
|
+ border
|
|
|
|
+ :max-height="vheight">
|
|
|
|
+ <el-table-column label="ID" prop="id"></el-table-column>
|
|
|
|
+ <el-table-column label="分类名称" prop="place_name" width="240"></el-table-column>
|
|
|
|
+ <el-table-column label="商品数量" prop="place_desc"></el-table-column>
|
|
|
|
+ <el-table-column label="排序" prop="place_num"></el-table-column>
|
|
|
|
+ <el-table-column label="是否显示" prop="place_user_max"></el-table-column>
|
|
|
|
+ <el-table-column label="操作" width="220">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <el-button type="text"
|
|
|
|
+ @click="edit(scope.row)">转移商品
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button type="text"
|
|
|
|
+ @click="edit(scope.row)">编辑
|
|
|
|
+ </el-button>
|
|
|
|
+ <el-button type="text"
|
|
|
|
+ @click="del(scope.row)">删除
|
|
|
|
+ </el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <el-pagination
|
|
|
|
+ class="marginT-20"
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
|
+ :hide-on-single-page="true"
|
|
|
|
+ :current-page="page"
|
|
|
|
+ :page-size="page_size"
|
|
|
|
+ :page-sizes="[10, 20, 100, 200, 300, 400]"
|
|
|
|
+ background
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
+ :total="totalCount"/>
|
|
|
|
+ <detail v-if="detailsDialog.show"
|
|
|
|
+ v-model="detailsDialog.show"
|
|
|
|
+ :exData="detailsDialog.exData"
|
|
|
|
+ @success="init"></detail>
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import page from '@/mixin/page'
|
|
|
|
+import detail from './details'
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
- name: 'index'
|
|
|
|
|
|
+ mixins: [page],
|
|
|
|
+ components: {
|
|
|
|
+ detail,
|
|
|
|
+ },
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ detailsDialog: {
|
|
|
|
+ show: false,
|
|
|
|
+ exData: {}
|
|
|
|
+ },
|
|
|
|
+ time: [],
|
|
|
|
+ searchForm: {},
|
|
|
|
+ tableData: [],
|
|
|
|
+ tableUrl: '/v1/bar/place/template/list'
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ add () {
|
|
|
|
+ this.detailsDialog.exData = {}
|
|
|
|
+ this.detailsDialog.show = true
|
|
|
|
+ },
|
|
|
|
+ edit (row) {
|
|
|
|
+ this.detailsDialog.exData = row
|
|
|
|
+ this.detailsDialog.show = true
|
|
|
|
+ },
|
|
|
|
+ del (row) {
|
|
|
|
+ this.$confirm('确定要删除吗', '确认', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(async () => {
|
|
|
|
+ const data = await this.$fetch('/v1/bar/place/template/delete', { id: row.id }, 'get')
|
|
|
|
+ if (data.code === 200) {
|
|
|
|
+ this.$message.success('删除成功')
|
|
|
|
+ this.init()
|
|
|
|
+ }
|
|
|
|
+ }).catch(() => {})
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ mounted () {
|
|
|
|
+ this.init()
|
|
|
|
+ },
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+.el-dropdown {
|
|
|
|
+ margin: 0 10px;
|
|
|
|
|
|
|
|
+ .el-dropdown-link {
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ color: #409EFF;
|
|
|
|
+ }
|
|
|
|
+}
|
|
</style>
|
|
</style>
|