|
@@ -20,11 +20,14 @@
|
|
|
<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" v-permission="'department_list_add'">新增</el-button>
|
|
|
+ <el-button icon="el-icon-plus"
|
|
|
+ type="primary"
|
|
|
+ @click="add">新增
|
|
|
+ </el-button>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
- <el-table :data="[...tableData,...tableData,...tableData,...tableData,...tableData]"
|
|
|
+ <el-table :data="tableData"
|
|
|
stripe
|
|
|
v-loading="tableLoading"
|
|
|
fit
|
|
@@ -34,8 +37,20 @@
|
|
|
<el-table-column fixed label="编号" prop="id"></el-table-column>
|
|
|
<el-table-column label="酒吧名称" prop="bar_name"></el-table-column>
|
|
|
<el-table-column label="门店地址" prop="bar_address"></el-table-column>
|
|
|
- <el-table-column label="门店图片" prop="bar_img_url"></el-table-column>
|
|
|
- <el-table-column label="酒吧状态" prop="bar_status"></el-table-column>
|
|
|
+ <el-table-column label="门店图片">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-image
|
|
|
+ style="width: 100px; height: 100px"
|
|
|
+ :src="scope.row.bar_img_url"
|
|
|
+ :preview-src-list="scope.row.bar_img_url[0]">
|
|
|
+ </el-image>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="酒吧状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <p>{{ ['无效', '有效'][scope.row.bar_status] }}</p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="点歌开始时间" prop="bar_song_start_time"></el-table-column>
|
|
|
<el-table-column label="点歌结束时间" prop="bar_song_end_time"></el-table-column>
|
|
|
<el-table-column label="酒吧座位预定开始时间" prop="bar_place_reserve_start_time"></el-table-column>
|
|
@@ -43,8 +58,8 @@
|
|
|
<el-table-column label="备注"></el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="200">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" @click="edit(scope.row)" v-permission="'department_list_edit'">编辑</el-button>
|
|
|
- <el-button type="text" @click="del(scope.row)" v-permission="'department_list_del'">删除</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>
|
|
@@ -59,7 +74,9 @@
|
|
|
background
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
:total="totalCount"/>
|
|
|
- <detail v-if="detailsDialog.show" v-model="detailsDialog.show" :exData="detailsDialog.exData"
|
|
|
+ <detail v-if="detailsDialog.show"
|
|
|
+ v-model="detailsDialog.show"
|
|
|
+ :exData="detailsDialog.exData"
|
|
|
@success="init"></detail>
|
|
|
</div>
|
|
|
</template>
|