<template>
|
<a-card :bordered="false">
|
<!-- 查询区域 -->
|
<div class="table-page-search-wrapper">
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
<a-row :gutter="24">
|
<a-col
|
:md="5"
|
:sm="8"
|
>
|
<a-form-item label="仓库编号">
|
<a-select
|
show-search
|
:filter-option="filterOption"
|
placeholder="请输入仓库编号"
|
v-model="queryParam.warehouseId"
|
:options="warehouseOptions"
|
@change="warehouseChange"
|
></a-select>
|
</a-form-item>
|
</a-col>
|
<a-col
|
:md="5"
|
:sm="8"
|
>
|
<a-form-item label="货架编号">
|
<a-select
|
show-search
|
:filter-option="filterOption"
|
placeholder="请输入货架编号"
|
v-model="queryParam.goodsShelves"
|
:options="goodsShelvesOptions"
|
@change="goodsShelvesChange"
|
></a-select>
|
</a-form-item>
|
</a-col>
|
<a-col
|
:md="5"
|
:sm="8"
|
>
|
<a-form-item label="层数">
|
<a-select
|
show-search
|
:filter-option="filterOption"
|
placeholder="请输入层数"
|
v-model="queryParam.storey"
|
:options="storeyOptions"
|
></a-select>
|
</a-form-item>
|
</a-col>
|
|
<a-col :md="4" :sm="4">
|
<a-space>
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
<a-button type="primary" @click="searchReset" icon="reload">重置</a-button>
|
</a-space>
|
</a-col>
|
</a-row>
|
</a-form>
|
</div>
|
<!-- 查询区域-END -->
|
|
<!-- 操作按钮区域 -->
|
<div class="table-operator">
|
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
|
<!-- <a-button type="primary" icon="download" @click="handleExportXls('tms_goods_shelves_mark')">导出</a-button>-->
|
<!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
|
<!-- <a-button type="primary" icon="import">导入</a-button>-->
|
<!-- </a-upload>-->
|
<!-- 高级查询区域 -->
|
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
|
<!-- <a-dropdown v-if="selectedRowKeys.length > 0">-->
|
<!-- <a-menu slot="overlay">-->
|
<!-- <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>-->
|
<!-- </a-menu>-->
|
<!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
|
<!-- </a-dropdown>-->
|
</div>
|
|
<!-- table区域-begin -->
|
<div>
|
<!-- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">-->
|
<!-- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项-->
|
<!-- <a style="margin-left: 24px" @click="onClearSelected">清空</a>-->
|
<!-- </div>-->
|
|
<a-table
|
ref="table"
|
size="middle"
|
:scroll="{x:true}"
|
bordered
|
rowKey="id"
|
:columns="columns"
|
:dataSource="dataSource"
|
:pagination="ipagination"
|
:loading="loading"
|
:rowSelection="null"
|
class="j-table-force-nowrap"
|
@change="handleTableChange">
|
|
<span slot="action" slot-scope="text, record">
|
<a @click="handleDetail(record)">详情</a>
|
|
<a-divider type="vertical" />
|
<a-dropdown>
|
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
|
<a-menu slot="overlay">
|
<a-menu-item>
|
<a @click="handleEdit(record)">编辑</a>
|
</a-menu-item>
|
<a-menu-item>
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
|
<a>删除</a>
|
</a-popconfirm>
|
</a-menu-item>
|
</a-menu>
|
</a-dropdown>
|
</span>
|
|
</a-table>
|
</div>
|
|
<goods-shelves-mark-modal ref="modalForm" @ok="modalFormOk"></goods-shelves-mark-modal>
|
</a-card>
|
</template>
|
|
<script>
|
|
import '@/assets/less/TableExpand.less'
|
import { mixinDevice } from '@/utils/mixin'
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
import GoodsShelvesMarkModal from './modules/GoodsShelvesMarkModal'
|
import { getAction } from '../../api/manage'
|
|
export default {
|
name: 'GoodsShelvesMarkList',
|
mixins:[JeecgListMixin, mixinDevice],
|
components: {
|
GoodsShelvesMarkModal
|
},
|
data () {
|
return {
|
description: 'tms_goods_shelves_mark',
|
// 表头
|
columns: [
|
{
|
title: '#',
|
dataIndex: '',
|
key:'rowIndex',
|
width:60,
|
align:"center",
|
customRender:function (t,r,index) {
|
return parseInt(index)+1;
|
}
|
},
|
{
|
title:'仓库编号',
|
align:"center",
|
dataIndex: 'warehouseId',
|
customRender:function (text,r) {
|
return r.warehouseNum + '/' + r.warehouseName
|
}
|
},
|
{
|
title:'货架编号',
|
align:"center",
|
dataIndex: 'goodsShelves',
|
customRender:function (text,r) {
|
return r.goodsShelves + '/' + r.shelfName
|
}
|
},
|
{
|
title:'层数',
|
align:"center",
|
dataIndex: 'storey'
|
},
|
{
|
title:'品种(存放刀具品种信息)',
|
align:"center",
|
dataIndex: 'variety'
|
},
|
{
|
title:'创建人',
|
align:"center",
|
dataIndex: 'createBy'
|
},
|
{
|
title:'创建时间',
|
align:"center",
|
dataIndex: 'createTime'
|
},
|
{
|
title: '操作',
|
dataIndex: 'action',
|
align:"center",
|
fixed:"right",
|
width:147,
|
scopedSlots: { customRender: 'action' }
|
}
|
],
|
url: {
|
list: "/tms/goodsShelvesMark/list",
|
queryWarehouseDictList: '/tms/warehouse/queryWarehouseDictList',
|
queryGoodsShelvesDictList: '/tms/goodsShelves/queryGoodsShelvesDictList',
|
queryGoodsShelvesStoreyDictList: '/tms/goodsShelves/queryGoodsShelvesStoreyDictList',
|
delete: "/tms/goodsShelvesMark/delete",
|
deleteBatch: "/tms/goodsShelvesMark/deleteBatch",
|
exportXlsUrl: "/tms/goodsShelvesMark/exportXls",
|
importExcelUrl: "tms/goodsShelvesMark/importExcel",
|
|
},
|
warehouseId: '',
|
warehouseOptions: [],
|
goodsShelvesOptions: [],
|
storeyOptions: [],
|
dictOptions:{},
|
superFieldList:[],
|
}
|
},
|
created() {
|
this.getSuperFieldList();
|
getAction(this.url.queryWarehouseDictList, null).then((res)=>{
|
if(res.success){
|
this.warehouseOptions = res.result
|
}
|
})
|
},
|
computed: {
|
importExcelUrl: function(){
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
|
},
|
},
|
methods: {
|
searchReset() {
|
this.queryParam = {}
|
this.warehouseId = ''
|
this.goodsShelvesOptions = []
|
this.storeyOptions = []
|
this.loadData(1);
|
},
|
warehouseChange(warehouseId) {
|
this.goodsShelvesOptions = []
|
this.storeyOptions = []
|
this.warehouseId = warehouseId
|
getAction(this.url.queryGoodsShelvesDictList, {warehouseId: warehouseId}).then(res => {
|
if (res.success) {
|
this.goodsShelvesOptions = res.result
|
}
|
})
|
},
|
goodsShelvesChange(shelfNumber) {
|
this.storeyOptions = []
|
getAction(this.url.queryGoodsShelvesStoreyDictList, {
|
warehouseId: this.warehouseId,
|
shelfNumber: shelfNumber
|
}).then(res => {
|
if (res.success) {
|
this.storeyOptions = res.result
|
}
|
})
|
},
|
filterOption(input, option) {
|
return (
|
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
);
|
},
|
initDictConfig(){
|
},
|
getSuperFieldList(){
|
let fieldList=[];
|
fieldList.push({type:'string',value:'warehouseId',text:'仓库编号',dictCode:''})
|
fieldList.push({type:'string',value:'goodsShelves',text:'货架编号',dictCode:''})
|
fieldList.push({type:'string',value:'storey',text:'层数信息',dictCode:''})
|
fieldList.push({type:'string',value:'variety',text:'品种-标注存放刀具品种信息',dictCode:''})
|
fieldList.push({type:'string',value:'createBy',text:'创建人',dictCode:''})
|
fieldList.push({type:'date',value:'createTime',text:'创建时间'})
|
this.superFieldList = fieldList
|
}
|
}
|
}
|
</script>
|
<style scoped>
|
@import '~@assets/less/common.less';
|
</style>
|