This commit is contained in:
wangchengming 2024-12-03 17:29:49 +08:00
parent a144ea0f54
commit ff25c321e6
2 changed files with 202 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import request from '@/utils/request'
// 查询列表
export function listFeedBack(query) {
console.log('weweweewew', query)
return request({
url: '/official/message/list',
method: 'get',
params: query
})
}
// 删除
export function delFeedBack(id) {
return request({
url: '/official/message/' + id,
method: 'delete'
})
}

View File

@ -0,0 +1,183 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="标题" prop="captionName">
<el-input
v-model="queryParams.captionName"
placeholder="请输入标题名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['official:messageFeedBack:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="slideshowList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="主键id" align="center" prop="id" v-if="false"/>
<el-table-column label="标题" align="center" prop="captionName" />
<el-table-column label="反馈人" align="center" prop="userName" />
<el-table-column label="联系方式" align="center" prop="phoneNumber" />
<el-table-column label="反馈内容" align="center" prop="abstracts">
<template slot-scope="{ row }">
<div class="multiple-line-content-show" v-html="row.abstracts"></div>
</template>
</el-table-column>
<el-table-column label="反馈时间" align="center" prop="createTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['official:messageFeedBack:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import { listFeedBack, delFeedBack } from "@/api/official/messageFeedBack";
export default {
name: "FeedBack",
data() {
return {
// loading
buttonLoading: false,
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
slideshowList: [],
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
captionName: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/**
列表 */
getList() {
this.loading = true;
listFeedBack(this.queryParams).then(response => {
this.slideshowList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: undefined,
captionName: undefined,
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除编号为"' + ids + '"的数据项?').then(() => {
this.loading = true;
return delFeedBack(ids);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
},
}
};
</script>
<style scoped lang="scss">
::v-deep .multiple-line-content-show p {
margin: 0;
}
//
::v-deep .el-dialog {
height: 92%;
overflow: hidden;
}
::v-deep .el-dialog__body {
padding: 30px 20px 0;
height: 89%;
overflow-y: auto;
}
</style>