|
|
@@ -1,69 +1,75 @@
|
|
|
<template>
|
|
|
- <div class="list-view">
|
|
|
- <page-title>
|
|
|
- <el-button
|
|
|
- @click="addRow"
|
|
|
- type="primary"
|
|
|
- icon="el-icon-plus"
|
|
|
- :disabled="fetchingData || downloading"
|
|
|
- class="filter-item"
|
|
|
- >
|
|
|
- 新增
|
|
|
- </el-button>
|
|
|
- <el-button
|
|
|
- @click="download"
|
|
|
- icon="el-icon-upload2"
|
|
|
- :loading="downloading"
|
|
|
- :disabled="fetchingData"
|
|
|
- class="filter-item"
|
|
|
- >
|
|
|
- 导出
|
|
|
- </el-button>
|
|
|
- </page-title>
|
|
|
- <div class="filters-container">
|
|
|
- <el-input
|
|
|
- placeholder="搜索..."
|
|
|
- v-model="search"
|
|
|
- clearable
|
|
|
- class="filter-item search"
|
|
|
- @keyup.enter.native="getData"
|
|
|
- >
|
|
|
- <el-button @click="getData" slot="append" icon="el-icon-search"> </el-button>
|
|
|
- </el-input>
|
|
|
- </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"
|
|
|
- :height="tableHeight"
|
|
|
- v-loading="fetchingData"
|
|
|
- >
|
|
|
+ <div class="list-view">
|
|
|
+ <page-title>
|
|
|
+ <el-button
|
|
|
+ @click="addRow"
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ :disabled="fetchingData || downloading"
|
|
|
+ class="filter-item"
|
|
|
+ >
|
|
|
+ 新增
|
|
|
+ </el-button>
|
|
|
+ <el-button
|
|
|
+ @click="download"
|
|
|
+ icon="el-icon-upload2"
|
|
|
+ :loading="downloading"
|
|
|
+ :disabled="fetchingData"
|
|
|
+ class="filter-item"
|
|
|
+ >
|
|
|
+ 导出
|
|
|
+ </el-button>
|
|
|
+ </page-title>
|
|
|
+ <div class="filters-container">
|
|
|
+ <el-input
|
|
|
+ placeholder="搜索..."
|
|
|
+ v-model="search"
|
|
|
+ clearable
|
|
|
+ class="filter-item search"
|
|
|
+ @keyup.enter.native="getData"
|
|
|
+ >
|
|
|
+ <el-button @click="getData" slot="append" icon="el-icon-search"> </el-button>
|
|
|
+ </el-input>
|
|
|
+ </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"
|
|
|
+ :height="tableHeight"
|
|
|
+ v-loading="fetchingData"
|
|
|
+ >
|
|
|
<el-table-column v-if="multipleMode" align="center" type="selection" width="50"> </el-table-column>
|
|
|
- <el-table-column prop="id" align="center" label="ID" width="100"> </el-table-column>
|
|
|
- <el-table-column prop="name" align="center" label="配置名称" width="100"> </el-table-column>
|
|
|
- <el-table-column prop="zombieIntegral" align="center" label="僵尸积分" width="100"> </el-table-column>
|
|
|
- <el-table-column prop="zombieAttackDamage" align="center" label="僵尸攻击伤害" width="150"> </el-table-column>
|
|
|
- <el-table-column prop="zombieBlood" align="center" label="僵尸血量" width="100"> </el-table-column>
|
|
|
- <el-table-column prop="humanAttackDamage" align="center" label="人类攻击伤害/每发子弹" width="200"> </el-table-column>
|
|
|
- <el-table-column prop="bulletNum" align="center" label="子弹数" width="100"> </el-table-column>
|
|
|
- <el-table-column prop="humanBlood" align="center" label="人类血量" width="100"> </el-table-column>
|
|
|
- <el-table-column prop="specialZombieAttackDamage" align="center" label="特殊僵尸攻击伤害" width="200"> </el-table-column>
|
|
|
- <el-table-column prop="specialZombieBlood" align="center" label="特殊僵尸血量" width="150"> </el-table-column>
|
|
|
- <el-table-column prop="specialZombieIntegral" align="center" label="特殊僵尸积分" width="150"> </el-table-column>
|
|
|
- <el-table-column prop="singleGameDuration" align="center" label="单局时长(单位:分钟)" width="200"> </el-table-column>
|
|
|
- <el-table-column label="操作" align="center" fixed="right" 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-table-column prop="id" align="center" label="ID" width="100"> </el-table-column>
|
|
|
+ <el-table-column prop="name" align="center" label="配置名称" width="100"> </el-table-column>
|
|
|
+ <el-table-column prop="zombieIntegral" align="center" label="僵尸积分" width="100"> </el-table-column>
|
|
|
+ <el-table-column prop="zombieAttackDamage" align="center" label="僵尸攻击伤害" width="150">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="zombieBlood" align="center" label="僵尸血量" width="100"> </el-table-column>
|
|
|
+ <el-table-column prop="humanAttackDamage" align="center" label="人类攻击伤害/每发子弹" width="200">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="bulletNum" align="center" label="子弹数" width="100"> </el-table-column>
|
|
|
+ <el-table-column prop="humanBlood" align="center" label="人类血量" width="100"> </el-table-column>
|
|
|
+ <el-table-column prop="specialZombieAttackDamage" align="center" label="特殊僵尸攻击伤害" width="200">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="specialZombieBlood" align="center" label="特殊僵尸血量" width="150">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="specialZombieIntegral" align="center" label="特殊僵尸积分" width="150">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="singleGameDuration" align="center" label="单局时长(单位:分钟)" width="200">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" 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>
|
|
|
@@ -71,115 +77,136 @@
|
|
|
<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>
|
|
|
+ <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: 'MetaZombieList',
|
|
|
- mixins: [pageableTable],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- multipleMode: false,
|
|
|
- search: '',
|
|
|
- url: '/metaZombie/all',
|
|
|
- downloading: false
|
|
|
- };
|
|
|
- },
|
|
|
- computed: {
|
|
|
- selection() {
|
|
|
- return this.$refs.table.selection.map(i => i.id);
|
|
|
- }
|
|
|
- },
|
|
|
- methods: {
|
|
|
- beforeGetData() {
|
|
|
- return { search: this.search, query: { del: false } };
|
|
|
- },
|
|
|
- toggleMultipleMode(multipleMode) {
|
|
|
- this.multipleMode = multipleMode;
|
|
|
- if (!multipleMode) {
|
|
|
- this.$refs.table.clearSelection();
|
|
|
- }
|
|
|
- },
|
|
|
- addRow() {
|
|
|
- this.$router.push({
|
|
|
- path: '/metaZombieEdit',
|
|
|
- query: {
|
|
|
- ...this.$route.query
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- editRow(row) {
|
|
|
- this.$router.push({
|
|
|
- path: '/metaZombieEdit',
|
|
|
- query: {
|
|
|
- id: row.id
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- download() {
|
|
|
- this.downloading = true;
|
|
|
- this.$axios
|
|
|
- .get('/metaZombie/excel', {
|
|
|
- responseType: 'blob',
|
|
|
- params: { size: 10000 }
|
|
|
- })
|
|
|
- .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(`/metaZombie/del/${row.id}`);
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.$message.success('删除成功');
|
|
|
- this.getData();
|
|
|
- })
|
|
|
- .catch(e => {
|
|
|
- if (e !== 'cancel') {
|
|
|
- this.$message.error(e.error);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
+ name: 'MetaZombieList',
|
|
|
+ mixins: [pageableTable],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ multipleMode: false,
|
|
|
+ search: '',
|
|
|
+ url: '/metaZombie/all',
|
|
|
+ downloading: false
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ selection() {
|
|
|
+ return this.$refs.table.selection.map(i => i.id);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ beforeGetData() {
|
|
|
+ return { search: this.search, query: { del: false } };
|
|
|
+ },
|
|
|
+ toggleMultipleMode(multipleMode) {
|
|
|
+ this.multipleMode = multipleMode;
|
|
|
+ if (!multipleMode) {
|
|
|
+ this.$refs.table.clearSelection();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ addRow() {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/metaZombieEdit',
|
|
|
+ query: {
|
|
|
+ ...this.$route.query
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ editRow(row) {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/metaZombieEdit',
|
|
|
+ query: {
|
|
|
+ id: row.id
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ download() {
|
|
|
+ this.downloading = true;
|
|
|
+ this.$axios
|
|
|
+ .get('/metaZombie/excel', {
|
|
|
+ responseType: 'blob',
|
|
|
+ params: { size: 10000 }
|
|
|
+ })
|
|
|
+ .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.$http
|
|
|
+ .get(`/metaZombie/checkApplication/${row.id}`)
|
|
|
+ .then(() => {
|
|
|
+ this.$alert('删除将无法恢复,确认要删除么?', '警告', { type: 'error' })
|
|
|
+ .then(() => {
|
|
|
+ return this.$http.post(`/metaZombie/del/${row.id}`);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$message.success('删除成功');
|
|
|
+ this.getData();
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ if (e !== 'cancel') {
|
|
|
+ this.$message.error(e.error);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ if (e !== 'cancel') {
|
|
|
+ this.$alert(e.error, '提示', { type: 'info', confirmButtonText: '删除应用数据' })
|
|
|
+ .then(() => {
|
|
|
+ return this.$http.post(`/metaGameCopy/${row.id}/del`);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$message.success('删除应用数据成功,当前您可以删除该配置');
|
|
|
+
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ if (e !== 'cancel') {
|
|
|
+ this.$message.error(e.error);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|