index.vue 12.6 KB
<template>
	<div class="NCC-common-layout">
		<div class="NCC-common-layout-center">
			<el-row class="NCC-common-search-box" :gutter="16">
				<el-form @submit.native.prevent @keyup.enter.native="search()">
					<el-col :span="6">
						<el-form-item label="(问题)类别">
							<el-select v-model="query.qxgn" placeholder="请选择(问题)类别" clearable style="width:100%" @change="search()" @clear="search()">
								<el-option label="系统缺陷" value="系统缺陷" />
								<el-option label="功能缺失" value="功能缺失" />
								<el-option label="显示异常" value="显示异常" />
								<el-option label="优化建议" value="优化建议" />
								<el-option label="功能新增" value="功能新增" />
							</el-select>
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="问题描述">
							<el-input v-model="query.nr" placeholder="问题描述" clearable @clear="search()" @input="onSearchInput()" />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="服务人员">
							<el-input v-model="query.clr" placeholder="服务人员" clearable @clear="search()" @input="onSearchInput()" />	
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="处理结果">
							<el-select v-model="query.cljg" placeholder="请选择处理结果" clearable style="width:100%" @change="search()" @clear="search()">
								<el-option label="已处理" value="已处理" />
								<el-option label="进行中" value="进行中" />
								<el-option label="未处理" value="未处理" />
							</el-select>
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="反馈人员">
							<userSelect v-model="query.fbr" placeholder="请选择反馈人员" @change="search()" />
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item label="反馈时间">
							<el-date-picker v-model="query.fbsj" start-placeholder="开始日期" end-placeholder="结束日期" value-format="timestamp" format="yyyy-MM-dd" type="daterange" style="width:100%" @change="search()" @clear="search()" />
						</el-form-item>
					</el-col>
					<el-col :span="6">
						<el-form-item>
							<el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
							<el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
						</el-form-item>
					</el-col>
				</el-form>
			</el-row>
			<div class="NCC-common-layout-main NCC-flex-main">
				<div class="NCC-common-head">
					<div>
						<el-button type="primary" icon="el-icon-plus" @click="addOrUpdateHandle()">新增</el-button>
						<el-button type="text" icon="el-icon-download" @click="exportData()">导出</el-button>
						<el-button type="text" icon="el-icon-delete" @click="handleBatchRemoveDel()">批量删除</el-button>
					</div>
					<div class="NCC-common-head-right">
						<el-tooltip effect="dark" content="刷新" placement="top">
							<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="reset()" />
						</el-tooltip>
						<screenfull isContainer />
					</div>
				</div>
                <NCC-table v-loading="listLoading" :data="list" has-c @selection-change="handleSelectionChange">
					<el-table-column type="index" label="序号" width="60" align="center" />
					<el-table-column prop="qxgn" label="(问题)类别" align="left" />
					<el-table-column prop="nr" label="问题描述" align="left" />
					<el-table-column prop="clr" label="服务人员" align="left" />
					<el-table-column prop="cljg" label="处理结果" align="left">
						<template slot-scope="scope">
							<el-tag :type="getStatusType(scope.row.cljg)" :effect="getStatusEffect()" size="small" style="border-radius: 12px; padding: 0 12px;">
								{{ scope.row.cljg || '未设置' }}
							</el-tag>
						</template>
					</el-table-column>
					<el-table-column prop="fbr" label="反馈用户" align="left" />
					<el-table-column prop="fbsj" label="反馈时间" align="left">
						<template slot-scope="scope">
							{{ scope.row.fbsj | dateFormat('YYYY-MM-DD HH:mm') }}
						</template>
					</el-table-column>
					<el-table-column prop="sfyd" label="是否已读" align="left" width="120">
						<template slot-scope="scope">
							<el-select v-model="scope.row.sfyd" placeholder="请选择" size="small" @change="handleSfydChange(scope.row)" clearable>
								<el-option label="是" value="是"></el-option>
								<el-option label="否" value="否"></el-option>
							</el-select>
						</template>
					</el-table-column>
					<el-table-column label="操作" fixed="right" width="100">
							<template slot-scope="scope">
							<el-button type="text" @click="addOrUpdateHandle(scope.row.id)" >编辑</el-button>
							<el-button type="text" @click="handleDel(scope.row.id)" class="NCC-table-delBtn" >删除</el-button>
						</template>
					</el-table-column>
				</NCC-table>
                <pagination :total="total" :page.sync="listQuery.currentPage" :limit.sync="listQuery.pageSize" @pagination="initData" />
            </div>
        </div>
		<NCC-Form v-if="formVisible" ref="NCCForm" @refresh="refresh" />
		<ExportBox v-if="exportBoxVisible" ref="ExportBox" @download="download" />
	</div>
</template>
<script>
    import request from '@/utils/request'
    import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
    import NCCForm from './Form'
    import ExportBox from './ExportBox'
    import { previewDataInterface } from '@/api/systemData/dataInterface'
	export default {
        components: { NCCForm, ExportBox },
        data() {
            return {
				query: {
                    qxgn: undefined,
                    nr: undefined,
                    clr: undefined,
                    cljg: undefined,
                    fbr: undefined,
                    fbsj: undefined,
				},
                list: [],
                listLoading: true,
                multipleSelection: [], total: 0,
                listQuery: {
                    currentPage: 1,
                    pageSize: 20,
					sort: "desc",
                    sidx: "",
                },
                formVisible: false,
                exportBoxVisible: false,
                searchInputTimer: null,
                columnList: [
                    { prop: 'qxgn', label: '(问题)类别' },
                    { prop: 'nr', label: '问题描述' },
                    { prop: 'clr', label: '服务人员' },
                    { prop: 'cljg', label: '处理结果' },
                    { prop: 'fbr', label: '反馈用户' },
                    { prop: 'fbsj', label: '反馈时间' },
                    { prop: 'sfyd', label: '是否已读' },
				],
			}
        },
		computed: {},
		created() {
			this.initData()
		},
		methods: {
			getStatusType(status) {
				// 根据处理结果状态返回对应的类型
				// 未处理:danger(红色)
				// 进行中:primary(蓝色)
				// 已处理:success(绿色)
				if (status === '未处理') {
					return 'danger';
				} else if (status === '进行中') {
					return 'primary';
				} else if (status === '已处理') {
					return 'success';
				}
				return 'info';
			},
			getStatusEffect() {
				// 返回 dark 效果(白色文字)
				return 'dark';
			},
			initData() {
                this.listLoading = true;
                let _query = {
                    ...this.listQuery,
                    ...this.query
                };
                let query = {}
                for (let key in _query) {
                    if (Array.isArray(_query[key])) {
                        query[key] = _query[key].join()
                    } else {
                        query[key] = _query[key]
                    }
                }
                request({
                    url: `/api/Extend/Xtwtfk`,
                    method: 'GET',
                    data: query
                }).then(res => {
                    this.list = res.data.list
                    this.total = res.data.pagination.total
                    this.listLoading = false
                })
            },
			handleDel(id) {
                this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
                    type: 'warning'
                }).then(() => {
                    request({
                        url: `/api/Extend/Xtwtfk/${id}`,
                        method: 'DELETE'
                    }).then(res => {
                        this.$message({
                            type: 'success',
                            message: res.msg,
                            onClose: () => {
                                this.initData()
                            }
                        });
                    })
                }).catch(() => {
                });
            },
			handleSelectionChange(val) {
                const res = val.map(item => item.id)
                this.multipleSelection = res
            },
            handleBatchRemoveDel() {
                if (!this.multipleSelection.length) {
                    this.$message({
                        type: 'error',
                        message: '请选择一条数据',
                        duration: 1500,
                    })
                    return
                }
                const ids = this.multipleSelection
                this.$confirm('您确定要删除这些数据吗, 是否继续?', '提示', {
                    type: 'warning'
                }).then(() => {
                    request({
                        url: `/api/Extend/Xtwtfk/batchRemove`,
                        method: 'POST',
                        data: ids ,
                    }).then(res => {
                        this.$message({
                            type: 'success',
                            message: res.msg,
                            onClose: () => {
                                this.initData()
                            }
                        });
                    })
                }).catch(() => { })
            },
			addOrUpdateHandle(id, isDetail) {
                this.formVisible = true
                this.$nextTick(() => {
                    this.$refs.NCCForm.init(id, isDetail)
                })
            },
			exportData() {
                this.exportBoxVisible = true
                this.$nextTick(() => {
                    this.$refs.ExportBox.init(this.columnList)
                })
            },
            download(data) {
                let query = { ...data, ...this.listQuery, ...this.query }
                request({
                    url: `/api/Extend/Xtwtfk/Actions/Export`,
                    method: 'GET',
                    data: query
                }).then(res => {
                    if (!res.data.url) return
                    window.location.href = this.define.comUrl + res.data.url
                    this.$refs.ExportBox.visible = false
                    this.exportBoxVisible = false
                })
            },
			onSearchInput() {
                if (this.searchInputTimer) clearTimeout(this.searchInputTimer)
                this.searchInputTimer = setTimeout(() => this.search(), 400)
            },
            search() {
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    sort: "desc",
                    sidx: "",
                }
                this.initData()
            },
            refresh(isrRefresh) {
                this.formVisible = false
                if (isrRefresh) {
                    // 保持当前页码,只刷新数据
                    this.initData()
                }
            },
			reset() {
                for (let key in this.query) {
                    this.query[key] = undefined
                }
                this.listQuery = {
                    currentPage: 1,
                    pageSize: 20,
                    sort: "desc",
                    sidx: "",
                }
                this.initData()
            },
			handleSfydChange(row) {
                request({
                    url: `/api/Extend/Xtwtfk/${row.id}/Actions/UpdateSfyd?sfyd=${row.sfyd || ''}`,
                    method: 'PUT'
                }).then(res => {
                    this.$message({
                        type: 'success',
                        message: '更新成功'
                    });
                }).catch(err => {
                    this.$message({
                        type: 'error',
                        message: '更新失败'
                    });
                    // 恢复原值
                    this.initData();
                });
            }
		}
    }
</script>