You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

337 lines
10 KiB

<template>
<div class="app-container">
<div class="search_con m-b-28">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable size="medium">
<el-option
v-for="dict in statusOptionsSearch"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" size="medium" @click="handleQuery">搜索</el-button>
<el-button size="medium" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
</div>
<div class="bg bg-white">
<el-row :gutter="10" class="m-b-16">
<el-col :span="1.5">
<el-button
type="primary"
size="medium"
@click="handleAdd"
v-hasPermi="['otc:otcAppealConfig:add']"
>新增</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button
type="primary"
size="medium"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['otc:otcAppealConfig:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="primary"
size="medium"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['otc:otcAppealConfig:remove']"
>删除</el-button>
</el-col> -->
<el-col :span="1.5">
<el-button
type="primary"
size="medium"
@click="handleExport"
v-hasPermi="['otc:otcAppealConfig:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="otcAppealConfigList" @selection-change="handleSelectionChange">
<el-table-column label="申诉描述" align="center" prop="remark" />
<el-table-column label="申诉终端" align="center" prop="terminalSource" :formatter="terminalSourceFormat" />
<el-table-column label="状态" align="center" prop="status" width="140px">
<template slot-scope="scope">
<el-switch v-model="scope.row.status" active-text="" inactive-text="" active-value="Y"
inactive-value="N" @change="switchStatusChange(scope.row)">
</el-switch>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="medium"
type="text"
@click="handleUpdate(scope.row)"
v-hasPermi="['otc:otcAppealConfig:edit']"
>修改</el-button>
<el-button
size="medium"
type="text"
style="color:rgba(231, 53, 53, 1)"
@click="handleDelete(scope.row)"
v-hasPermi="['otc:otcAppealConfig: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>
<!-- 添加或修改申诉类型配置对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="申诉描述" prop="remark">
<el-input v-model="form.remark" placeholder="请输入申诉描述" />
</el-form-item>
<el-form-item label="申诉终端" prop="terminalSource">
<!-- <el-input v-model="form.terminalSource" placeholder="请输入申诉终端" />-->
<el-select v-model="form.terminalSource" placeholder="请申诉终端" clearable size="medium">
<el-option
v-for="dict in terminalSourceOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<el-form-item label="是否">
<!-- <el-radio-group v-model="form.status">-->
<!-- <el-radio label="1">请选择字典生成</el-radio>-->
<!-- </el-radio-group>-->
<el-select v-model="form.status" placeholder="请选择状态" clearable size="medium">
<el-option
v-for="dict in statusOptions"
:key="dict.dictValue"
:label="dict.dictLabel"
:value="dict.dictValue"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="添加时间" prop="createTime">-->
<!-- <el-date-picker clearable size="medium"-->
<!-- v-model="form.createTime"-->
<!-- type="date"-->
<!-- value-format="yyyy-MM-dd"-->
<!-- placeholder="选择添加时间">-->
<!-- </el-date-picker>-->
<!-- </el-form-item>-->
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listOtcAppealConfig, getOtcAppealConfig, delOtcAppealConfig, addOtcAppealConfig, updateOtcAppealConfig, exportOtcAppealConfig } from "@/api/otc/otcAppealConfig";
export default {
name: "OtcAppealConfig",
components: {
},
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 申诉类型配置表格数据
otcAppealConfigList: [],
statusOptions: [],
statusOptionsSearch:[],
terminalSourceOptions: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
terminalSource: null,
status: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
}
};
},
created() {
this.getList();
this.getDicts("sys_yes_no").then(response => {
this.statusOptions = response.data;
});
this.getDicts("sys_yes_no").then(response => {
this.statusOptionsSearch = response.data;
this.statusOptionsSearch.unshift({
dictValue:null,
dictLabel:'全部'
})
});
this.getDicts("terminal_source").then(response => {
this.terminalSourceOptions = response.data;
});
},
methods: {
// 状态有效无效
switchStatusChange(row, type) {
this.reset()
const id = row.id || this.ids;
this.form = row;
this.form.status = row.status;
updateOtcAppealConfig(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.getList();
});
},
/** 查询申诉类型配置列表 */
getList() {
this.loading = true;
listOtcAppealConfig(this.queryParams).then(response => {
this.otcAppealConfigList = response.rows;
this.total = Number(response.total);
this.loading = false;
});
},
terminalSourceFormat(row, column) {
return this.selectDictLabel(this.terminalSourceOptions, row.terminalSource);
},
statusFormat(row, column) {
return this.selectDictLabel(this.statusOptions, row.status);
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
remark: null,
terminalSource: null,
status: "Y",
createTime: null
};
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
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加申诉类型配置";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getOtcAppealConfig(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改申诉类型配置";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateOtcAppealConfig(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addOtcAppealConfig(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm('是否确认删除申诉类型配置编号为"' + ids + '"的数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return delOtcAppealConfig(ids);
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
})
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm('是否确认导出所有申诉类型配置数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function() {
return exportOtcAppealConfig(queryParams);
}).then(response => {
this.download(response.msg);
})
}
}
};
</script>