|
|
@@ -0,0 +1,284 @@
|
|
|
+<template>
|
|
|
+ <div class="list-view">
|
|
|
+ <div class="filters-container">
|
|
|
+ <el-input placeholder="输入关键字" v-model="search" clearable
|
|
|
+ class="filter-item"></el-input>
|
|
|
+ <el-button @click="getData" type="primary" icon="el-icon-search"
|
|
|
+ class="filter-item">搜索
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="addRow" type="primary" icon="el-icon-plus"
|
|
|
+ class="filter-item">添加
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="download" type="primary" icon="el-icon-download"
|
|
|
+ :loading="downloading" class="filter-item">导出EXCEL
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <el-table :data="tableData" row-key="id" ref="table"
|
|
|
+ header-row-class-name="table-header-row"
|
|
|
+ header-cell-class-name="table-header-cell"
|
|
|
+ row-class-name="table-row" cell-class-name="table-cell">
|
|
|
+ <el-table-column v-if="multipleMode" align="center" type="selection"
|
|
|
+ width="50">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="id" label="ID" width="100">
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort"
|
|
|
+ @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="hotelName" label="门店名称"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="city" label="城市"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="propertyCompanyId" label="物业公司"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="address" label="地址"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="openingTime" label="开业时间"
|
|
|
+ :formatter="datetimeFormatter"
|
|
|
+ >
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="cooperationType" label="经营类型"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="hotelStatus" label="状态"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="principal" label="负责人"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="telephone" label="联系电话"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="fax" label="传真"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="postalCode" label="邮编"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="shortName" label="简称"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="shortCode" label="简码"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="remark" label="备注"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="enabled" label="enabled"
|
|
|
+>
|
|
|
+ <template slot="header" slot-scope="{column}">
|
|
|
+ <sortable-header :column="column" :current-sort="sort" @changeSort="changeSort">
|
|
|
+ </sortable-header>
|
|
|
+ </template>
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-tag :type="row.enabled?'':'info'">{{row.enabled}}</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ label="操作"
|
|
|
+ align="center"
|
|
|
+ fixed="right"
|
|
|
+ min-width="150">
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-button @click="editRow(row)" type="primary" size="mini" plain>编辑</el-button>
|
|
|
+ <el-button @click="deleteRow(row)" type="danger" size="mini" plain>删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <div class="pagination-wrapper">
|
|
|
+ <div class="multiple-mode-wrapper">
|
|
|
+ <el-button v-if="!multipleMode"
|
|
|
+ @click="toggleMultipleMode(true)">批量编辑</el-button>
|
|
|
+ <el-button-group v-else>
|
|
|
+ <el-button @click="operation1">批量操作1</el-button>
|
|
|
+ <el-button @click="operation2">批量操作2</el-button>
|
|
|
+ <el-button @click="toggleMultipleMode(false)">取消</el-button>
|
|
|
+ </el-button-group>
|
|
|
+ </div>
|
|
|
+ <el-pagination background @size-change="onSizeChange"
|
|
|
+ @current-change="onCurrentChange" :current-page="page"
|
|
|
+ :page-sizes="[10, 20, 30, 40, 50]" :page-size="pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="totalElements">
|
|
|
+ </el-pagination>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+ import { mapState } from "vuex";
|
|
|
+ import pageableTable from "@/mixins/pageableTable";
|
|
|
+
|
|
|
+ export default {
|
|
|
+ name: 'HotelInfoList',
|
|
|
+ mixins: [pageableTable],
|
|
|
+ created() {
|
|
|
+ this.getData();
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ multipleMode: false,
|
|
|
+ search: "",
|
|
|
+ url: "/hotelInfo/all",
|
|
|
+ downloading: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ selection() {
|
|
|
+ return this.$refs.table.selection.map(i => i.id);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ beforeGetData() {
|
|
|
+ if (this.search) {
|
|
|
+ return { search: this.search };
|
|
|
+ }
|
|
|
+ },
|
|
|
+ toggleMultipleMode(multipleMode) {
|
|
|
+ this.multipleMode = multipleMode;
|
|
|
+ if (!multipleMode) {
|
|
|
+ this.$refs.table.clearSelection();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ addRow() {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/hotelInfoEdit",
|
|
|
+ query: {
|
|
|
+ ...this.$route.query
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ editRow(row) {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/hotelInfoEdit",
|
|
|
+ query: {
|
|
|
+ id: row.id
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ download() {
|
|
|
+ this.downloading = true;
|
|
|
+ this.$axios
|
|
|
+ .get("/hotelInfo/excel", { responseType: "blob" })
|
|
|
+ .then(res => {
|
|
|
+ console.log(res);
|
|
|
+ this.downloading = false;
|
|
|
+ const downloadUrl = window.URL.createObjectURL(new Blob([res.data]));
|
|
|
+ const link = document.createElement("a");
|
|
|
+ link.href = downloadUrl;
|
|
|
+ link.setAttribute(
|
|
|
+ "download",
|
|
|
+ res.headers["content-disposition"].split("filename=")[1]
|
|
|
+ );
|
|
|
+ document.body.appendChild(link);
|
|
|
+ link.click();
|
|
|
+ link.remove();
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ console.log(e);
|
|
|
+ this.downloading = false;
|
|
|
+ this.$message.error(e.error);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ operation1() {
|
|
|
+ this.$notify({
|
|
|
+ title: '提示',
|
|
|
+ message: this.selection
|
|
|
+ });
|
|
|
+ },
|
|
|
+ operation2() {
|
|
|
+ this.$message('操作2');
|
|
|
+ },
|
|
|
+ deleteRow(row) {
|
|
|
+ this.$alert('删除将无法恢复,确认要删除么?', '警告', {type: 'error'}).then(() => {
|
|
|
+ return this.$http.post({
|
|
|
+ url: '/hotelInfo/del',
|
|
|
+ data: {id: row.id}
|
|
|
+ })
|
|
|
+ }).then(() => {
|
|
|
+ this.$message.success('删除成功');
|
|
|
+ this.getData();
|
|
|
+ }).catch(action => {
|
|
|
+ if (action === 'cancel') {
|
|
|
+ this.$message.info('删除取消');
|
|
|
+ } else {
|
|
|
+ this.$message.error('删除失败');
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+<style lang="less" scoped>
|
|
|
+.pageable-list {
|
|
|
+ height: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ .el-table {
|
|
|
+ flex-grow: 1;
|
|
|
+ flex-basis: 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|