|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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="货主编码">
<a-input placeholder="请输入货主编码" v-model="queryParam.code"></a-input>
</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.name"></a-input>
</a-form-item>
</a-col>
<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>
<a @click="handleToggleSearch" style="margin-left: 8px">
{{ toggleSearchStatus ? '收起' : '展开' }}
|
易文鹏
authored
|
23
|
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
|
|
24
25
26
27
28
29
30
31
32
33
|
</a>
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
|
|
34
|
<a-button @click="handleAdd" v-has="'company:add'" type="primary" icon="plus">新增</a-button>
|
|
35
|
<a-button v-has="'company:export'" type="primary" icon="download" @click="handleExportXls('货主')">导出</a-button>
|
|
36
37
38
39
40
41
42
43
44
|
<a-upload
v-has="'company:import'"
name="file"
:showUploadList="false"
:multiple="false"
:headers="tokenHeader"
:action="importExcelUrl"
@change="handleImportExcel"
>
|
|
45
46
47
|
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
48
|
<a-menu slot="overlay" v-has="'company:deleteBatch'">
|
|
49
|
<a-menu-item key="1" @click="batchDel">
|
易文鹏
authored
|
50
|
<a-icon type="deleteBatch"/>
|
|
51
52
|
删除
</a-menu-item>
|
|
53
|
</a-menu>
|
|
54
55
|
<a-button style="margin-left: 8px">
批量操作
|
易文鹏
authored
|
56
|
<a-icon type="down"/>
|
|
57
|
</a-button>
|
|
58
|
</a-dropdown>
|
易文鹏
authored
|
59
60
|
<j-super-query :fieldList="superFieldList" v-has="'company:superQuery'" @handleSuperQuery="handleSuperQuery"/>
|
|
61
62
63
64
65
|
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
66
67
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择
<a style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
|
|
68
69
70
71
72
73
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
|
|
74
|
:scroll="{ x: true }"
|
|
75
76
77
78
79
80
|
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
|
|
81
|
:rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
|
|
82
|
class="j-table-force-nowrap"
|
|
83
84
|
@change="handleTableChange"
>
|
|
85
86
87
88
89
|
<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>
|
|
90
91
92
93
94
95
96
|
<img
v-else
:src="getImgView(text)"
height="25px"
alt=""
style="max-width:80px;font-size: 12px;font-style: italic;"
/>
|
|
97
98
99
|
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
|
|
100
|
<a-button v-else :ghost="true" type="primary" icon="download" size="small" @click="downloadFile(text)">
|
|
101
102
103
104
105
|
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
|
易文鹏
authored
|
106
|
<a v-has="'company:edit'" @click="handleEdit(record)">编辑<a-divider type="vertical"/></a>
|
|
107
|
<a-dropdown>
|
|
108
|
<a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
|
|
109
110
111
112
|
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
|
|
113
|
<a-menu-item v-has="'company:delete'">
|
|
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<company-modal ref="modalForm" @ok="modalFormOk"></company-modal>
</a-card>
</template>
<script>
|
|
129
|
import '@/assets/less/TableExpand.less'
|
易文鹏
authored
|
130
131
|
import {mixinDevice} from '@/utils/mixin'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
|
|
132
|
import CompanyModal from './modules/CompanyModal'
|
|
133
|
|
|
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
export default {
name: 'CompanyList',
mixins: [JeecgListMixin, mixinDevice],
components: {
CompanyModal
},
data() {
return {
description: '货主管理页面',
// 表头
columns: [
{
title: '#',
dataIndex: '',
key: 'rowIndex',
width: 60,
|
|
150
|
align: 'center',
|
易文鹏
authored
|
151
|
customRender: function (t, r, index) {
|
|
152
|
return parseInt(index) + 1
|
|
153
154
|
}
},
|
|
155
156
|
{
title: '货主编码',
|
|
157
|
align: 'center',
|
|
158
159
160
161
|
dataIndex: 'code'
},
{
title: '货主名称',
|
|
162
|
align: 'center',
|
|
163
164
165
166
|
dataIndex: 'name'
},
{
title: '地址',
|
|
167
|
align: 'center',
|
|
168
169
170
171
|
dataIndex: 'address'
},
{
title: '区县',
|
|
172
|
align: 'center',
|
|
173
174
175
176
|
dataIndex: 'district'
},
{
title: '城市',
|
|
177
|
align: 'center',
|
|
178
179
180
181
|
dataIndex: 'city'
},
{
title: '省份',
|
|
182
|
align: 'center',
|
|
183
184
185
186
|
dataIndex: 'province'
},
{
title: '国家',
|
|
187
|
align: 'center',
|
|
188
189
190
191
|
dataIndex: 'country'
},
{
title: '邮编',
|
|
192
|
align: 'center',
|
|
193
194
195
196
|
dataIndex: 'postalcode'
},
{
title: '联系人',
|
|
197
|
align: 'center',
|
|
198
199
200
201
|
dataIndex: 'attentionto'
},
{
title: '联系电话',
|
|
202
|
align: 'center',
|
|
203
204
205
206
207
|
dataIndex: 'phonenum'
},
{
title: '操作',
dataIndex: 'action',
|
|
208
209
|
align: 'center',
fixed: 'right',
|
|
210
|
width: 147,
|
易文鹏
authored
|
211
|
scopedSlots: {customRender: 'action'}
|
|
212
213
214
|
}
],
url: {
|
|
215
216
217
218
219
|
list: '/config/company/list',
delete: '/config/company/delete',
deleteBatch: '/config/company/deleteBatch',
exportXlsUrl: '/config/company/exportXls',
importExcelUrl: 'config/company/importExcel'
|
|
220
221
|
},
dictOptions: {},
|
|
222
|
superFieldList: []
|
|
223
224
225
|
}
},
created() {
|
|
226
|
this.getSuperFieldList()
|
|
227
228
|
},
computed: {
|
易文鹏
authored
|
229
|
importExcelUrl: function () {
|
|
230
231
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
}
|
|
232
233
|
},
methods: {
|
易文鹏
authored
|
234
235
|
initDictConfig() {
},
|
|
236
|
getSuperFieldList() {
|
|
237
|
let fieldList = []
|
易文鹏
authored
|
238
239
240
241
242
243
244
245
246
247
|
fieldList.push({type: 'string', value: 'code', text: '货主编码', dictCode: ''})
fieldList.push({type: 'string', value: 'name', text: '货主名称', dictCode: ''})
fieldList.push({type: 'string', value: 'address', text: '地址', dictCode: ''})
fieldList.push({type: 'string', value: 'district', text: '区县', dictCode: ''})
fieldList.push({type: 'string', value: 'city', text: '城市', dictCode: ''})
fieldList.push({type: 'string', value: 'province', text: '省份', dictCode: ''})
fieldList.push({type: 'string', value: 'country', text: '国家', dictCode: ''})
fieldList.push({type: 'string', value: 'postalcode', text: '邮编', dictCode: ''})
fieldList.push({type: 'string', value: 'attentionto', text: '联系人', dictCode: ''})
fieldList.push({type: 'string', value: 'phonenum', text: '联系电话', dictCode: ''})
|
|
248
|
this.superFieldList = fieldList
|
|
249
250
|
}
}
|
|
251
|
}
|
|
252
253
|
</script>
<style scoped>
|
|
254
|
@import '~@assets/less/common.less';
|
|
255
|
</style>
|