<template>
|
<div>
|
<a-card :bordered="false" :bodyStyle="tstyle">
|
|
<div class="table-page-search-wrapper" v-if="hasPerm('WmsContainer:page')">
|
<a-form layout="inline">
|
<a-row :gutter="48">
|
<a-col :md="8" :sm="24">
|
<a-form-item label="编号">
|
<a-input v-model="queryParam.containerCode" allow-clear placeholder="请输入编号" />
|
</a-form-item>
|
</a-col><a-col :md="8" :sm="24">
|
<a-form-item label="类型">
|
<a-select :allowClear="true" style="width: 100%" v-model="queryParam.containerType" placeholder="请选择类型">
|
<a-select-option v-for="(item, index) in containerTypeData" :key="index" :value="item.code">{{ item.name
|
}}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-col><template v-if="advanced"><a-col :md="8" :sm="24">
|
<a-form-item label="托盘状态">
|
<a-select :allowClear="true" style="width: 100%" v-model="queryParam.containerStatus"
|
placeholder="请选择托盘状态">
|
<a-select-option v-for="(item, index) in containerStatusData" :key="index" :value="item.code">{{
|
item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-col>
|
<!-- <a-col :md="8" :sm="24">
|
<a-form-item label="长度">
|
<a-input v-model="queryParam.specLength" allow-clear placeholder="请输入长度"/>
|
</a-form-item>
|
</a-col>
|
<a-col :md="8" :sm="24">
|
<a-form-item label="宽度">
|
<a-input v-model="queryParam.specWidth" allow-clear placeholder="请输入宽度"/>
|
</a-form-item>
|
</a-col><a-col :md="8" :sm="24">
|
<a-form-item label="托盘分类">
|
<a-select :allowClear="true" style="width: 100%" v-model="queryParam.containerCategory" placeholder="请选择托盘分类">
|
<a-select-option v-for="(item,index) in containerCategoryData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-col> -->
|
<!-- <a-col :md="8" :sm="24">
|
<a-form-item label="所属车间">
|
<a-select :allowClear="true" style="width: 100%" v-model="queryParam.workShopType" placeholder="请选择所属车间">
|
<a-select-option v-for="(item,index) in workShopTypeData" :key="index" :value="item.code">{{ item.name }}</a-select-option>
|
</a-select>
|
</a-form-item>
|
</a-col> -->
|
</template>
|
|
<a-col :md="8" :sm="24">
|
<span class="table-page-search-submitButtons">
|
<a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
|
<a-button style="margin-left: 8px" @click="() => queryParam = {}">重置</a-button>
|
<a @click="toggleAdvanced" style="margin-left: 8px"> {{ advanced ? '收起' : '展开' }}
|
<a-icon :type="advanced ? 'up' : 'down'" />
|
</a>
|
</span>
|
</a-col>
|
|
</a-row>
|
</a-form>
|
</div>
|
</a-card>
|
<a-card :bordered="false">
|
<s-table ref="table" :columns="columns" :data="loadData" :alert="true" :rowKey="(record) => record.id"
|
:rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }">
|
<template slot="operator" v-if="hasPerm('WmsContainer:add')">
|
<a-button type="info" v-if="hasPerm('sysExcelTemplate:importExcel')" icon="upload"
|
@click="$refs.excelForm.index()">
|
导入
|
</a-button>
|
<a-button type="info" v-if="hasPerm('wmsContainer:exportExcel')" icon="download" @click="wmsContainerToExcel()">
|
导出
|
</a-button>
|
<a-button type="primary" v-if="hasPerm('WmsContainer:add')" icon="plus"
|
@click="$refs.addForm.add()">新增</a-button>
|
</template>
|
<span slot="containerTypescopedSlots" slot-scope="text">
|
<a-tag
|
:color="text === '1' ? '#cd853f' : (text === '2' ? '#d3d3d3' : (text === '3' ? '#1e90ff' : '#696969'))">{{
|
'container_type'
|
| dictType(text) }}</a-tag>
|
</span>
|
<span slot="containerStatusscopedSlots" slot-scope="text">
|
<a-tag
|
:color="text === '1' ? '#daa520' : (text === '2' ? '#cd5c5c' : (text === '3' ? '#add8e6' : '#696969'))">{{
|
'container_status' | dictType(text) }}</a-tag>
|
</span>
|
<span slot="containerCategoryscopedSlots" slot-scope="text">
|
<a-tag :color="text === '1' ? '#00ffff' : (
|
text === '2' ? '#ffe4c4' : (
|
text === '3' ? '#8a2be2' : (
|
text === '4' ? '#5f9ea0' : (
|
text === '5' ? '#00008b' : '#696969'
|
)
|
)
|
)
|
)
|
">{{ 'container_category' | dictType(text) }}</a-tag>
|
</span>
|
<span slot="workShopTypescopedSlots" slot-scope="text">
|
{{ 'les_workshop_type' | dictType(text) }}
|
</span>
|
<span slot="action" slot-scope="text, record">
|
<a v-if="hasPerm('WmsContainer:edit')" @click="$refs.editForm.edit(record)">编辑</a>
|
<!-- <a-divider type="vertical" v-if="hasPerm('WmsContainer:edit') & hasPerm('WmsContainer:delete')"/> -->
|
<!-- <a-popconfirm v-if="hasPerm('WmsContainer:delete')" placement="topRight" title="确认删除?" @confirm="() => WmsContainerDelete(record)">
|
<a>删除</a>
|
</a-popconfirm> -->
|
</span>
|
</s-table>
|
<add-form ref="addForm" @ok="handleOk" />
|
<edit-form ref="editForm" @ok="handleOk" />
|
<excel-form ref="excelForm" @ok="handleOk" />
|
</a-card>
|
</div>
|
</template>
|
<script>
|
import { STable } from '@/components'
|
import { WmsContainerPage, WmsContainerDelete } from '@/api/modular/main/WmsContainerManage'
|
import { exportExcel } from '@/utils/exportToExcel'
|
import addForm from './addForm.vue'
|
import editForm from './editForm.vue'
|
import excelForm from './excelForm.vue'
|
export default {
|
components: {
|
STable,
|
addForm,
|
editForm,
|
excelForm
|
},
|
data() {
|
return {
|
advanced: false, // 高级搜索 展开/关闭
|
queryParam: {},
|
columns: [
|
{
|
title: '编号',
|
align: 'center',
|
dataIndex: 'containerCode'
|
},
|
{
|
title: '类型',
|
align: 'center',
|
dataIndex: 'containerType',
|
scopedSlots: { customRender: 'containerTypescopedSlots' }
|
},
|
{
|
title: '托盘状态',
|
align: 'center',
|
dataIndex: 'containerStatus',
|
scopedSlots: { customRender: 'containerStatusscopedSlots' }
|
},
|
{
|
title: '长度',
|
align: 'center',
|
dataIndex: 'specLength'
|
},
|
{
|
title: '宽度',
|
align: 'center',
|
dataIndex: 'specWidth'
|
},
|
{
|
title: '高度',
|
align: 'center',
|
dataIndex: 'specHeight'
|
},
|
// {
|
// title: '限长',
|
// align: 'center',
|
// dataIndex: 'limitLength'
|
// },
|
// {
|
// title: '限宽',
|
// align: 'center',
|
// dataIndex: 'limitWidth'
|
// },
|
// {
|
// title: '限高',
|
// align: 'center',
|
// dataIndex: 'limitHeight'
|
// },
|
// {
|
// title: '载重上限',
|
// align: 'center',
|
// dataIndex: 'maxWeight'
|
// }
|
// {
|
// title: '托盘分类',
|
// align: 'center',
|
// dataIndex: 'containerCategory',
|
// scopedSlots: { customRender: 'containerCategoryscopedSlots' }
|
// }
|
// ,{
|
// title: '所属车间',
|
// align: 'center',
|
// dataIndex: 'workShopType',
|
// scopedSlots: { customRender: 'workShopTypescopedSlots' }
|
// }
|
],
|
tstyle: { 'padding-bottom': '0px', 'margin-bottom': '10px' },
|
// 加载数据方法 必须为 Promise 对象
|
loadData: parameter => {
|
return WmsContainerPage(Object.assign(parameter, this.queryParam)).then((res) => {
|
res.data.rows = res.data.rows.map((_obj) => {
|
_obj.containerType = _obj.containerType.toString()
|
_obj.containerStatus = _obj.containerStatus.toString()
|
_obj.containerCategory = _obj.containerCategory.toString()
|
_obj.workShopType = _obj.workShopType.toString()
|
return _obj
|
})
|
return res.data
|
})
|
},
|
containerTypeData: [],
|
containerStatusData: [],
|
containerCategoryData: [],
|
workShopTypeData: [],
|
selectedRowKeys: [],
|
selectedRows: []
|
}
|
},
|
created() {
|
if (this.hasPerm('WmsContainer:edit') || this.hasPerm('WmsContainer:delete')) {
|
this.columns.push({
|
title: '操作',
|
width: '150px',
|
dataIndex: 'action',
|
scopedSlots: { customRender: 'action' }
|
})
|
}
|
const path = this.$route.path
|
const columnStr = window.localStorage.getItem(path)
|
if (columnStr) {
|
this.columns = JSON.parse(columnStr)
|
}
|
const containerTypeOption = this.$options
|
this.containerTypeData = containerTypeOption.filters['dictData']('container_type')
|
const containerStatusOption = this.$options
|
this.containerStatusData = containerStatusOption.filters['dictData']('container_status')
|
const containerCategoryOption = this.$options
|
this.containerCategoryData = containerCategoryOption.filters['dictData']('container_category')
|
const workShopTypeOption = this.$options
|
this.workShopTypeData = workShopTypeOption.filters['dictData']('les_workshop_type')
|
},
|
methods: {
|
/**
|
* 查询参数组装
|
*/
|
switchingDate() {
|
const obj = JSON.parse(JSON.stringify(this.queryParam))
|
return obj
|
},
|
WmsContainerDelete(record) {
|
WmsContainerDelete(record).then((res) => {
|
if (res.success) {
|
this.$message.success('删除成功')
|
this.$refs.table.refresh()
|
} else {
|
this.$message.error('删除失败') // + res.message
|
}
|
})
|
},
|
toggleAdvanced() {
|
this.advanced = !this.advanced
|
},
|
handleOk() {
|
this.$refs.table.refresh()
|
},
|
onSelectChange(selectedRowKeys, selectedRows) {
|
this.selectedRowKeys = selectedRowKeys
|
this.selectedRows = selectedRows
|
},
|
//导出
|
wmsContainerToExcel() {
|
let entozh = {}
|
const path = this.$route.path
|
JSON.parse(window.localStorage.getItem(path)).forEach(item => {
|
if (item.dataIndex != 'action' && item.checked) {
|
entozh[item.dataIndex] = item.title
|
}
|
})
|
WmsContainerPage(Object.assign({ pageSize: 100000, pageIndex: 1 }, this.queryParam)).then(res => {
|
res.data.rows.map(item => {
|
item.containerType = this.$options.filters['dictType']('container_type',item.containerType)
|
item.containerStatus = this.$options.filters['dictType']('container_status',item.containerStatus)
|
})
|
exportExcel(res.data.rows, entozh, "xlsx", "容器基础信息表")
|
})
|
|
}
|
}
|
}
|
</script>
|
<style lang="less">
|
.table-operator {
|
margin-bottom: 18px;
|
}
|
|
button {
|
margin-right: 8px;
|
}</style>
|