Blame view

ant-design-vue-jeecg/src/views/system/config/ContainerCapacityList.vue 10 KB
肖超群 authored
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="容器类型">
谭毅彬 authored
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>
肖超群 authored
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>
谭毅彬 authored
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>
肖超群 authored
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">
易文鹏 authored
44
      <a-button @click="handleAdd" v-has="'containerCapacity:add'" type="primary" icon="plus">新增</a-button>
谭毅彬 authored
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"
      >
肖超群 authored
62
63
64
        <a-button type="primary" icon="import">导入</a-button>
      </a-upload>
      <a-dropdown v-if="selectedRowKeys.length > 0">
易文鹏 authored
65
        <a-menu slot="overlay" v-has="'containerCapacity:deleteBatch'">
肖超群 authored
66
          <a-menu-item key="1" @click="batchDel">
谭毅彬 authored
67
            <a-icon type="delete" />
肖超群 authored
68
69
            删除
          </a-menu-item>
肖超群 authored
70
        </a-menu>
谭毅彬 authored
71
72
73
        <a-button style="margin-left: 8px">
          批量操作
          <a-icon type="down" />
肖超群 authored
74
        </a-button>
肖超群 authored
75
76
77
78
79
80
      </a-dropdown>
    </div>

    <!-- table区域-begin -->
    <div>
      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
谭毅彬 authored
81
82
        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择
        <a style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
肖超群 authored
83
84
85
86
87
88
        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
      </div>

      <a-table
        ref="table"
        size="middle"
谭毅彬 authored
89
        :scroll="{ x: true }"
肖超群 authored
90
91
92
93
94
95
        bordered
        rowKey="id"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
谭毅彬 authored
96
        :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
肖超群 authored
97
        class="j-table-force-nowrap"
谭毅彬 authored
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>
肖超群 authored
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>
谭毅彬 authored
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;"
          />
肖超群 authored
118
119
120
        </template>
        <template slot="fileSlot" slot-scope="text">
          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
谭毅彬 authored
121
          <a-button v-else :ghost="true" type="primary" icon="download" size="small" @click="downloadFile(text)">
肖超群 authored
122
123
124
125
            下载
          </a-button>
        </template>
        <span slot="action" slot-scope="text, record">
谭毅彬 authored
126
          <a v-has="'containerCapacity:edit'" @click="handleEdit(record)">编辑<a-divider type="vertical"/></a>
肖超群 authored
127
          <a-dropdown>
肖超群 authored
128
            <a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
肖超群 authored
129
130
131
132
            <a-menu slot="overlay">
              <a-menu-item>
                <a @click="handleDetail(record)">详情</a>
              </a-menu-item>
易文鹏 authored
133
              <a-menu-item v-has="'containerCapacity:delete'">
肖超群 authored
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>
肖超群 authored
149
import '@/assets/less/TableExpand.less'
谭毅彬 authored
150
151
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
肖超群 authored
152
import ContainerCapacityModal from './modules/ContainerCapacityModal'
谭毅彬 authored
153
154
import { filterMultiDictText } from '@/components/dict/JDictSelectUtil'
import { getZoneList, getContainerTypeList } from '@/api/api'
肖超群 authored
155
肖超群 authored
156
157
158
159
160
161
162
163
164
export default {
  name: 'ContainerCapacityList',
  mixins: [JeecgListMixin, mixinDevice],
  components: {
    ContainerCapacityModal
  },
  data() {
    return {
      description: '容器容量管理管理页面',
谭毅彬 authored
165
      containerTypeList: [],
肖超群 authored
166
167
168
169
170
171
172
      // 表头
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
谭毅彬 authored
173
174
175
          align: 'center',
          customRender: function(t, r, index) {
            return parseInt(index) + 1
肖超群 authored
176
177
          }
        },
肖超群 authored
178
179
        {
          title: '容器类型',
谭毅彬 authored
180
181
182
183
          align: 'center',
          dataIndex: 'containerTypeCode',
          key: 'containerTypeCode',
          scopedSlots: { customRender: 'containerTypeCode' }
肖超群 authored
184
185
186
        },
        {
          title: '物料编码',
谭毅彬 authored
187
          align: 'center',
肖超群 authored
188
189
190
191
          dataIndex: 'materialCode'
        },
        {
          title: '物料名称',
谭毅彬 authored
192
          align: 'center',
肖超群 authored
193
194
195
196
          dataIndex: 'materialName'
        },
        {
          title: '物料单位',
谭毅彬 authored
197
          align: 'center',
肖超群 authored
198
199
200
201
          dataIndex: 'materialUnit'
        },
        {
          title: '存放数量',
谭毅彬 authored
202
          align: 'center',
肖超群 authored
203
204
205
206
          dataIndex: 'qty'
        },
        {
          title: '是否可用',
谭毅彬 authored
207
          align: 'center',
肖超群 authored
208
209
210
211
          dataIndex: 'enable_dictText'
        },
        {
          title: '创建人',
谭毅彬 authored
212
          align: 'center',
肖超群 authored
213
214
215
216
          dataIndex: 'createBy'
        },
        {
          title: '创建日期',
谭毅彬 authored
217
          align: 'center',
肖超群 authored
218
219
220
221
          dataIndex: 'createTime'
        },
        {
          title: '更新人',
谭毅彬 authored
222
          align: 'center',
肖超群 authored
223
224
225
226
          dataIndex: 'updateBy'
        },
        {
          title: '更新日期',
谭毅彬 authored
227
          align: 'center',
肖超群 authored
228
229
230
231
232
          dataIndex: 'updateTime'
        },
        {
          title: '操作',
          dataIndex: 'action',
谭毅彬 authored
233
234
          align: 'center',
          fixed: 'right',
肖超群 authored
235
          width: 147,
谭毅彬 authored
236
          scopedSlots: { customRender: 'action' }
肖超群 authored
237
238
239
        }
      ],
      url: {
谭毅彬 authored
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'
肖超群 authored
245
246
      },
      dictOptions: {},
谭毅彬 authored
247
      superFieldList: []
肖超群 authored
248
249
250
    }
  },
  created() {
谭毅彬 authored
251
252
    this.getSuperFieldList()
    this.loadFrom()
肖超群 authored
253
254
  },
  computed: {
谭毅彬 authored
255
256
257
    importExcelUrl: function() {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
肖超群 authored
258
259
  },
  methods: {
谭毅彬 authored
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
        }
      })
肖超群 authored
277
    },
肖超群 authored
278
    getSuperFieldList() {
谭毅彬 authored
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: '更新日期' })
肖超群 authored
292
      this.superFieldList = fieldList
肖超群 authored
293
294
    }
  }
肖超群 authored
295
}
肖超群 authored
296
297
</script>
<style scoped>
肖超群 authored
298
@import '~@assets/less/common.less';
肖超群 authored
299
</style>