|
@@ -0,0 +1,197 @@
|
|
|
+<template>
|
|
|
+ <a-card :bordered="false">
|
|
|
+ <!-- 查询区域 -->
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
+ <a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
+ <a-row :gutter="24">
|
|
|
+ </a-row>
|
|
|
+ </a-form>
|
|
|
+ </div>
|
|
|
+ <!-- 查询区域-END -->
|
|
|
+
|
|
|
+ <!-- 操作按钮区域 -->
|
|
|
+ <div class="table-operator">
|
|
|
+ <a-button @click="handle1" type="primary" icon="plus">入库</a-button>
|
|
|
+ <a-button @click="handle2" type="primary" icon="plus">出库</a-button>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- table区域-begin -->
|
|
|
+ <div>
|
|
|
+
|
|
|
+
|
|
|
+ <a-table
|
|
|
+ ref="table"
|
|
|
+ size="middle"
|
|
|
+ :scroll="{x:true}"
|
|
|
+ bordered
|
|
|
+ rowKey="id"
|
|
|
+ :columns="columns"
|
|
|
+ :dataSource="dataSource"
|
|
|
+ :pagination="ipagination"
|
|
|
+ :loading="loading"
|
|
|
+ :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
|
|
|
+ class="j-table-force-nowrap"
|
|
|
+ @change="handleTableChange">
|
|
|
+
|
|
|
+ <template slot="htmlSlot" slot-scope="text">
|
|
|
+ <div v-html="text"></div>
|
|
|
+ </template>
|
|
|
+ <template slot="imgSlot" slot-scope="text,record">
|
|
|
+ <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
|
|
|
+ <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt=""
|
|
|
+ style="max-width:80px;font-size: 12px;font-style: italic;" />
|
|
|
+ </template>
|
|
|
+ <template slot="fileSlot" slot-scope="text">
|
|
|
+ <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
|
|
|
+ <a-button
|
|
|
+ v-else
|
|
|
+ :ghost="true"
|
|
|
+ type="primary"
|
|
|
+ icon="download"
|
|
|
+ size="small"
|
|
|
+ @click="downloadFile(text)">
|
|
|
+ 下载
|
|
|
+ </a-button>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <span slot="action" slot-scope="text, record">
|
|
|
+ <a @click="handleEdit(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="handleDetail(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>
|
|
|
+
|
|
|
+ <itdm-inventory-log-modal ref="modalForm" @ok="modalFormOk"></itdm-inventory-log-modal>
|
|
|
+ </a-card>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+
|
|
|
+import '@/assets/less/TableExpand.less'
|
|
|
+import { mixinDevice } from '@/utils/mixin'
|
|
|
+import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
+import ItdmInventoryLogModal from './modules/ItdmInventoryLogModal'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'ItdmInventoryLogList',
|
|
|
+ mixins: [JeecgListMixin, mixinDevice],
|
|
|
+ components: {
|
|
|
+ ItdmInventoryLogModal
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ description: '库存日志管理页面',
|
|
|
+ // 表头
|
|
|
+ columns: [
|
|
|
+ {
|
|
|
+ title: '#',
|
|
|
+ dataIndex: '',
|
|
|
+ key: 'rowIndex',
|
|
|
+ width: 60,
|
|
|
+ align: 'center',
|
|
|
+ customRender: function(t, r, index) {
|
|
|
+ return parseInt(index) + 1
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '类型(入库、出库)',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'type_dictText'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '条码',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'barCode'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '样品库存id',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'inventoryId_dictText'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '数量 用来同步',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'num'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '使用人员(入库借出和出库归还)',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'useBy'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '使用时间',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'useTime'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '备注',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'remark'
|
|
|
+ }
|
|
|
+ // {
|
|
|
+ // title: '操作',
|
|
|
+ // dataIndex: 'action',
|
|
|
+ // align:"center",
|
|
|
+ // fixed:"right",
|
|
|
+ // width:147,
|
|
|
+ // scopedSlots: { customRender: 'action' }
|
|
|
+ // }
|
|
|
+ ],
|
|
|
+ url: {
|
|
|
+ list: '/inventory/itdmInventoryLog/list',
|
|
|
+ delete: '/inventory/itdmInventoryLog/delete',
|
|
|
+ deleteBatch: '/inventory/itdmInventoryLog/deleteBatch',
|
|
|
+ exportXlsUrl: '/inventory/itdmInventoryLog/exportXls',
|
|
|
+ importExcelUrl: 'inventory/itdmInventoryLog/importExcel'
|
|
|
+
|
|
|
+ },
|
|
|
+ dictOptions: {}
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ importExcelUrl: function() {
|
|
|
+ return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ initDictConfig() {
|
|
|
+ },
|
|
|
+ handle1: function() {
|
|
|
+ this.$refs.modalForm.add()
|
|
|
+ this.$refs.modalForm.initModel('1')
|
|
|
+
|
|
|
+ this.$refs.modalForm.title = '入库'
|
|
|
+ this.$refs.modalForm.disableSubmit = false
|
|
|
+ },
|
|
|
+ handle2: function() {
|
|
|
+ this.$refs.modalForm.add()
|
|
|
+ this.$refs.modalForm.initModel('2')
|
|
|
+
|
|
|
+ this.$refs.modalForm.title = '出库'
|
|
|
+ this.$refs.modalForm.disableSubmit = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style scoped>
|
|
|
+@import '~@assets/less/common.less';
|
|
|
+</style>
|