|
|
@@ -1,22 +1,24 @@
|
|
|
<template>
|
|
|
- <div class="list-view">
|
|
|
+ <div class="list-view">
|
|
|
<page-title>
|
|
|
- <el-button @click="addRow" type="primary" icon="el-icon-plus" :disabled="fetchingData || downloading" class="filter-item">
|
|
|
+ <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 @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"
|
|
|
+ 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-button @click="getData" slot="append" icon="el-icon-search"></el-button>
|
|
|
</el-input>
|
|
|
</div>
|
|
|
<el-table :data="tableData" row-key="id" ref="table"
|
|
|
@@ -27,57 +29,51 @@
|
|
|
<el-table-column v-if="multipleMode" align="center" type="selection"
|
|
|
width="50">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="id" label="ID" width="100">
|
|
|
+ <el-table-column prop="tid" label="tid"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="name" label="群名" width="150"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="ownerid" label="群主id"
|
|
|
+ >
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="tid" label="tid"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="name" label="群名"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="ownerid" label="群主id"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="members" label="群成员列表"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="admins" label="管理员列表"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="announcement" label="公告"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="intro" label="介绍"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="msg" label="邀请信息"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="custom" label="群组分类"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="icon" label="图标"
|
|
|
->
|
|
|
- <template slot-scope="{row}">
|
|
|
- <el-image style="width: 30px; height: 30px"
|
|
|
- :src="row.icon" fit="cover"
|
|
|
- :preview-src-list="[row.icon]"></el-image>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="collectionId" label="藏品id"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="password" label="密码"
|
|
|
->
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column prop="members" label="群成员列表"
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="announcement" label="公告"
|
|
|
+ show-tooltip-when-overflow
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="intro" label="介绍"
|
|
|
+ show-tooltip-when-overflow
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="msg" label="邀请信息"
|
|
|
+ show-tooltip-when-overflow
|
|
|
+ >
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="icon" label="图标"
|
|
|
+ >
|
|
|
+ <template slot-scope="{row}">
|
|
|
+ <el-image style="width: 30px; height: 30px"
|
|
|
+ :src="row.icon" fit="cover"
|
|
|
+ :preview-src-list="[row.icon]"></el-image>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column prop="collectionId" label="藏品id"-->
|
|
|
+ <!-- >-->
|
|
|
+ <!-- </el-table-column>-->
|
|
|
<el-table-column
|
|
|
- label="操作"
|
|
|
- align="center"
|
|
|
- fixed="right"
|
|
|
- width="150">
|
|
|
+ label="操作"
|
|
|
+ align="center"
|
|
|
+ fixed="right"
|
|
|
+ width="250">
|
|
|
<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>
|
|
|
+ <el-button @click="mute(row)" v-if="row.mute === false" type="danger" size="mini" plain>群禁言</el-button>
|
|
|
+ <el-button @click="cancelMute(row)" v-if="row.mute === true" size="mini" plain>解除禁言</el-button>
|
|
|
+ <!-- <el-button @click="deleteRow(row)" type="danger" size="mini" plain>删除</el-button>-->
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -101,101 +97,125 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
- import { mapState } from "vuex";
|
|
|
- import pageableTable from "@/mixins/pageableTable";
|
|
|
+import {mapState} from "vuex";
|
|
|
+import pageableTable from "@/mixins/pageableTable";
|
|
|
|
|
|
- export default {
|
|
|
- name: 'TeamList',
|
|
|
- mixins: [pageableTable],
|
|
|
- data() {
|
|
|
- return {
|
|
|
- multipleMode: false,
|
|
|
- search: "",
|
|
|
- url: "/team/all",
|
|
|
- downloading: false,
|
|
|
- }
|
|
|
+export default {
|
|
|
+ name: 'TeamList',
|
|
|
+ mixins: [pageableTable],
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ multipleMode: false,
|
|
|
+ search: "",
|
|
|
+ url: "/team/all",
|
|
|
+ downloading: false,
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ selection() {
|
|
|
+ return this.$refs.table.selection.map(i => i.id);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ beforeGetData() {
|
|
|
+ return {search: this.search, query: {del: false}};
|
|
|
},
|
|
|
- computed: {
|
|
|
- selection() {
|
|
|
- return this.$refs.table.selection.map(i => i.id);
|
|
|
+ toggleMultipleMode(multipleMode) {
|
|
|
+ this.multipleMode = multipleMode;
|
|
|
+ if (!multipleMode) {
|
|
|
+ this.$refs.table.clearSelection();
|
|
|
}
|
|
|
},
|
|
|
- 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: "/teamEdit",
|
|
|
+ query: {
|
|
|
+ ...this.$route.query
|
|
|
}
|
|
|
- },
|
|
|
- addRow() {
|
|
|
- this.$router.push({
|
|
|
- path: "/teamEdit",
|
|
|
- query: {
|
|
|
- ...this.$route.query
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- editRow(row) {
|
|
|
- this.$router.push({
|
|
|
- path: "/teamEdit",
|
|
|
- query: {
|
|
|
- id: row.id
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- download() {
|
|
|
- this.downloading = true;
|
|
|
- this.$axios
|
|
|
- .get("/team/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(`/team/del/${row.id}`)
|
|
|
- }).then(() => {
|
|
|
- this.$message.success('删除成功');
|
|
|
- this.getData();
|
|
|
- }).catch(e => {
|
|
|
- if (e !== 'cancel') {
|
|
|
- this.$message.error(e.error);
|
|
|
- }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ mute(row) {
|
|
|
+ this.$alert('禁言后用户无法发言,确认要禁言么?', '警告', {type: 'error'}).then(() => {
|
|
|
+ return this.$http.post(`/team/mute/${row.tid}`)
|
|
|
+ }).then(() => {
|
|
|
+ this.$message.success('禁言成功');
|
|
|
+ this.getData();
|
|
|
+ }).catch(e => {
|
|
|
+ if (e !== 'cancel') {
|
|
|
+ this.$message.error(e.error);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ cancelMute(row) {
|
|
|
+ this.$alert('解除禁言所有非封禁用户可以正常发言?', '警告', {type: 'error'}).then(() => {
|
|
|
+ return this.$http.post(`/team/cancelMute/${row.tid}`)
|
|
|
+ }).then(() => {
|
|
|
+ this.$message.success('解禁成功');
|
|
|
+ this.getData();
|
|
|
+ }).catch(e => {
|
|
|
+ if (e !== 'cancel') {
|
|
|
+ this.$message.error(e.error);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ editRow(row) {
|
|
|
+ this.$router.push({
|
|
|
+ path: "/teamEdit",
|
|
|
+ query: {
|
|
|
+ id: row.tid
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ download() {
|
|
|
+ this.downloading = true;
|
|
|
+ this.$axios
|
|
|
+ .get("/team/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(`/team/del/${row.id}`)
|
|
|
+ }).then(() => {
|
|
|
+ this.$message.success('删除成功');
|
|
|
+ this.getData();
|
|
|
+ }).catch(e => {
|
|
|
+ if (e !== 'cancel') {
|
|
|
+ this.$message.error(e.error);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
}
|
|
|
+}
|
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
|
</style>
|