Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 481 B After Width: | Height: | Size: 481 B |
Before Width: | Height: | Size: 441 B After Width: | Height: | Size: 441 B |
Before Width: | Height: | Size: 805 B After Width: | Height: | Size: 805 B |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 839 B After Width: | Height: | Size: 839 B |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,4 @@
|
||||
@font-face {
|
||||
font-family: 'Alibaba PuHuiTi';
|
||||
src: url('./fonts/Alibaba-PuHuiTi-Regular.ttf');
|
||||
}
|
@ -1,601 +0,0 @@
|
||||
<template>
|
||||
<div class="container-main" ref="main">
|
||||
<div class="search-hearder" ref="topSearch">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="auto"
|
||||
>
|
||||
<el-form-item label="区域" prop="area">
|
||||
<el-input
|
||||
v-model="queryParams.area"
|
||||
placeholder="请输入区域"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="年月" prop="datetime">
|
||||
<el-input
|
||||
v-model="queryParams.datetime"
|
||||
placeholder="请输入年月"
|
||||
clearable
|
||||
size="small"
|
||||
@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>
|
||||
</div>
|
||||
<div class="layui-table-tool" ref="tableTool">
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" size="mini" @click="handleAdd"
|
||||
>新增</el-button
|
||||
>
|
||||
</el-col>
|
||||
<!-- <el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
>修改</el-button
|
||||
>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col> -->
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" size="mini" @click="importHcheck()">
|
||||
导入
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
size="mini"
|
||||
:loading="exportLoading"
|
||||
@click="handleExport"
|
||||
>导出</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
</div>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="hcheckList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="编号" align="center" prop="id" />
|
||||
<el-table-column label="区域" align="center" prop="area" />
|
||||
<el-table-column label="合计" align="center" prop="total" />
|
||||
<el-table-column label="待完成" align="center" prop="processing" />
|
||||
<el-table-column label="已完成" align="center" prop="completed" />
|
||||
<el-table-column label="超时未完成" align="center" prop="timedOut" />
|
||||
<el-table-column label="完成率" align="center" prop="completionRate" />
|
||||
<el-table-column label="年月" align="center" prop="datetime" />
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
class-name="small-padding fixed-width"
|
||||
width="200"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
icon="el-icon-view"
|
||||
@click="handleInfo(scope.row)"
|
||||
>
|
||||
查看
|
||||
</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
icon="el-icon-edit"
|
||||
type="primary"
|
||||
@click="handleUpdate(scope.row)"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
icon="el-icon-delete"
|
||||
type="danger"
|
||||
@click="handleDelete(scope.row)"
|
||||
>删除</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"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改巡查工单对话框 -->
|
||||
<el-dialog
|
||||
:visible.sync="open"
|
||||
width="1200px"
|
||||
append-to-body
|
||||
custom-class="dialog-box"
|
||||
>
|
||||
<div slot="title" class="dialog-title">
|
||||
{{ title }}
|
||||
</div>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="auto">
|
||||
<el-row>
|
||||
<el-col :span="12"
|
||||
><el-form-item label="区域" prop="area">
|
||||
<el-input v-model="form.area" placeholder="请输入区域" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12"
|
||||
><el-form-item label="合计" prop="total">
|
||||
<el-input v-model="form.total" placeholder="请输入合计" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="待完成" prop="processing">
|
||||
<el-input v-model="form.processing" placeholder="请输入待完成" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="已完成" prop="completed">
|
||||
<el-input v-model="form.completed" placeholder="请输入已完成" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="超时未完成" prop="timedOut">
|
||||
<el-input
|
||||
v-model="form.timedOut"
|
||||
placeholder="请输入超时未完成"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="完成率" prop="completionRate">
|
||||
<el-input
|
||||
v-model="form.completionRate"
|
||||
placeholder="请输入完成率"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-form-item label="年月" prop="datetime">
|
||||
<el-input v-model="form.datetime" placeholder="请输入年月" />
|
||||
</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>
|
||||
<!--查看巡查工单详情页-->
|
||||
<el-dialog
|
||||
:visible.sync="infoOpen"
|
||||
width="1200px"
|
||||
custom-class="dialog-box"
|
||||
>
|
||||
<div slot="title" class="dialog-title">{{ infoTitle }}</div>
|
||||
|
||||
<div class="info_box">
|
||||
<el-descriptions :column="2" border>
|
||||
<el-descriptions-item label="区域">{{
|
||||
form.area
|
||||
}}</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="合计">{{
|
||||
form.total
|
||||
}}</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="待完成">{{
|
||||
form.processing
|
||||
}}</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="已完成">{{
|
||||
form.completed
|
||||
}}</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="超时未完成">{{
|
||||
form.timedOut
|
||||
}}</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="完成率">{{
|
||||
form.completionRate
|
||||
}}</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="年月">{{
|
||||
form.datetime
|
||||
}}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 导入弹窗 -->
|
||||
<el-dialog
|
||||
:visible.sync="fileOpen"
|
||||
width="500px"
|
||||
append-to-body
|
||||
custom-class="dialog-box"
|
||||
>
|
||||
<div slot="title" class="dialog-title">导入文件</div>
|
||||
|
||||
<el-form
|
||||
ref="formFiles"
|
||||
:model="fileQuery"
|
||||
:rules="filesRules"
|
||||
label-width="70px"
|
||||
class="dialog-from"
|
||||
>
|
||||
<el-form-item label="日期:" prop="date">
|
||||
<el-date-picker
|
||||
v-model="fileQuery.date"
|
||||
type="month"
|
||||
placeholder="选择日期"
|
||||
value-format="yyyy-MM"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="文件:" prop="file">
|
||||
<el-upload
|
||||
:multiple="false"
|
||||
:show-file-list="true"
|
||||
class="upload-demo"
|
||||
ref="upload"
|
||||
action="a"
|
||||
:http-request="httpRequest"
|
||||
:limit="1"
|
||||
:file-list="fileList"
|
||||
>
|
||||
<el-button type="primary">选择文件</el-button>
|
||||
</el-upload>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitImport">确 定</el-button>
|
||||
<el-button @click="cancelImport">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
listHcheck,
|
||||
getHcheck,
|
||||
delHcheck,
|
||||
addHcheck,
|
||||
updateHcheck,
|
||||
exportHcheck,
|
||||
importHcheckTable,
|
||||
} from "@/api/mudu/hcheck";
|
||||
export default {
|
||||
name: "Hcheck",
|
||||
//注释字典
|
||||
data() {
|
||||
return {
|
||||
//查看详情
|
||||
infoOpen: false,
|
||||
//详情标题
|
||||
infoTitle: "",
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 导出遮罩层
|
||||
exportLoading: false,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 巡查工单表格数据
|
||||
hcheckList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
fileOpen: false,
|
||||
fileQuery: {
|
||||
date: null,
|
||||
file: null,
|
||||
},
|
||||
filesRules: {
|
||||
date: { required: true, message: "请选择日期", trigger: "change" },
|
||||
file: { required: true, message: "请选择文件", trigger: "change" },
|
||||
},
|
||||
fileList: [],
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
area: null,
|
||||
datetime: null,
|
||||
},
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
// 表单校验
|
||||
rules: {
|
||||
area: [{ required: true, message: "区域不能为空", trigger: "change" }],
|
||||
total: [
|
||||
{ required: true, message: "合计不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的合计",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
processing: [
|
||||
{ required: true, message: "待完成不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的待完成",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
completed: [
|
||||
{ required: true, message: "已完成不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的已完成",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
timedOut: [
|
||||
{ required: true, message: "超时未完成不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的超时未完成",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
completionRate: [
|
||||
{ required: true, message: "完成率不能为空", trigger: "change" },
|
||||
],
|
||||
datetime: [
|
||||
{ required: true, message: "年月不能为空", trigger: "change" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
httpRequest(require) {
|
||||
this.fileQuery.file = require.file;
|
||||
},
|
||||
importHcheck() {
|
||||
this.fileOpen = true;
|
||||
this.resetFile();
|
||||
},
|
||||
cancelImport() {
|
||||
this.resetFile();
|
||||
this.fileOpen = false;
|
||||
},
|
||||
resetFile() {
|
||||
this.fileQuery = {
|
||||
date: null,
|
||||
file: null,
|
||||
};
|
||||
this.fileList = [];
|
||||
},
|
||||
submitImport() {
|
||||
this.$refs.formFiles.validate((valid) => {
|
||||
if (valid) {
|
||||
var form1 = new FormData();
|
||||
form1.append("date", this.fileQuery.date);
|
||||
form1.append("file", this.fileQuery.file);
|
||||
importHcheckTable(form1)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
this.$model.msgSuccess(response.msg);
|
||||
this.getList();
|
||||
}
|
||||
this.fileOpen = false;
|
||||
})
|
||||
.catch((res) => {
|
||||
this.$model.msgError("导入失败,请检查文件");
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 查询巡查工单列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listHcheck(this.queryParams).then((response) => {
|
||||
this.hcheckList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
|
||||
area: null,
|
||||
|
||||
total: null,
|
||||
|
||||
processing: null,
|
||||
|
||||
completed: null,
|
||||
|
||||
timedOut: null,
|
||||
|
||||
completionRate: null,
|
||||
|
||||
datetime: null,
|
||||
|
||||
createId: null,
|
||||
|
||||
createBy: null,
|
||||
|
||||
createTime: null,
|
||||
|
||||
updateId: null,
|
||||
|
||||
updateBy: null,
|
||||
|
||||
updateTime: null,
|
||||
|
||||
remark: null,
|
||||
|
||||
userId: null,
|
||||
|
||||
deptId: 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;
|
||||
},
|
||||
/**查看按钮操作 */
|
||||
handleInfo(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids;
|
||||
getHcheck(id).then((response) => {
|
||||
this.form = response.data;
|
||||
this.infoOpen = true;
|
||||
this.infoTitle = "查看巡查工单详情";
|
||||
});
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加巡查工单";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids;
|
||||
getHcheck(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) {
|
||||
updateHcheck(this.form).then((response) => {
|
||||
this.$model.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addHcheck(this.form).then((response) => {
|
||||
this.$model.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$confirm(
|
||||
'是否确认删除巡查工单编号为"' + ids + '"的数据项?',
|
||||
"警告",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
}
|
||||
)
|
||||
.then(function () {
|
||||
return delHcheck(ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$model.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
const queryParams = this.queryParams;
|
||||
this.$confirm("是否确认导出所有巡查工单数据项?", "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.download(
|
||||
"/mudu/hcheck/export",
|
||||
{
|
||||
...this.queryParams,
|
||||
},
|
||||
"巡查工单_" + new Date().getTime() + ".xlsx"
|
||||
);
|
||||
this.exportLoading = false;
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
@ -1,578 +0,0 @@
|
||||
<template>
|
||||
<div class="container-main" ref="main">
|
||||
<div class="search-hearder" ref="topSearch">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
:inline="true"
|
||||
v-show="showSearch"
|
||||
label-width="auto"
|
||||
>
|
||||
<el-form-item label="区域" prop="area">
|
||||
<el-input
|
||||
v-model="queryParams.area"
|
||||
placeholder="请输入区域"
|
||||
clearable
|
||||
size="small"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="年月" prop="datetime">
|
||||
<el-input
|
||||
v-model="queryParams.datetime"
|
||||
placeholder="请输入年月"
|
||||
clearable
|
||||
size="small"
|
||||
@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>
|
||||
</div>
|
||||
<div class="layui-table-tool" ref="tableTool">
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" size="mini" @click="handleAdd"
|
||||
>新增</el-button
|
||||
>
|
||||
</el-col>
|
||||
<!-- <el-col :span="1.5">
|
||||
<el-button
|
||||
type="success"
|
||||
plain
|
||||
icon="el-icon-edit"
|
||||
size="mini"
|
||||
:disabled="single"
|
||||
@click="handleUpdate"
|
||||
>修改</el-button
|
||||
>
|
||||
</el-col> -->
|
||||
<!-- <el-col :span="1.5">
|
||||
<el-button
|
||||
type="danger"
|
||||
plain
|
||||
icon="el-icon-delete"
|
||||
size="mini"
|
||||
:disabled="multiple"
|
||||
@click="handleDelete"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col> -->
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" size="mini" @click="importTrouble()">
|
||||
导入
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="warning"
|
||||
size="mini"
|
||||
:loading="exportLoading"
|
||||
@click="handleExport"
|
||||
>导出</el-button
|
||||
>
|
||||
</el-col>
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
</div>
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
:data="troubleList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="编号" align="center" prop="id" />
|
||||
<el-table-column label="区域" align="center" prop="area" />
|
||||
<el-table-column label="工单总数" align="center" prop="total" />
|
||||
<el-table-column label="处理中" align="center" prop="processing" />
|
||||
<el-table-column label="已完成" align="center" prop="completed" />
|
||||
<el-table-column label="完成率" align="center" prop="completionRate" />
|
||||
<el-table-column label="年月" align="center" prop="datetime" />
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
class-name="small-padding fixed-width"
|
||||
width="200"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
icon="el-icon-view"
|
||||
@click="handleInfo(scope.row)"
|
||||
>
|
||||
查看
|
||||
</el-button>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="primary"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
>修改</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="danger"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
>删除</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"
|
||||
/>
|
||||
|
||||
<!-- 添加或修改隐患工单对话框 -->
|
||||
<el-dialog
|
||||
:visible.sync="open"
|
||||
width="1200px"
|
||||
append-to-body
|
||||
custom-class="dialog-box"
|
||||
>
|
||||
<div slot="title" class="dialog-title">
|
||||
{{ title }}
|
||||
</div>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="auto">
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="区域" prop="area">
|
||||
<el-input v-model="form.area" placeholder="请输入区域" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="工单总数" prop="total">
|
||||
<el-input v-model="form.total" placeholder="请输入工单总数" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="处理中" prop="processing">
|
||||
<el-input v-model="form.processing" placeholder="请输入处理中" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="已完成" prop="completed">
|
||||
<el-input v-model="form.completed" placeholder="请输入已完成" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="完成率" prop="completionRate">
|
||||
<el-input
|
||||
v-model="form.completionRate"
|
||||
placeholder="请输入完成率"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="年月" prop="datetime">
|
||||
<el-input v-model="form.datetime" placeholder="请输入年月" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</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>
|
||||
<!--查看隐患工单详情页-->
|
||||
<el-dialog
|
||||
:visible.sync="infoOpen"
|
||||
width="1200px"
|
||||
custom-class="dialog-box"
|
||||
>
|
||||
<div slot="title" class="dialog-title">{{ infoTitle }}</div>
|
||||
|
||||
<div class="info_box">
|
||||
<el-descriptions :column="2" border>
|
||||
<el-descriptions-item label="区域">
|
||||
{{ form.area }}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="工单总数">
|
||||
{{ form.total }}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="处理中">
|
||||
{{ form.processing }}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="已完成">
|
||||
{{ form.completed }}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="完成率">
|
||||
{{ form.completionRate }}
|
||||
</el-descriptions-item>
|
||||
|
||||
<el-descriptions-item label="年月">
|
||||
{{ form.datetime }}
|
||||
</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 导入弹窗 -->
|
||||
<el-dialog
|
||||
:visible.sync="fileOpen"
|
||||
width="500px"
|
||||
append-to-body
|
||||
custom-class="dialog-box"
|
||||
>
|
||||
<div slot="title" class="dialog-title">导入文件</div>
|
||||
|
||||
<el-form
|
||||
ref="formFiles"
|
||||
:model="fileQuery"
|
||||
:rules="filesRules"
|
||||
label-width="70px"
|
||||
class="dialog-from"
|
||||
>
|
||||
<el-form-item label="日期:" prop="date">
|
||||
<el-date-picker
|
||||
v-model="fileQuery.date"
|
||||
type="month"
|
||||
placeholder="选择日期"
|
||||
value-format="yyyy-MM"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="文件:" prop="file">
|
||||
<el-upload
|
||||
:multiple="false"
|
||||
:show-file-list="true"
|
||||
class="upload-demo"
|
||||
ref="upload"
|
||||
action="a"
|
||||
:http-request="httpRequest"
|
||||
:limit="1"
|
||||
:file-list="fileList"
|
||||
>
|
||||
<el-button type="primary">选择文件</el-button>
|
||||
</el-upload>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitImport">确 定</el-button>
|
||||
<el-button @click="cancelImport">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
listTrouble,
|
||||
getTrouble,
|
||||
delTrouble,
|
||||
addTrouble,
|
||||
updateTrouble,
|
||||
exportTrouble,
|
||||
importTroubleTable,
|
||||
} from "@/api/mudu/trouble";
|
||||
export default {
|
||||
name: "Trouble",
|
||||
//注释字典
|
||||
data() {
|
||||
return {
|
||||
//查看详情
|
||||
infoOpen: false,
|
||||
//详情标题
|
||||
infoTitle: "",
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
// 导出遮罩层
|
||||
exportLoading: false,
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
single: true,
|
||||
// 非多个禁用
|
||||
multiple: true,
|
||||
// 显示搜索条件
|
||||
showSearch: true,
|
||||
// 总条数
|
||||
total: 0,
|
||||
// 隐患工单表格数据
|
||||
troubleList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
area: null,
|
||||
datetime: null,
|
||||
},
|
||||
fileOpen: false,
|
||||
fileQuery: {
|
||||
date: null,
|
||||
file: null,
|
||||
},
|
||||
filesRules: {
|
||||
date: { required: true, message: "请选择日期", trigger: "change" },
|
||||
file: { required: true, message: "请选择文件", trigger: "change" },
|
||||
},
|
||||
fileList: [],
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {
|
||||
area: [{ required: true, message: "区域不能为空", trigger: "change" }],
|
||||
total: [
|
||||
{ required: true, message: "工单总数不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的工单总数",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
processing: [
|
||||
{ required: true, message: "处理中不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的处理中",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
completed: [
|
||||
{ required: true, message: "已完成不能为空", trigger: "change" },
|
||||
{
|
||||
type: "number",
|
||||
message: "请输入正确的已完成",
|
||||
trigger: "change",
|
||||
},
|
||||
],
|
||||
completionRate: [
|
||||
{ required: true, message: "完成率不能为空", trigger: "change" },
|
||||
],
|
||||
datetime: [
|
||||
{ required: true, message: "年月不能为空", trigger: "change" },
|
||||
],
|
||||
},
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
methods: {
|
||||
httpRequest(require) {
|
||||
this.fileQuery.file = require.file;
|
||||
},
|
||||
importTrouble() {
|
||||
this.fileOpen = true;
|
||||
this.resetFile();
|
||||
},
|
||||
cancelImport() {
|
||||
this.resetFile();
|
||||
this.fileOpen = false;
|
||||
},
|
||||
resetFile() {
|
||||
this.fileQuery = {
|
||||
date: null,
|
||||
file: null,
|
||||
};
|
||||
this.fileList = [];
|
||||
},
|
||||
submitImport() {
|
||||
this.$refs.formFiles.validate((valid) => {
|
||||
if (valid) {
|
||||
var form1 = new FormData();
|
||||
form1.append("date", this.fileQuery.date);
|
||||
form1.append("file", this.fileQuery.file);
|
||||
importTroubleTable(form1)
|
||||
.then((response) => {
|
||||
if (response.code == 200) {
|
||||
this.$model.msgSuccess(response.msg);
|
||||
this.getList();
|
||||
}
|
||||
this.fileOpen = false;
|
||||
})
|
||||
.catch((res) => {
|
||||
this.$model.msgError("导入失败,请检查文件");
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 查询隐患工单列表 */
|
||||
getList() {
|
||||
this.loading = true;
|
||||
listTrouble(this.queryParams).then((response) => {
|
||||
this.troubleList = response.rows;
|
||||
this.total = response.total;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: null,
|
||||
|
||||
area: null,
|
||||
|
||||
total: null,
|
||||
|
||||
processing: null,
|
||||
|
||||
completed: null,
|
||||
|
||||
completionRate: null,
|
||||
|
||||
datetime: null,
|
||||
|
||||
createId: null,
|
||||
|
||||
createBy: null,
|
||||
|
||||
createTime: null,
|
||||
|
||||
updateId: null,
|
||||
|
||||
updateBy: null,
|
||||
|
||||
updateTime: null,
|
||||
|
||||
remark: null,
|
||||
|
||||
userId: null,
|
||||
|
||||
deptId: 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;
|
||||
},
|
||||
/**查看按钮操作 */
|
||||
handleInfo(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids;
|
||||
getTrouble(id).then((response) => {
|
||||
this.form = response.data;
|
||||
this.infoOpen = true;
|
||||
this.infoTitle = "查看隐患工单详情";
|
||||
});
|
||||
},
|
||||
/** 新增按钮操作 */
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "添加隐患工单";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const id = row.id || this.ids;
|
||||
getTrouble(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) {
|
||||
updateTrouble(this.form).then((response) => {
|
||||
this.$model.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
addTrouble(this.form).then((response) => {
|
||||
this.$model.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
const ids = row.id || this.ids;
|
||||
this.$confirm(
|
||||
'是否确认删除隐患工单编号为"' + ids + '"的数据项?',
|
||||
"警告",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
}
|
||||
)
|
||||
.then(function () {
|
||||
return delTrouble(ids);
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$model.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
/** 导出按钮操作 */
|
||||
handleExport() {
|
||||
const queryParams = this.queryParams;
|
||||
this.$confirm("是否确认导出所有隐患工单数据项?", "警告", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.download(
|
||||
"/mudu/trouble/export",
|
||||
{
|
||||
...this.queryParams,
|
||||
},
|
||||
"隐患工单_" + new Date().getTime() + ".xlsx"
|
||||
);
|
||||
this.exportLoading = false;
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|