429 lines
15 KiB
Vue
429 lines
15 KiB
Vue
|
|
<template>
|
|||
|
|
<div class="app-container">
|
|||
|
|
<!--工具栏-->
|
|||
|
|
<div class="head-container">
|
|||
|
|
<div v-if="crud.props.searchToggle">
|
|||
|
|
<!-- 搜索 -->
|
|||
|
|
<label class="el-form-item-label">代码</label>
|
|||
|
|
<el-input v-model="query.code" clearable placeholder="代码" style="width: 120px;" class="filter-item"
|
|||
|
|
@keyup.enter.native="crud.toQuery"/>
|
|||
|
|
<label class="el-form-item-label">名称</label>
|
|||
|
|
<el-input v-model="query.name" clearable placeholder="名称" style="width: 120px;" class="filter-item"
|
|||
|
|
@keyup.enter.native="crud.toQuery"/>
|
|||
|
|
<label class="el-form-item-label">状态</label>
|
|||
|
|
<el-select
|
|||
|
|
v-model="query.status"
|
|||
|
|
clearable
|
|||
|
|
size="small"
|
|||
|
|
placeholder="状态"
|
|||
|
|
class="filter-item"
|
|||
|
|
style="width: 100px"
|
|||
|
|
@change="crud.toQuery"
|
|||
|
|
>
|
|||
|
|
<el-option
|
|||
|
|
v-for="item in dict.use_status"
|
|||
|
|
:key="item.id"
|
|||
|
|
:label="item.label"
|
|||
|
|
:value="item.value"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
<label class="el-form-item-label">库区</label>
|
|||
|
|
<el-select v-model="query.areaName" style="width: 120px;" clearable placeholder="请选择"
|
|||
|
|
@keyup.enter.native="crud.toQuery" class="filter-item" @change="crud.toQuery">
|
|||
|
|
<el-option
|
|||
|
|
v-for="area in areas"
|
|||
|
|
:key="area.id"
|
|||
|
|
:label="area.name"
|
|||
|
|
:value="area.name"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
|
|||
|
|
<label class="el-form-item-label">冷却区-小库区编号</label>
|
|||
|
|
<el-select
|
|||
|
|
v-model="query.beatCode"
|
|||
|
|
clearable
|
|||
|
|
size="small"
|
|||
|
|
placeholder="小库区编号"
|
|||
|
|
class="filter-item"
|
|||
|
|
style="width: 100px"
|
|||
|
|
@change="crud.toQuery"
|
|||
|
|
>
|
|||
|
|
<el-option
|
|||
|
|
v-for="item in dict.smallArea"
|
|||
|
|
:key="item.id"
|
|||
|
|
:label="item.label"
|
|||
|
|
:value="item.value"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
<rrOperation :crud="crud"/>
|
|||
|
|
</div>
|
|||
|
|
<!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
|
|||
|
|
<crudOperation :permission="permission" :tableKey="this.$options.name">
|
|||
|
|
<el-upload
|
|||
|
|
class="upload-demo"
|
|||
|
|
slot='right'
|
|||
|
|
style="float: right;padding-left: 5px"
|
|||
|
|
:headers="headers"
|
|||
|
|
action="/api/point/import_point"
|
|||
|
|
:file-list="fileList"
|
|||
|
|
:on-error="handleErr"
|
|||
|
|
:on-success=" (response, file, fileList) => { return handleSuccess(response, file, fileList,crud);}"
|
|||
|
|
:show-file-list="true">
|
|||
|
|
<el-button size="mini" type="success" icon="el-icon-upload2">导入</el-button>
|
|||
|
|
</el-upload>
|
|||
|
|
|
|||
|
|
<el-button
|
|||
|
|
slot="right"
|
|||
|
|
class="filter-item"
|
|||
|
|
size="mini"
|
|||
|
|
type="danger"
|
|||
|
|
icon="el-icon-s-order"
|
|||
|
|
@click="MultiAdjust"
|
|||
|
|
>批量调整
|
|||
|
|
</el-button>
|
|||
|
|
</crudOperation>
|
|||
|
|
|
|||
|
|
<!-- 批量调整界面-->
|
|||
|
|
<multiAdjust ref="multiAdjust"/>
|
|||
|
|
<!-- 呼叫空车 -->
|
|||
|
|
<el-dialog title="地标点绑定" :visible.sync="callEmptyCarStatus" width="400px">
|
|||
|
|
<el-form ref="from1" :model="from1" :rules="rules" size="small" label-width="80px">
|
|||
|
|
<el-form-item label="地标点" prop="pointCode">
|
|||
|
|
<el-input v-model="from1.pointCode" style="width: 180px;"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
</el-form>
|
|||
|
|
<div slot="footer" class="dialog-footer">
|
|||
|
|
<el-button @click="callEmptyCarStatus = false">取 消</el-button>
|
|||
|
|
<el-button type="primary" @click="callEmpty()">确 定</el-button>
|
|||
|
|
</div>
|
|||
|
|
</el-dialog>
|
|||
|
|
<!-- 空车入库 -->
|
|||
|
|
<el-dialog title="空车入库" :visible.sync="EmptyCarBackStatus" width="400px">
|
|||
|
|
<el-form ref="fromBack" :model="fromBack" :rules="rules" size="small" label-width="80px">
|
|||
|
|
<el-form-item label="地标点" prop="pointCode">
|
|||
|
|
<el-input v-model="fromBack.pointCode" style="width: 180px;"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
</el-form>
|
|||
|
|
<div slot="footer" class="dialog-footer">
|
|||
|
|
<el-button @click="EmptyCarBackStatus = false">取 消</el-button>
|
|||
|
|
<el-button type="primary" @click="callStockBackIn()">确 定</el-button>
|
|||
|
|
</div>
|
|||
|
|
</el-dialog>
|
|||
|
|
<viewFullStockIn ref="fullStockIn"/>
|
|||
|
|
<viewFullStockOut ref="fullStockOut"/>
|
|||
|
|
<!--表单组件-->
|
|||
|
|
<el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0"
|
|||
|
|
:title="crud.status.title" width="500px">
|
|||
|
|
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="80px">
|
|||
|
|
|
|||
|
|
<el-form-item label="代码" prop="code">
|
|||
|
|
<el-input v-model="form.code" style="width: 370px;"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="名称">
|
|||
|
|
<el-input v-model="form.name" style="width: 370px;"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
<el-form-item label="类型" prop="type">
|
|||
|
|
<el-select v-model="form.type" filterable placeholder="请选择" style="width: 370px;"
|
|||
|
|
:default-first-option="true">
|
|||
|
|
<el-option
|
|||
|
|
v-for="item in dict.point_type"
|
|||
|
|
:key="item.id"
|
|||
|
|
:label="item.label"
|
|||
|
|
:value="item.value"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
</el-form-item>
|
|||
|
|
|
|||
|
|
<el-form-item label="库区" prop="area">
|
|||
|
|
<el-select v-model="form.area" value-key="id" filterable placeholder="请选择" style="width: 370px;">
|
|||
|
|
<el-option
|
|||
|
|
v-for="item in areas"
|
|||
|
|
:key="item.id"
|
|||
|
|
:label="item.name"
|
|||
|
|
:value="item"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
</el-form-item>
|
|||
|
|
|
|||
|
|
<el-form-item label="状态">
|
|||
|
|
<el-select
|
|||
|
|
v-model="form.status"
|
|||
|
|
clearable
|
|||
|
|
size="small"
|
|||
|
|
placeholder="状态"
|
|||
|
|
class="filter-item"
|
|||
|
|
style="width: 370px"
|
|||
|
|
>
|
|||
|
|
<el-option
|
|||
|
|
v-for="item in dict.use_status"
|
|||
|
|
:key="item.id"
|
|||
|
|
:label="item.label"
|
|||
|
|
:value="item.value"
|
|||
|
|
/>
|
|||
|
|
</el-select>
|
|||
|
|
</el-form-item>
|
|||
|
|
|
|||
|
|
<el-form-item label="描述">
|
|||
|
|
<el-input type="textarea" v-model="form.description" style="width: 370px;"/>
|
|||
|
|
</el-form-item>
|
|||
|
|
|
|||
|
|
</el-form>
|
|||
|
|
<div slot="footer" class="dialog-footer">
|
|||
|
|
<el-button @click="crud.cancelCU">取消</el-button>
|
|||
|
|
<el-button :loading="crud.status.cu === 2" type="primary" @click="crud.submitCU">确认</el-button>
|
|||
|
|
</div>
|
|||
|
|
</el-dialog>
|
|||
|
|
<!--表格渲染-->
|
|||
|
|
<el-table ref="table" height="66vh" v-loading="crud.loading" :data="crud.data" size="mini" style="width: 100%;"
|
|||
|
|
@selection-change="crud.selectionChangeHandler">
|
|||
|
|
<el-table-column type="selection" width="55"/>
|
|||
|
|
<el-table-column prop="code" label="代码"/>
|
|||
|
|
<el-table-column prop="name" label="名称"/>
|
|||
|
|
<el-table-column prop="type" label="类型">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
{{ dict.label.point_type[scope.row.type] }}
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column :show-overflow-tooltip="true" prop="status" label="状态">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
{{ dict.label.use_status[scope.row.status] }}
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column prop="description" label="存储类型"/>
|
|||
|
|
<el-table-column :show-overflow-tooltip="true" prop="areaName" label="库区">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<div>{{ scope.row.area.name }}</div>
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column prop="beatCode" label="冷却区-小库区编号"/>
|
|||
|
|
<el-table-column :show-overflow-tooltip="true" prop="deptName" label="仓库">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<div>{{ scope.row.dept.name }}</div>
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column label="启用" align="center" prop="enabled">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<el-switch
|
|||
|
|
v-model="scope.row.enabled"
|
|||
|
|
active-color="#409EFF"
|
|||
|
|
inactive-color="#F56C6C"
|
|||
|
|
@change="changeEnabled(scope.row, scope.row.enabled)"
|
|||
|
|
/>
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
<el-table-column v-if="checkPer(['admin','point:edit'])" label="操作" align="center">
|
|||
|
|
<template slot-scope="scope">
|
|||
|
|
<udOperation
|
|||
|
|
:data="scope.row"
|
|||
|
|
:permission="permission"
|
|||
|
|
:show-dle="false"
|
|||
|
|
/>
|
|||
|
|
</template>
|
|||
|
|
</el-table-column>
|
|||
|
|
</el-table>
|
|||
|
|
<!--分页组件-->
|
|||
|
|
<div style="float: right;">
|
|||
|
|
<pagination/>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
import crudPoint, {pointCallStock} from '@/api/point'
|
|||
|
|
import CRUD, {presenter, header, form, crud} from '@crud/crud'
|
|||
|
|
import crudOperation from '@crud/CRUD.operation'
|
|||
|
|
import udOperation from '@crud/UD.operation'
|
|||
|
|
import rrOperation from '@crud/RR.operation'
|
|||
|
|
import pagination from '@crud/Pagination'
|
|||
|
|
import {getAres, getAresXl} from '@/api/area'
|
|||
|
|
import Treeselect from '@riophae/vue-treeselect'
|
|||
|
|
import {getToken} from "@/utils/auth";
|
|||
|
|
import DonMessage from "@/utils/message";
|
|||
|
|
import viewFullStockIn from '@/views/base-data/point/fullStockIn.vue';
|
|||
|
|
import viewFullStockOut from '@/views/base-data/point/fullStockOut.vue';
|
|||
|
|
import pointUrl from '@/api/point'
|
|||
|
|
import multiAdjust from "@/views/base-data/point/multiAdjust.vue";
|
|||
|
|
|
|||
|
|
const defaultForm = {id: null, status: 'FREE', enabled: 1, code: null, name: null, description: null, area: null}
|
|||
|
|
export default {
|
|||
|
|
name: 'Point',
|
|||
|
|
components: {
|
|||
|
|
multiAdjust,
|
|||
|
|
Treeselect, pagination, crudOperation, udOperation, rrOperation, viewFullStockIn, viewFullStockOut
|
|||
|
|
},
|
|||
|
|
mixins: [presenter(), header(), form(defaultForm), crud()],
|
|||
|
|
dicts: ['base_staus', 'use_status', 'point_type', 'agv_on_off', 'smallArea'],
|
|||
|
|
cruds() {
|
|||
|
|
return CRUD({
|
|||
|
|
title: '点位', url: 'api/point', idField: 'id', sort: 'id,desc', crudMethod: {...crudPoint},
|
|||
|
|
optShow: {
|
|||
|
|
add: true,
|
|||
|
|
edit: false,
|
|||
|
|
del: false,
|
|||
|
|
reset: true,
|
|||
|
|
download: true
|
|||
|
|
},
|
|||
|
|
queryOnPresenterCreated: true
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
data() {
|
|||
|
|
return {
|
|||
|
|
//地标点数据
|
|||
|
|
fileList: [],
|
|||
|
|
from1: [],
|
|||
|
|
fromBack: [],
|
|||
|
|
pointListData: [],
|
|||
|
|
headers: {'Authorization': getToken()},
|
|||
|
|
queryTypeOptions: [
|
|||
|
|
{key: 'code', display_name: '代码'},
|
|||
|
|
{key: 'name', display_name: '名称'},
|
|||
|
|
{key: 'status', display_name: '状态'},
|
|||
|
|
{key: 'beatCode', display_name: '区域编码'},
|
|||
|
|
{key: 'areaCode', display_name: '仓库'},
|
|||
|
|
{key: 'enabled', display_name: '启用'}
|
|||
|
|
],
|
|||
|
|
callStock: {
|
|||
|
|
pointCode: '',
|
|||
|
|
agvScene: 'ZC'
|
|||
|
|
},
|
|||
|
|
callStockBack: {
|
|||
|
|
pointCode: '',
|
|||
|
|
agvScene: 'ZC'
|
|||
|
|
},
|
|||
|
|
areas: [],
|
|||
|
|
permission: {
|
|||
|
|
add: ['admin', 'point:add'],
|
|||
|
|
edit: ['admin', 'point:edit'],
|
|||
|
|
del: ['admin', 'point:del']
|
|||
|
|
},
|
|||
|
|
rules: {
|
|||
|
|
code: [
|
|||
|
|
{required: true, message: '代码不能为空', trigger: 'blur'}
|
|||
|
|
],
|
|||
|
|
type: [
|
|||
|
|
{required: true, message: '类型不能为空', trigger: 'blur'}
|
|||
|
|
],
|
|||
|
|
area: [
|
|||
|
|
{required: true, message: '库区不能为空', trigger: 'blur'}
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
//呼叫空车的弹出按钮
|
|||
|
|
callEmptyCarStatus: false,
|
|||
|
|
EmptyCarBackStatus: false,
|
|||
|
|
//表单数据
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
mounted() {
|
|||
|
|
this.getArea()
|
|||
|
|
//获取点位表的数据
|
|||
|
|
this.getPointListData();
|
|||
|
|
},
|
|||
|
|
methods: {
|
|||
|
|
handleSuccess(response, file, fileList, crud) {
|
|||
|
|
let myError = response.toString();//转字符串
|
|||
|
|
this.crud.notify(response['message'], CRUD.NOTIFICATION_TYPE.SUCCESS);
|
|||
|
|
crud.toQuery()
|
|||
|
|
},
|
|||
|
|
handleErr(err, file, fileList) {
|
|||
|
|
let myError = err.toString();//转字符串
|
|||
|
|
myError = myError.replace("Error: ", "") // 去掉前面的" Error: "
|
|||
|
|
myError = JSON.parse(myError);//转对象
|
|||
|
|
this.crud.notify(myError['message'], CRUD.NOTIFICATION_TYPE.ERROR);
|
|||
|
|
},
|
|||
|
|
// 钩子:在获取表格数据之前执行,false 则代表不获取数据
|
|||
|
|
[CRUD.HOOK.beforeRefresh]() {
|
|||
|
|
return true
|
|||
|
|
},
|
|||
|
|
// 改变状态
|
|||
|
|
changeEnabled(data, val) {
|
|||
|
|
this.$confirm('此操作将 "' + this.dict.label.base_staus[val] + ', 是否继续?', '提示', {
|
|||
|
|
confirmButtonText: '确定',
|
|||
|
|
cancelButtonText: '取消',
|
|||
|
|
type: 'warning'
|
|||
|
|
}).then(() => {
|
|||
|
|
crudPoint.edit(data).then(res => {
|
|||
|
|
this.crud.notify(this.dict.label.base_staus[val] + '成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
|
|||
|
|
}).catch(() => {
|
|||
|
|
data.enabled = !data.enabled
|
|||
|
|
})
|
|||
|
|
}).catch(() => {
|
|||
|
|
data.enabled = !data.enabled
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
getArea() {
|
|||
|
|
getAres({size: 50}).then(res => {
|
|||
|
|
this.areas = res.content.map(function (obj) {
|
|||
|
|
if (obj.hasChildren) {
|
|||
|
|
obj.children = null
|
|||
|
|
}
|
|||
|
|
return obj
|
|||
|
|
})
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
//呼叫空车
|
|||
|
|
callEmpty() {
|
|||
|
|
this.callStock.pointCode = this.from1.pointCode
|
|||
|
|
this.callStock.agvScene = "ZC"
|
|||
|
|
pointUrl.pointCallStock(this.callStock).then(res => {
|
|||
|
|
this.callEmptyCarStatus = false;
|
|||
|
|
this.crud.notify("呼叫成功", CRUD.NOTIFICATION_TYPE.SUCCESS);
|
|||
|
|
}).catch(e => {
|
|||
|
|
this.crud.notify("呼叫失败", CRUD.NOTIFICATION_TYPE.ERROR);
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
//空车入库
|
|||
|
|
callStockBackIn() {
|
|||
|
|
this.callStockBack.pointCode = this.fromBack.pointCode
|
|||
|
|
this.callStockBack.agvScene = "ZC"
|
|||
|
|
pointUrl.pointStockBack(this.callStockBack).then(res => {
|
|||
|
|
this.EmptyCarBackStatus = false;
|
|||
|
|
this.crud.notify("呼叫成功", CRUD.NOTIFICATION_TYPE.SUCCESS);
|
|||
|
|
}).catch(e => {
|
|||
|
|
this.crud.notify("呼叫失败", CRUD.NOTIFICATION_TYPE.ERROR);
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
//获取点位表的数据
|
|||
|
|
getPointListData() {
|
|||
|
|
crudPoint.queryPointList({}).then(res => {
|
|||
|
|
for (const re of res) {
|
|||
|
|
if (re.status === "USED" && re.area.name === "轴承座空车区") {
|
|||
|
|
this.pointListData.push(re);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}).catch(e => {
|
|||
|
|
this.crud.notify("点位表数据获取失败", CRUD.NOTIFICATION_TYPE.ERROR);
|
|||
|
|
})
|
|||
|
|
},
|
|||
|
|
//满车入库
|
|||
|
|
showFullStockIn(parent) {
|
|||
|
|
this.$refs.fullStockIn.dialogVisible = true
|
|||
|
|
this.$refs.fullStockIn.stockInClick(parent)
|
|||
|
|
},
|
|||
|
|
//呼叫满车出库
|
|||
|
|
showFullStockOut(parent) {
|
|||
|
|
this.$refs.fullStockOut.dialogVisible = true
|
|||
|
|
this.$refs.fullStockOut.stockOutClick(parent)
|
|||
|
|
},
|
|||
|
|
//呼叫空车的弹出框的触发
|
|||
|
|
callEmptyCarStatusOffOn(obj) {
|
|||
|
|
this.callEmptyCarStatus = true;
|
|||
|
|
this.from1.pointCode = obj.code;
|
|||
|
|
},
|
|||
|
|
//空车入库
|
|||
|
|
emptyCarBack(obj) {
|
|||
|
|
this.EmptyCarBackStatus = true;
|
|||
|
|
this.fromBack.pointCode = obj.code;
|
|||
|
|
},
|
|||
|
|
//批量调整
|
|||
|
|
MultiAdjust() {
|
|||
|
|
this.$refs.multiAdjust.dialog = true;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style scoped>
|
|||
|
|
|
|||
|
|
</style>
|