|
1
2
3
4
5
6
7
8
|
<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 :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="容器类型">
|
|
9
10
11
12
13
14
15
16
17
18
|
<a-select
show-search
placeholder="请选择容器类型"
option-filter-prop="children"
v-model="queryParam.containerTypeCode"
>
<a-select-option v-for="item in containerTypeList" :key="item.name" :value="item.code">
{{ item.name }}
</a-select-option>
</a-select>
|
|
19
20
21
22
23
24
25
|
</a-form-item>
</a-col>
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="物料编码">
<a-input placeholder="请输入物料编码" v-model="queryParam.materialCode"></a-input>
</a-form-item>
</a-col>
|
|
26
27
28
29
30
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<a-form-item label="是否可用">
<j-dict-select-tag placeholder="请选择是否可用" v-model="queryParam.enable" dictCode="enable_status" />
</a-form-item>
</a-col>
|
|
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
|
|
44
|
<a-button @click="handleAdd" v-has="'containerCapacity:add'" type="primary" icon="plus">新增</a-button>
|
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<a-button
v-has="'containerCapacity:export'"
type="primary"
icon="download"
@click="handleExportXls('容器容量管理')"
>
导出
</a-button>
<a-upload
v-has="'containerCapacity:import'"
name="file"
:showUploadList="false"
:multiple="false"
:headers="tokenHeader"
:action="importExcelUrl"
@change="handleImportExcel"
>
|
|
62
63
64
|
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
65
|
<a-menu slot="overlay" v-has="'containerCapacity:deleteBatch'">
|
|
66
|
<a-menu-item key="1" @click="batchDel">
|
|
67
|
<a-icon type="delete" />
|
|
68
69
|
删除
</a-menu-item>
|
|
70
|
</a-menu>
|
|
71
72
73
|
<a-button style="margin-left: 8px">
批量操作
<a-icon type="down" />
|
|
74
|
</a-button>
|
|
75
76
77
78
79
80
|
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
81
82
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择
<a style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
|
|
83
84
85
86
87
88
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
|
|
89
|
:scroll="{ x: true }"
|
|
90
91
92
93
94
95
|
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
|
|
96
|
:rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
|
97
|
class="j-table-force-nowrap"
|
|
98
99
100
101
102
103
104
|
@change="handleTableChange"
>
<span slot="containerTypeCode" slot-scope="containerTypeCode">
<a-tag :key="containerTypeCode" color="pink">
{{ solutionContainerType(containerTypeCode) }}
</a-tag>
</span>
|
|
105
106
107
108
109
110
|
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
</template>
<template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
|
|
111
112
113
114
115
116
117
|
<img
v-else
:src="getImgView(text)"
height="25px"
alt=""
style="max-width:80px;font-size: 12px;font-style: italic;"
/>
|
|
118
119
120
|
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
|
|
121
|
<a-button v-else :ghost="true" type="primary" icon="download" size="small" @click="downloadFile(text)">
|
|
122
123
124
125
|
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
|
|
126
|
<a v-has="'containerCapacity:edit'" @click="handleEdit(record)">编辑<a-divider type="vertical"/></a>
|
|
127
|
<a-dropdown>
|
|
128
|
<a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
|
|
129
130
131
132
|
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
|
|
133
|
<a-menu-item v-has="'containerCapacity:delete'">
|
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<container-capacity-modal ref="modalForm" @ok="modalFormOk"></container-capacity-modal>
</a-card>
</template>
<script>
|
|
149
|
import '@/assets/less/TableExpand.less'
|
|
150
151
|
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
152
|
import ContainerCapacityModal from './modules/ContainerCapacityModal'
|
|
153
154
|
import { filterMultiDictText } from '@/components/dict/JDictSelectUtil'
import { getZoneList, getContainerTypeList } from '@/api/api'
|
|
155
|
|
|
156
157
158
159
160
161
162
163
164
|
export default {
name: 'ContainerCapacityList',
mixins: [JeecgListMixin, mixinDevice],
components: {
ContainerCapacityModal
},
data() {
return {
description: '容器容量管理管理页面',
|
|
165
|
containerTypeList: [],
|
|
166
167
168
169
170
171
172
|
// 表头
columns: [
{
title: '#',
dataIndex: '',
key: 'rowIndex',
width: 60,
|
|
173
174
175
|
align: 'center',
customRender: function(t, r, index) {
return parseInt(index) + 1
|
|
176
177
|
}
},
|
|
178
179
|
{
title: '容器类型',
|
|
180
181
182
183
|
align: 'center',
dataIndex: 'containerTypeCode',
key: 'containerTypeCode',
scopedSlots: { customRender: 'containerTypeCode' }
|
|
184
185
186
|
},
{
title: '物料编码',
|
|
187
|
align: 'center',
|
|
188
189
190
191
|
dataIndex: 'materialCode'
},
{
title: '物料名称',
|
|
192
|
align: 'center',
|
|
193
194
195
196
|
dataIndex: 'materialName'
},
{
title: '物料单位',
|
|
197
|
align: 'center',
|
|
198
199
200
201
|
dataIndex: 'materialUnit'
},
{
title: '存放数量',
|
|
202
|
align: 'center',
|
|
203
204
205
206
|
dataIndex: 'qty'
},
{
title: '是否可用',
|
|
207
|
align: 'center',
|
|
208
209
210
211
|
dataIndex: 'enable_dictText'
},
{
title: '创建人',
|
|
212
|
align: 'center',
|
|
213
214
215
216
|
dataIndex: 'createBy'
},
{
title: '创建日期',
|
|
217
|
align: 'center',
|
|
218
219
220
221
|
dataIndex: 'createTime'
},
{
title: '更新人',
|
|
222
|
align: 'center',
|
|
223
224
225
226
|
dataIndex: 'updateBy'
},
{
title: '更新日期',
|
|
227
|
align: 'center',
|
|
228
229
230
231
232
|
dataIndex: 'updateTime'
},
{
title: '操作',
dataIndex: 'action',
|
|
233
234
|
align: 'center',
fixed: 'right',
|
|
235
|
width: 147,
|
|
236
|
scopedSlots: { customRender: 'action' }
|
|
237
238
239
|
}
],
url: {
|
|
240
241
242
243
244
|
list: '/config/containerCapacity/list',
delete: '/config/containerCapacity/delete',
deleteBatch: '/config/containerCapacity/deleteBatch',
exportXlsUrl: '/config/containerCapacity/exportXls',
importExcelUrl: 'config/containerCapacity/importExcel'
|
|
245
246
|
},
dictOptions: {},
|
|
247
|
superFieldList: []
|
|
248
249
250
|
}
},
created() {
|
|
251
252
|
this.getSuperFieldList()
this.loadFrom()
|
|
253
254
|
},
computed: {
|
|
255
256
257
|
importExcelUrl: function() {
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
}
|
|
258
259
|
},
methods: {
|
|
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
|
initDictConfig() {},
solutionContainerType(value) {
var actions = []
Object.keys(this.containerTypeList).some(key => {
if (this.containerTypeList[key].code == '' + value) {
actions.push(this.containerTypeList[key].name)
return true
}
})
return actions.join('')
},
loadFrom() {
getContainerTypeList().then(res => {
if (res.success) {
this.containerTypeList = res.result
}
})
|
|
277
|
},
|
|
278
|
getSuperFieldList() {
|
|
279
280
281
282
283
284
285
286
287
288
289
290
291
|
let fieldList = []
fieldList.push({ type: 'string', value: 'containerTypeCode', text: '容器类型', dictCode: '' })
fieldList.push({ type: 'string', value: 'warehouseCode', text: '仓库编码', dictCode: '' })
fieldList.push({ type: 'string', value: 'companyCode', text: '货主', dictCode: '' })
fieldList.push({ type: 'string', value: 'materialCode', text: '物料编码', dictCode: '' })
fieldList.push({ type: 'string', value: 'materialName', text: '物料名称', dictCode: '' })
fieldList.push({ type: 'string', value: 'materialUnit', text: '物料单位', dictCode: '' })
fieldList.push({ type: 'BigDecimal', value: 'qty', text: '存放数量', dictCode: '' })
fieldList.push({ type: 'int', value: 'enable', text: '是否可用', dictCode: 'enable_status' })
fieldList.push({ type: 'string', value: 'createBy', text: '创建人', dictCode: '' })
fieldList.push({ type: 'datetime', value: 'createTime', text: '创建日期' })
fieldList.push({ type: 'string', value: 'updateBy', text: '更新人', dictCode: '' })
fieldList.push({ type: 'datetime', value: 'updateTime', text: '更新日期' })
|
|
292
|
this.superFieldList = fieldList
|
|
293
294
|
}
}
|
|
295
|
}
|
|
296
297
|
</script>
<style scoped>
|
|
298
|
@import '~@assets/less/common.less';
|
|
299
|
</style>
|