346 lines
11 KiB
Plaintext
346 lines
11 KiB
Plaintext
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
|
<el-form-item label="请求单号" prop="requestCode">
|
|
<el-input
|
|
v-model="queryParams.requestCode"
|
|
placeholder="请输入请求单号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="请求内容" prop="json">
|
|
<el-input
|
|
v-model="queryParams.json"
|
|
placeholder="请输入请求内容"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态" prop="status">
|
|
<el-select
|
|
v-model="queryParams.status"
|
|
placeholder="任务状态"
|
|
clearable
|
|
style="width: 240px"
|
|
>
|
|
<el-option
|
|
v-for="dict in dict.type.agv_request_status"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="创建时间起" prop="createdDtStart">
|
|
<el-date-picker clearable
|
|
v-model="queryParams.createdDtStart"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="请选择创建时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="创建时间止" prop="createdDtEnd">
|
|
<el-date-picker clearable
|
|
v-model="queryParams.createdDtEnd"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="请选择创建时间">
|
|
</el-date-picker>
|
|
</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="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
v-hasPermi="['system:task:export']"
|
|
>导出</el-button>
|
|
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="taskList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="id" align="center" prop="id" />
|
|
<el-table-column label="请求单号" align="center" prop="requestCode" />
|
|
<el-table-column label="类型" align="center" prop="dictType">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.agv_request_type" :value="scope.row.dictType"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="json" align="center" prop="json" show-overflow-tooltip/>
|
|
<el-table-column label="任务状态" align="center" prop="status">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.agv_request_status" :value="scope.row.status"/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="处理结果" align="center" prop="message" />
|
|
<el-table-column label="创建人" align="center" prop="createdBy" />
|
|
<el-table-column label="创建时间" align="center" prop="createdDt" width="180">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.createdDt) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="更新人" align="center" prop="updatedBy" />
|
|
<el-table-column label="更新时间" align="center" prop="updatedDt" width="180">
|
|
<template slot-scope="scope">
|
|
<span>{{ parseTime(scope.row.updatedDt) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
label="操作"
|
|
align="center"
|
|
width="160"
|
|
class-name="small-padding fixed-width"
|
|
>
|
|
<template slot-scope="scope" v-if="scope.row.userId !== 1">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="cancelTask(scope.row)"
|
|
v-hasPermi="['system:user:remove']"
|
|
>取消任务</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNo"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 添加或修改【请填写功能名称】对话框 -->
|
|
<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="requestCode">
|
|
<el-input v-model="form.requestCode" placeholder="请输入请求单号" />
|
|
</el-form-item>
|
|
<el-form-item label="json" prop="json">
|
|
<el-input v-model="form.json" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="处理结果" prop="message">
|
|
<el-input v-model="form.message" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
<el-form-item label="创建人" prop="createdBy">
|
|
<el-input v-model="form.createdBy" placeholder="请输入创建人" />
|
|
</el-form-item>
|
|
<el-form-item label="创建时间" prop="createdDt">
|
|
<el-date-picker clearable
|
|
v-model="form.createdDt"
|
|
type="date"
|
|
value-format="yyyy-MM-dd"
|
|
placeholder="请选择创建时间">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
<el-form-item label="更新人" prop="updatedBy">
|
|
<el-input v-model="form.updatedBy" placeholder="请输入更新人" />
|
|
</el-form-item>
|
|
<el-form-item label="更新时间" prop="updatedDt">
|
|
<el-date-picker clearable
|
|
v-model="form.updatedDt"
|
|
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 { listTask, cancelTask, delTask, addTask, updateTask } from "@/api/wms/agvTaskInfo";
|
|
|
|
export default {
|
|
name: "Task",
|
|
dicts:['agv_request_status','agv_request_type'],
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 【请填写功能名称】表格数据
|
|
taskList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
requestCode: null,
|
|
dictType: null,
|
|
json: null,
|
|
status: null,
|
|
message: null,
|
|
createdBy: null,
|
|
createdDt: null,
|
|
updatedBy: null,
|
|
updatedDt: null,
|
|
createdDtStart:null,
|
|
createdDtEnd:null
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询【请填写功能名称】列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
this.dateHandle();
|
|
listTask(this.queryParams).then(response => {
|
|
this.taskList = response.data.data;
|
|
this.total = response.data.recordsTotal;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
|
|
dateHandle(){
|
|
if(this.queryParams.createdDtEnd!=null)
|
|
{
|
|
this.queryParams.createdDtEnd=this.queryParams.createdDtEnd+" 23:59:59"
|
|
}
|
|
},
|
|
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
requestCode: null,
|
|
dictType: null,
|
|
json: null,
|
|
status: null,
|
|
message: null,
|
|
createdBy: null,
|
|
createdDt: null,
|
|
updatedBy: null,
|
|
updatedDt: null
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNo = 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) {
|
|
console.log("修改"+row.id)
|
|
this.reset();
|
|
const id = row.id || this.ids
|
|
getTask(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) {
|
|
updateTask(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addTask(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否确认删除【请填写功能名称】编号为"' + ids + '"的数据项?').then(function() {
|
|
return delTask(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.dateHandle()
|
|
this.download('agv/exportExcel', {
|
|
...this.queryParams
|
|
}, `AGV任务列表_${new Date().getTime()}.xlsx`)
|
|
},
|
|
|
|
/**
|
|
* 取消agv任务
|
|
*/
|
|
cancelTask(row){
|
|
this.$modal.confirm('是否确认取消任务单号为"' + row.requestCode + '"的数据项?').then(function() {
|
|
return cancelTask(row.requestCode);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("取消成功");
|
|
}).catch(() => {});
|
|
}
|
|
}
|
|
};
|
|
</script>
|