25 changed files with 4542 additions and 80 deletions
@ -0,0 +1,412 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<a-row :gutter="24"> |
||||
<a-col :span="4"> |
||||
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
||||
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type" |
||||
placeholder="请选择物资类型" /> |
||||
</a-form-item> |
||||
</a-col> |
||||
</a-row> |
||||
</a-form> |
||||
</div> |
||||
<!-- 查询区域-END --> |
||||
|
||||
<!-- 操作按钮区域 --> |
||||
<div class="table-operator"> |
||||
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button> |
||||
<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-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<!-- <a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >--> |
||||
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "LndustrialExplosiveCome", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialsDeliveryListList, |
||||
ProcessMaterialsDeliveryModal, |
||||
JSuperQuery |
||||
}, |
||||
data () { |
||||
return { |
||||
labelCol: { |
||||
xs: { span: 4 }, |
||||
sm: { span: 4 }, |
||||
}, |
||||
wrapperCol: { |
||||
xs: { span: 20 }, |
||||
sm: { span: 20 }, |
||||
}, |
||||
description: '物资出库流程管理页面', |
||||
// 表头 |
||||
// columns: [ |
||||
// { |
||||
// title: '#', |
||||
// dataIndex: '', |
||||
// key:'rowIndex', |
||||
// width:60, |
||||
// align:"center", |
||||
// customRender:function (t,r,index) { |
||||
// return parseInt(index)+1; |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'器材编号', |
||||
// align:"center", |
||||
// dataIndex: 'equipment', |
||||
// }, |
||||
// { |
||||
// title:'WBS', |
||||
// align:"center", |
||||
// dataIndex: 'wbs_dictText', |
||||
// }, |
||||
// { |
||||
// title:'物料名称及规格型号', |
||||
// align:"center", |
||||
// dataIndex: 'materialName', |
||||
// }, |
||||
// { |
||||
// title:'单位', |
||||
// align:"center", |
||||
// dataIndex: 'materialUnit', |
||||
// }, |
||||
// { |
||||
// title:'请发数', |
||||
// align:"center", |
||||
// dataIndex: 'pleaseSendNumber' |
||||
// }, |
||||
// { |
||||
// title:'实发数', |
||||
// align:"center", |
||||
// dataIndex: 'actualSendNumber' |
||||
// }, |
||||
// { |
||||
// title:'供货商', |
||||
// align:"center", |
||||
// dataIndex: 'supplier', |
||||
// }, |
||||
// { |
||||
// title:'单价', |
||||
// align:"center", |
||||
// dataIndex: 'materialPrice' |
||||
// }, |
||||
// { |
||||
// title:'金额', |
||||
// align:"center", |
||||
// dataIndex: 'materialAmount' |
||||
// }, |
||||
// { |
||||
// title:'用途', |
||||
// align:"center", |
||||
// dataIndex: 'purpose', |
||||
// fixed:"right", |
||||
// }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
// |
||||
// /*{ |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// }*/ |
||||
// ], |
||||
// url: { |
||||
// list: "/hy/processMaterialsDelivery/list", |
||||
// // list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId", |
||||
// delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList", |
||||
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList", |
||||
// exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList", |
||||
// importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList", |
||||
// }, |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'流程发起公司', |
||||
align:"center", |
||||
dataIndex: 'company_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起时间', |
||||
align:"center", |
||||
dataIndex: 'createTime' |
||||
}, |
||||
{ |
||||
title:'流程发起部门', |
||||
align:"center", |
||||
dataIndex: 'sysOrgCode_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起人', |
||||
align:"center", |
||||
dataIndex: 'createBy' |
||||
}, |
||||
{ |
||||
title:'物资类型', |
||||
align:"center", |
||||
dataIndex: 'materialType_dictText', |
||||
}, |
||||
{ |
||||
title:'出库时间', |
||||
align:"center", |
||||
dataIndex: 'deliveryTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
// { |
||||
// title:'文件id', |
||||
// align:"center", |
||||
// dataIndex: 'fileId', |
||||
// scopedSlots: {customRender: 'fileSlot'} |
||||
// }, |
||||
{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
} |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialsDelivery/listStockRemoval", |
||||
delete: "/hy/processMaterialsDelivery/delete", |
||||
deleteBatch: "/hy/processMaterialsDelivery/deleteBatch", |
||||
exportXlsUrl: "/hy/processMaterialsDelivery/exportXls", |
||||
importExcelUrl: "hy/processMaterialsDelivery/importExcel", |
||||
}, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
materialType:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 5, |
||||
pageSizeOptions: ['5', '10', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
searchQuery() { |
||||
this.loadData(1); |
||||
}, |
||||
|
||||
handleEnterDetail(records){ |
||||
console.log(records) |
||||
// this.$router.push({ |
||||
// name:'src-views-accessrecords-plan-ProcessMaterialsDeliveryPlan', |
||||
// params:{ |
||||
// item: records.id, |
||||
// merchandiseName: " - "+records.materialType_dictText, |
||||
// }}) |
||||
this.$router.push({ |
||||
path:'/access_records/come', |
||||
query:{ |
||||
item: records.id, |
||||
merchandiseName: " - "+records.materialType_dictText, |
||||
} |
||||
}) |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'materialType', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
getAction(this.url.list, params).then((res) => { |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,395 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<a-row :gutter="24"> |
||||
<a-col :span="4"> |
||||
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
||||
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type" |
||||
placeholder="请选择物资类型" /> |
||||
</a-form-item> |
||||
</a-col> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="供应商">--> |
||||
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="物料组">--> |
||||
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >--> |
||||
<!-- <a-form-item label="物料号">--> |
||||
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="物料名称">--> |
||||
<!-- <a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="仓储地点">--> |
||||
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!--<!– </a-row>–>--> |
||||
<!--<!– <a-row :gutter="24">–>--> |
||||
<!--<!– <a-col :xl="5" :lg="7" :md="8" :sm="16">–>--> |
||||
<!--<!– <a-form-item label="入库批次">–>--> |
||||
<!--<!– <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>–>--> |
||||
<!--<!– </a-form-item>–>--> |
||||
<!--<!– </a-col>–>--> |
||||
<!--<!– <a-col :xl="5" :lg="7" :md="8" :sm="16">–>--> |
||||
<!--<!– <a-form-item label="保质期">–>--> |
||||
<!--<!– <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>–>--> |
||||
<!--<!– </a-form-item>–>--> |
||||
<!--<!– </a-col>–>--> |
||||
|
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库人">--> |
||||
<!-- <a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">--> |
||||
<!-- <a-range-picker--> |
||||
<!-- style="width: 180px"--> |
||||
<!-- format="YYYY-MM-DD"--> |
||||
<!-- :placeholder="['开始时间', '结束时间']"--> |
||||
<!-- @change="onDateChangestorageTime"--> |
||||
<!-- />--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </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('物资入库流程')">导出</a-button> |
||||
<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-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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
|
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >--> |
||||
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "LndustrialExplosiveEnter", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialWarehousingListList, |
||||
ProcessMaterialWarehousingModal, |
||||
JSuperQuery |
||||
}, |
||||
data () { |
||||
return { |
||||
labelCol: { |
||||
xs: { span: 4 }, |
||||
sm: { span: 4 }, |
||||
}, |
||||
wrapperCol: { |
||||
xs: { span: 20 }, |
||||
sm: { span: 20 }, |
||||
}, |
||||
description: '物资入库流程管理页面', |
||||
// 表头 |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'流程发起公司', |
||||
align:"center", |
||||
dataIndex: 'company_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起时间', |
||||
align:"center", |
||||
dataIndex: 'createTime' |
||||
}, |
||||
{ |
||||
title:'流程发起部门', |
||||
align:"center", |
||||
dataIndex: 'sysOrgCode_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起人', |
||||
align:"center", |
||||
dataIndex: 'createBy' |
||||
}, |
||||
// { |
||||
// title:'关联预算流程', |
||||
// align:"center", |
||||
// dataIndex: 'processUdgetPlanId' |
||||
// }, |
||||
{ |
||||
title:'物资类型', |
||||
align:"center", |
||||
dataIndex: 'materialType_dictText' |
||||
}, |
||||
{ |
||||
title:'批次', |
||||
align:"center", |
||||
dataIndex: 'targetLibrary' |
||||
}, |
||||
{ |
||||
title:'入库总批次', |
||||
align:"center", |
||||
dataIndex: 'warehousingBatch' |
||||
}, |
||||
// { |
||||
// title:'文件id', |
||||
// align:"center", |
||||
// dataIndex: 'fileId', |
||||
// scopedSlots: {customRender: 'fileSlot'} |
||||
// }, |
||||
{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
} |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialWarehousing/listRecords", |
||||
delete: "/hy/processMaterialWarehousing/delete", |
||||
deleteBatch: "/hy/processMaterialWarehousing/deleteBatch", |
||||
exportXlsUrl: "/hy/processMaterialWarehousing/exportXls", |
||||
importExcelUrl: "hy/processMaterialWarehousing/importExcel", |
||||
}, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 5, |
||||
pageSizeOptions: ['5', '10', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
|
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
searchQuery() { |
||||
this.loadData(1); |
||||
}, |
||||
handleEnterDetail(records){ |
||||
console.log(records) |
||||
this.$router.push({ |
||||
path:'/access_records/enter', |
||||
query:{ |
||||
item: records.id, |
||||
merchandiseName: " - "+records.materialType_dictText, |
||||
} |
||||
}) |
||||
// this.$router.push({ |
||||
// name:'src-views-accessrecords-plan-ProcessMaterialWarehousingPlan', |
||||
// params:{ |
||||
// item: records.id, |
||||
// merchandiseName: " - "+records.materialType_dictText, |
||||
// }}) |
||||
}, |
||||
|
||||
onDateChange: function (value, dateString) { |
||||
this.queryParam.productDateBegin=dateString[0]; |
||||
this.queryParam.productDateEnd=dateString[1]; |
||||
console.log() |
||||
}, |
||||
onDateChangestorageTime: function (value, dateString) { |
||||
this.queryParam.inboundDateBegin=dateString[0]; |
||||
this.queryParam.inboundDateEnd=dateString[1]; |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
var params = this.getQueryParams();//查询条件 |
||||
console.log("====================>",params) |
||||
this.loading = true; |
||||
getAction(this.url.list, params).then((res) => { |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''}) |
||||
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,401 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<a-row :gutter="24"> |
||||
<a-col :span="4"> |
||||
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
||||
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type" |
||||
placeholder="请选择物资类型" /> |
||||
</a-form-item> |
||||
</a-col> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="供应商">--> |
||||
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="物料组">--> |
||||
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >--> |
||||
<!-- <a-form-item label="物料号">--> |
||||
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="物料名称">--> |
||||
<!-- <a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="仓储地点">--> |
||||
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!--<!– </a-row>–>--> |
||||
<!--<!– <a-row :gutter="24">–>--> |
||||
<!--<!– <a-col :xl="5" :lg="7" :md="8" :sm="16">–>--> |
||||
<!--<!– <a-form-item label="入库批次">–>--> |
||||
<!--<!– <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>–>--> |
||||
<!--<!– </a-form-item>–>--> |
||||
<!--<!– </a-col>–>--> |
||||
<!--<!– <a-col :xl="5" :lg="7" :md="8" :sm="16">–>--> |
||||
<!--<!– <a-form-item label="保质期">–>--> |
||||
<!--<!– <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>–>--> |
||||
<!--<!– </a-form-item>–>--> |
||||
<!--<!– </a-col>–>--> |
||||
|
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库人">--> |
||||
<!-- <a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">--> |
||||
<!-- <a-range-picker--> |
||||
<!-- style="width: 180px"--> |
||||
<!-- format="YYYY-MM-DD"--> |
||||
<!-- :placeholder="['开始时间', '结束时间']"--> |
||||
<!-- @change="onDateChangestorageTime"--> |
||||
<!-- />--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </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('物资入库流程')">导出</a-button> |
||||
<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-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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
|
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >--> |
||||
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "ProcessMaterialWarehousingRecord", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialWarehousingListList, |
||||
ProcessMaterialWarehousingModal, |
||||
JSuperQuery |
||||
}, |
||||
data () { |
||||
return { |
||||
labelCol: { |
||||
xs: { span: 4 }, |
||||
sm: { span: 4 }, |
||||
}, |
||||
wrapperCol: { |
||||
xs: { span: 20 }, |
||||
sm: { span: 20 }, |
||||
}, |
||||
description: '物资入库流程管理页面', |
||||
// 表头 |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'流程发起公司', |
||||
align:"center", |
||||
dataIndex: 'company_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起时间', |
||||
align:"center", |
||||
dataIndex: 'createTime' |
||||
}, |
||||
{ |
||||
title:'流程发起部门', |
||||
align:"center", |
||||
dataIndex: 'sysOrgCode_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起人', |
||||
align:"center", |
||||
dataIndex: 'createBy' |
||||
}, |
||||
// { |
||||
// title:'关联预算流程', |
||||
// align:"center", |
||||
// dataIndex: 'processUdgetPlanId' |
||||
// }, |
||||
{ |
||||
title:'物资类型', |
||||
align:"center", |
||||
dataIndex: 'materialType_dictText' |
||||
}, |
||||
{ |
||||
title:'批次', |
||||
align:"center", |
||||
dataIndex: 'targetLibrary' |
||||
}, |
||||
{ |
||||
title:'入库总批次', |
||||
align:"center", |
||||
dataIndex: 'warehousingBatch' |
||||
}, |
||||
// { |
||||
// title:'文件id', |
||||
// align:"center", |
||||
// dataIndex: 'fileId', |
||||
// scopedSlots: {customRender: 'fileSlot'} |
||||
// }, |
||||
{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
} |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialWarehousing/listRecords", |
||||
delete: "/hy/processMaterialWarehousing/delete", |
||||
deleteBatch: "/hy/processMaterialWarehousing/deleteBatch", |
||||
exportXlsUrl: "/hy/processMaterialWarehousing/exportXls", |
||||
importExcelUrl: "hy/processMaterialWarehousing/importExcel", |
||||
}, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 10, |
||||
pageSizeOptions: ['10', '30', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
|
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
searchQuery() { |
||||
this.loadData(1); |
||||
}, |
||||
handleEnterDetail(records){ |
||||
console.log(records) |
||||
this.$router.push({ |
||||
path:'/access_records/matwarlan', |
||||
query:{ |
||||
item: records.id, |
||||
merchandiseName: " - "+records.materialType_dictText, |
||||
} |
||||
}) |
||||
// this.$router.push({ |
||||
// name:'src-views-accessrecords-plan-ProcessMaterialWarehousingPlan', |
||||
// params:{ |
||||
// item: records.id, |
||||
// merchandiseName: " - "+records.materialType_dictText, |
||||
// }}) |
||||
}, |
||||
|
||||
onDateChange: function (value, dateString) { |
||||
this.queryParam.productDateBegin=dateString[0]; |
||||
this.queryParam.productDateEnd=dateString[1]; |
||||
console.log() |
||||
}, |
||||
onDateChangestorageTime: function (value, dateString) { |
||||
this.queryParam.inboundDateBegin=dateString[0]; |
||||
this.queryParam.inboundDateEnd=dateString[1]; |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
console.log("部门ID===》", sessionStorage.getItem('USER_INFORMATION')) |
||||
let ue= sessionStorage.getItem('USER_INFORMATION'); |
||||
let res=JSON.parse(ue); |
||||
this.queryParam.sysOrgCode = res.departIds; |
||||
console.log(res.departIds); |
||||
var params = this.getQueryParams();//查询条件 |
||||
// console.log("部门Id"+sessionStorage.getItem('PUWWC_Id') )//关联中间表id |
||||
console.log("====================>",params) |
||||
this.loading = true; |
||||
getAction(this.url.list, params).then((res) => { |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''}) |
||||
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,415 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<a-row :gutter="24"> |
||||
<a-col :span="4"> |
||||
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
||||
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type" |
||||
placeholder="请选择物资类型" /> |
||||
</a-form-item> |
||||
</a-col> |
||||
</a-row> |
||||
</a-form> |
||||
</div> |
||||
<!-- 查询区域-END --> |
||||
|
||||
<!-- 操作按钮区域 --> |
||||
<div class="table-operator"> |
||||
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button> |
||||
<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-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<!-- <a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >--> |
||||
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "ProcessMaterialsDeliveryRecord", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialsDeliveryListList, |
||||
ProcessMaterialsDeliveryModal, |
||||
JSuperQuery |
||||
}, |
||||
data () { |
||||
return { |
||||
labelCol: { |
||||
xs: { span: 4 }, |
||||
sm: { span: 4 }, |
||||
}, |
||||
wrapperCol: { |
||||
xs: { span: 20 }, |
||||
sm: { span: 20 }, |
||||
}, |
||||
description: '物资出库流程管理页面', |
||||
// 表头 |
||||
// columns: [ |
||||
// { |
||||
// title: '#', |
||||
// dataIndex: '', |
||||
// key:'rowIndex', |
||||
// width:60, |
||||
// align:"center", |
||||
// customRender:function (t,r,index) { |
||||
// return parseInt(index)+1; |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'器材编号', |
||||
// align:"center", |
||||
// dataIndex: 'equipment', |
||||
// }, |
||||
// { |
||||
// title:'WBS', |
||||
// align:"center", |
||||
// dataIndex: 'wbs_dictText', |
||||
// }, |
||||
// { |
||||
// title:'物料名称及规格型号', |
||||
// align:"center", |
||||
// dataIndex: 'materialName', |
||||
// }, |
||||
// { |
||||
// title:'单位', |
||||
// align:"center", |
||||
// dataIndex: 'materialUnit', |
||||
// }, |
||||
// { |
||||
// title:'请发数', |
||||
// align:"center", |
||||
// dataIndex: 'pleaseSendNumber' |
||||
// }, |
||||
// { |
||||
// title:'实发数', |
||||
// align:"center", |
||||
// dataIndex: 'actualSendNumber' |
||||
// }, |
||||
// { |
||||
// title:'供货商', |
||||
// align:"center", |
||||
// dataIndex: 'supplier', |
||||
// }, |
||||
// { |
||||
// title:'单价', |
||||
// align:"center", |
||||
// dataIndex: 'materialPrice' |
||||
// }, |
||||
// { |
||||
// title:'金额', |
||||
// align:"center", |
||||
// dataIndex: 'materialAmount' |
||||
// }, |
||||
// { |
||||
// title:'用途', |
||||
// align:"center", |
||||
// dataIndex: 'purpose', |
||||
// fixed:"right", |
||||
// }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
// |
||||
// /*{ |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// }*/ |
||||
// ], |
||||
// url: { |
||||
// list: "/hy/processMaterialsDelivery/list", |
||||
// // list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId", |
||||
// delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList", |
||||
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList", |
||||
// exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList", |
||||
// importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList", |
||||
// }, |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'流程发起公司', |
||||
align:"center", |
||||
dataIndex: 'company_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起时间', |
||||
align:"center", |
||||
dataIndex: 'createTime' |
||||
}, |
||||
{ |
||||
title:'流程发起部门', |
||||
align:"center", |
||||
dataIndex: 'sysOrgCode_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起人', |
||||
align:"center", |
||||
dataIndex: 'createBy' |
||||
}, |
||||
{ |
||||
title:'物资类型', |
||||
align:"center", |
||||
dataIndex: 'materialType_dictText', |
||||
}, |
||||
{ |
||||
title:'出库时间', |
||||
align:"center", |
||||
dataIndex: 'deliveryTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
// { |
||||
// title:'文件id', |
||||
// align:"center", |
||||
// dataIndex: 'fileId', |
||||
// scopedSlots: {customRender: 'fileSlot'} |
||||
// }, |
||||
{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
} |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialsDelivery/listStockRemoval", |
||||
delete: "/hy/processMaterialsDelivery/delete", |
||||
deleteBatch: "/hy/processMaterialsDelivery/deleteBatch", |
||||
exportXlsUrl: "/hy/processMaterialsDelivery/exportXls", |
||||
importExcelUrl: "hy/processMaterialsDelivery/importExcel", |
||||
}, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
materialType:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 10, |
||||
pageSizeOptions: ['10', '30', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
searchQuery() { |
||||
this.loadData(1); |
||||
}, |
||||
|
||||
handleEnterDetail(records){ |
||||
console.log(records) |
||||
// this.$router.push({ |
||||
// name:'src-views-accessrecords-plan-ProcessMaterialsDeliveryPlan', |
||||
// params:{ |
||||
// item: records.id, |
||||
// merchandiseName: " - "+records.materialType_dictText, |
||||
// }}) |
||||
this.$router.push({ |
||||
path:'/access_records/deplan', |
||||
query:{ |
||||
item: records.id, |
||||
merchandiseName: " - "+records.materialType_dictText, |
||||
} |
||||
}) |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'materialType', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
let ue= sessionStorage.getItem('USER_INFORMATION'); |
||||
let res=JSON.parse(ue); |
||||
this.queryParam.sysOrgCode = res.departIds; |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
getAction(this.url.list, params).then((res) => { |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,13 @@
|
||||
<template> |
||||
|
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'LndustrialExplosiveComeFlowChart' |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,13 @@
|
||||
<template> |
||||
|
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "LndustrialExplosiveEnterFlowChart" |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,210 @@
|
||||
<template> |
||||
<div class="search"> |
||||
<!--<a-card style="margin-bottom:10px;"> |
||||
<p slot="title"> |
||||
<span>流程审批进度历史</span> |
||||
</p> |
||||
<a-row style="position:relative"> |
||||
<a-table :loading="loading" rowKey="id" |
||||
:dataSource="data" |
||||
:pagination="false" |
||||
ref="table"> |
||||
<a-table-column title="#" width="50"> |
||||
<template slot-scope="t,r,i" > |
||||
<span> {{i+1}} </span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="任务名称" dataIndex="name" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span> {{t}} </span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="处理人" dataIndex="assignees" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<div v-if="t"> |
||||
<span v-for="item in t"> |
||||
<span v-if="item.isExecutor" style="color: #00DB00;">{{item.username}} </span> |
||||
<span v-else style="color: #999;">{{item.username}} </span> |
||||
</span> |
||||
</div> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="审批操作" dataIndex="deleteReason" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span v-if="t.toString().indexOf('通过')>-1" style="color: #00DB00">{{t}}</span> |
||||
<span v-else-if="t.toString().indexOf('驳回')>-1" style="color: red;">{{t}}</span> |
||||
<span v-else>{{t}}</span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="审批意见" dataIndex="comment" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span>{{t}}</span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="耗时" dataIndex="duration" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span>{{millsToTime(t)}}</span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="创建时间" dataIndex="createTime" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span>{{t}}</span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="完成时间" dataIndex="endTime" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span>{{t}}</span> |
||||
</template> |
||||
</a-table-column> |
||||
<a-table-column title="状态" dataIndex="endTime" key="aaa" width="150" align="center"> |
||||
<template slot-scope="t"> |
||||
<span v-if="t" style="color: blue;">已办理</span> |
||||
<span v-else style="color: #999999">待处理</span> |
||||
</template> |
||||
</a-table-column> |
||||
</a-table> |
||||
</a-row> |
||||
</a-card>--> |
||||
|
||||
<!-- <a-tabs type="card" @change="callback">--> |
||||
<!-- <a-tab-pane key="1" tab="实时流程图">--> |
||||
|
||||
<!--<p slot="title"> |
||||
<span>实时流程图</span> |
||||
</p>--> |
||||
<a-row style="position:relative"> |
||||
<img :src="imgUrl" /> |
||||
<a-spin size="large" fix v-if="loadingImg"></a-spin> |
||||
</a-row> |
||||
|
||||
<!-- </a-tab-pane>--> |
||||
<!-- <a-tab-pane key="2" tab="表单数据" v-if="lcModa"> |
||||
<a-card> |
||||
<!–流程表单–> |
||||
<component :disabled="lcModa.disabled" :is="lcModa.formComponent" |
||||
:processData="lcModa.processData" :isNew="lcModa.isNew" :task="lcModa.isTask" |
||||
@afterSubmit="afterSub" |
||||
@passTask="pass(lcModa.processData)" |
||||
@backTask="back(lcModa.processData)" |
||||
@close="lcModa.visible=false,lcModa.disabled = false"></component> |
||||
</a-card> |
||||
</a-tab-pane>--> |
||||
<!--</a-tabs>--> |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import { activitiMixin } from '@/views/activiti/mixins/activitiMixin' |
||||
export default { |
||||
name: "ProcessMaterialWarehousingFlowChart", |
||||
mixins:[activitiMixin,JeecgListMixin], |
||||
props: { |
||||
/**/ |
||||
procInstId: { |
||||
type: String, |
||||
default: '', |
||||
required: true |
||||
}, |
||||
pictureId: { |
||||
type: String, |
||||
default: '', |
||||
required: true |
||||
}, |
||||
lcModa: { |
||||
type: Object, |
||||
required: false |
||||
} |
||||
}, |
||||
data() { |
||||
return { |
||||
url:{ |
||||
historicFlow:'/actTask/historicFlow/', |
||||
getHighlightImg:`${window._CONFIG['domianURL']}/activiti/models/getHighlightImg/`, |
||||
getNormalImg:`${window._CONFIG['domianURL']}/activiti/models/getNormalImg/` |
||||
}, |
||||
type: 0, |
||||
loading: false, // 表单加载状态 |
||||
loadingImg: false, |
||||
data: [], |
||||
id: "", |
||||
imgUrl: "", |
||||
backRoute: "" |
||||
}; |
||||
}, |
||||
created() { |
||||
console.log(this.procInstId,'1111111111') |
||||
|
||||
if (this.pictureId){ |
||||
this.initNormal(); |
||||
}else { |
||||
this.init(); |
||||
} |
||||
// if (!this.pictrueId){ |
||||
// |
||||
// |
||||
// }else { |
||||
// |
||||
// |
||||
// } |
||||
}, |
||||
watch: { |
||||
procInstId:function(newval ,oldName) { |
||||
this.init(); |
||||
}, |
||||
pictureId:function() { |
||||
|
||||
} |
||||
}, |
||||
methods: { |
||||
loadData(){ |
||||
|
||||
}, |
||||
init() { |
||||
this.id = this.procInstId; |
||||
this.imgUrl =this.url.getHighlightImg + this.id + "?time=" + new Date(); |
||||
this.getDataList(); |
||||
}, |
||||
initNormal() { |
||||
this.id = this.pictureId; |
||||
this.imgUrl =this.url.getNormalImg + this.id + "?time=" + new Date(); |
||||
}, |
||||
getDataList() { |
||||
this.loading = true; |
||||
this.getAction(this.url.historicFlow+this.id).then(res => { |
||||
this.loading = false; |
||||
if (res.success) { |
||||
this.data = res.result; |
||||
if (!res.result || res.result.length == 0) { |
||||
this.$message.info( "未找到该记录审批历史数据,历史数据可能已被删除"); |
||||
} |
||||
}else { |
||||
this.$message.error( res.message); |
||||
} |
||||
}); |
||||
}, |
||||
handleTableChange(pagination, filters, sorter) { |
||||
//分页、排序、筛选变化时触发 |
||||
//TODO 筛选 |
||||
if (Object.keys(sorter).length > 0) { |
||||
this.isorter.column = sorter.field; |
||||
this.isorter.order = "ascend" == sorter.order ? "asc" : "desc" |
||||
} |
||||
this.ipagination = pagination; |
||||
// this.loadData(); |
||||
}, |
||||
callback(key){ |
||||
}, |
||||
afterSub(){ |
||||
|
||||
}, |
||||
pass(v){ |
||||
this.$emit('passTask',v) |
||||
}, |
||||
back(v){ |
||||
this.$emit('backTask',v) |
||||
} |
||||
}, |
||||
|
||||
}; |
||||
</script> |
@ -0,0 +1,386 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<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="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<!-- <a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >--> |
||||
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "ProcessMaterialsDeliveryList", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialsDeliveryListList, |
||||
ProcessMaterialsDeliveryModal, |
||||
JSuperQuery |
||||
}, |
||||
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: 'equipment', |
||||
// }, |
||||
// { |
||||
// title:'WBS', |
||||
// align:"center", |
||||
// dataIndex: 'wbs_dictText', |
||||
// }, |
||||
// { |
||||
// title:'物料名称及规格型号', |
||||
// align:"center", |
||||
// dataIndex: 'materialName', |
||||
// }, |
||||
// { |
||||
// title:'单位', |
||||
// align:"center", |
||||
// dataIndex: 'materialUnit', |
||||
// }, |
||||
// { |
||||
// title:'请发数', |
||||
// align:"center", |
||||
// dataIndex: 'pleaseSendNumber' |
||||
// }, |
||||
// { |
||||
// title:'实发数', |
||||
// align:"center", |
||||
// dataIndex: 'actualSendNumber' |
||||
// }, |
||||
// { |
||||
// title:'供货商', |
||||
// align:"center", |
||||
// dataIndex: 'supplier', |
||||
// }, |
||||
// { |
||||
// title:'单价', |
||||
// align:"center", |
||||
// dataIndex: 'materialPrice' |
||||
// }, |
||||
// { |
||||
// title:'金额', |
||||
// align:"center", |
||||
// dataIndex: 'materialAmount' |
||||
// }, |
||||
// { |
||||
// title:'用途', |
||||
// align:"center", |
||||
// dataIndex: 'purpose', |
||||
// fixed:"right", |
||||
// }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
// |
||||
// /*{ |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// }*/ |
||||
// ], |
||||
// url: { |
||||
// list: "/hy/processMaterialsDelivery/list", |
||||
// // list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId", |
||||
// delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList", |
||||
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList", |
||||
// exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList", |
||||
// importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList", |
||||
// }, |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'流程发起公司', |
||||
align:"center", |
||||
dataIndex: 'company_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起时间', |
||||
align:"center", |
||||
dataIndex: 'createTime' |
||||
}, |
||||
{ |
||||
title:'流程发起部门', |
||||
align:"center", |
||||
dataIndex: 'sysOrgCode_dictText', |
||||
}, |
||||
{ |
||||
title:'流程发起人', |
||||
align:"center", |
||||
dataIndex: 'createBy' |
||||
}, |
||||
{ |
||||
title:'物资类型', |
||||
align:"center", |
||||
dataIndex: 'materialType_dictText', |
||||
}, |
||||
{ |
||||
title:'出库时间', |
||||
align:"center", |
||||
dataIndex: 'deliveryTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
// { |
||||
// title:'文件id', |
||||
// align:"center", |
||||
// dataIndex: 'fileId', |
||||
// scopedSlots: {customRender: 'fileSlot'} |
||||
// }, |
||||
{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
} |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialsDelivery/listStockRemoval", |
||||
delete: "/hy/processMaterialsDelivery/delete", |
||||
deleteBatch: "/hy/processMaterialsDelivery/deleteBatch", |
||||
exportXlsUrl: "/hy/processMaterialsDelivery/exportXls", |
||||
importExcelUrl: "hy/processMaterialsDelivery/importExcel", |
||||
}, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
materialType:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 5, |
||||
pageSizeOptions: ['5', '10', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
|
||||
|
||||
handleEnterDetail(records){ |
||||
console.log(records) |
||||
this.$router.push({ |
||||
name:'src-views-accessrecords-plan-ProcessMaterialWarehousingPlan', |
||||
params:{ |
||||
item: records.id, |
||||
merchandiseName: " - "+records.materialType_dictText, |
||||
}}) |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'materialType', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
getAction(this.url.list, params).then((res) => { |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less' |
||||
</style> |
@ -0,0 +1,402 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<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="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<!-- <a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >--> |
||||
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "LndustrialExplosiveComeDetail", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialsDeliveryListList, |
||||
ProcessMaterialsDeliveryModal, |
||||
JSuperQuery |
||||
}, |
||||
props:{ |
||||
deliveryDetailId:{ |
||||
type:String, |
||||
}, |
||||
}, |
||||
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: 'materialGroup', |
||||
}, |
||||
{ |
||||
title:'物料号', |
||||
align:"center", |
||||
dataIndex: 'materialsNumber', |
||||
}, |
||||
{ |
||||
title:'物料名称', |
||||
align:"center", |
||||
dataIndex: 'materialName', |
||||
}, |
||||
{ |
||||
title:'规格', |
||||
align:"center", |
||||
dataIndex: 'materialName1', |
||||
}, |
||||
{ |
||||
title:'型号', |
||||
align:"center", |
||||
dataIndex: 'materialName2', |
||||
}, |
||||
{ |
||||
title:'单位', |
||||
align:"center", |
||||
dataIndex: 'materialUnit', |
||||
}, |
||||
{ |
||||
title:'请发数', |
||||
align:"center", |
||||
dataIndex: 'pleaseSendNumber' |
||||
}, |
||||
{ |
||||
title:'实发数', |
||||
align:"center", |
||||
dataIndex: 'actualSendNumber' |
||||
}, |
||||
{ |
||||
title:'供货商', |
||||
align:"center", |
||||
dataIndex: 'supplier', |
||||
}, |
||||
{ |
||||
title:'单价', |
||||
align:"center", |
||||
dataIndex: 'materialPrice' |
||||
}, |
||||
{ |
||||
title:'金额', |
||||
align:"center", |
||||
dataIndex: 'materialAmount' |
||||
}, |
||||
{ |
||||
title:'用途', |
||||
align:"center", |
||||
dataIndex: 'purpose', |
||||
}, |
||||
{ |
||||
title:'出库时间', |
||||
align:"center", |
||||
dataIndex: 'createTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
|
||||
/*{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
}*/ |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialsDelivery/stockRemovalDetails", |
||||
// list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId", |
||||
delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList", |
||||
deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList", |
||||
exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList", |
||||
importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList", |
||||
}, |
||||
// columns: [ |
||||
// { |
||||
// title: '序号', |
||||
// dataIndex: '', |
||||
// key:'rowIndex', |
||||
// width:60, |
||||
// align:"center", |
||||
// customRender:function (t,r,index) { |
||||
// return parseInt(index)+1; |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'流程发起公司', |
||||
// align:"center", |
||||
// dataIndex: 'company_dictText', |
||||
// }, |
||||
// { |
||||
// title:'流程发起时间', |
||||
// align:"center", |
||||
// dataIndex: 'createTime' |
||||
// }, |
||||
// { |
||||
// title:'流程发起部门', |
||||
// align:"center", |
||||
// dataIndex: 'sysOrgCode_dictText', |
||||
// }, |
||||
// { |
||||
// title:'流程发起人', |
||||
// align:"center", |
||||
// dataIndex: 'createBy' |
||||
// }, |
||||
// { |
||||
// title:'物资类型', |
||||
// align:"center", |
||||
// dataIndex: 'materialType_dictText', |
||||
// }, |
||||
// { |
||||
// title:'出库时间', |
||||
// align:"center", |
||||
// dataIndex: 'deliveryTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// // { |
||||
// // title:'文件id', |
||||
// // align:"center", |
||||
// // dataIndex: 'fileId', |
||||
// // scopedSlots: {customRender: 'fileSlot'} |
||||
// // }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
// ], |
||||
// url: { |
||||
// list: "/hy/processMaterialsDelivery/listStockRemoval", |
||||
// delete: "/hy/processMaterialsDelivery/delete", |
||||
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatch", |
||||
// exportXlsUrl: "/hy/processMaterialsDelivery/exportXls", |
||||
// importExcelUrl: "hy/processMaterialsDelivery/importExcel", |
||||
// }, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
materialType:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 5, |
||||
pageSizeOptions: ['5', '10', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
console.log("=============",this.deliveryDetailId); |
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'materialType', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
this.queryParam.processMaterialsDeliveryId = this.deliveryDetailId; |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
console.log("qqqqqqqqqqqqqqqqqqqqq",params) |
||||
getAction(this.url.list, params).then((res) => { |
||||
console.log(res); |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,458 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 730px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<!-- <a-row :gutter="24">--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="供应商">--> |
||||
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="物料组">--> |
||||
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >--> |
||||
<!-- <a-form-item label="物料号">--> |
||||
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="物料名称">--> |
||||
<!-- <a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="仓储地点">--> |
||||
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!--<!– </a-row>–>--> |
||||
<!--<!– <a-row :gutter="24">–>--> |
||||
<!--<!– <a-col :xl="5" :lg="7" :md="8" :sm="16">–>--> |
||||
<!--<!– <a-form-item label="入库批次">–>--> |
||||
<!--<!– <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>–>--> |
||||
<!--<!– </a-form-item>–>--> |
||||
<!--<!– </a-col>–>--> |
||||
<!--<!– <a-col :xl="5" :lg="7" :md="8" :sm="16">–>--> |
||||
<!--<!– <a-form-item label="保质期">–>--> |
||||
<!--<!– <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>–>--> |
||||
<!--<!– </a-form-item>–>--> |
||||
<!--<!– </a-col>–>--> |
||||
|
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库人">--> |
||||
<!-- <a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">--> |
||||
<!-- <a-range-picker--> |
||||
<!-- style="width: 180px"--> |
||||
<!-- format="YYYY-MM-DD"--> |
||||
<!-- :placeholder="['开始时间', '结束时间']"--> |
||||
<!-- @change="onDateChangestorageTime"--> |
||||
<!-- />--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
|
||||
|
||||
<!-- </a-row>--> |
||||
</a-form> |
||||
</div> |
||||
<!-- 查询区域-END --> |
||||
|
||||
<!-- 操作按钮区域 --> |
||||
<div class="table-operator" style="float: left"> |
||||
|
||||
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<!-- <a-button type="primary" icon="download" @click="handleExportXls('物资入库流程')">导出</a-button>--> |
||||
<!-- <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-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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
|
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">–>--> |
||||
<!--<!– <a>删除</a>–>--> |
||||
<!--<!– </a-popconfirm>–>--> |
||||
<!--<!– </a-menu-item>–>--> |
||||
<!--<!– </a-menu>–>--> |
||||
<!--<!– </a-dropdown>–>--> |
||||
<!-- </span>--> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >--> |
||||
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
import { mixinDevice } from '@/utils/mixin' |
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "LndustrialExplosiveEnterDetail", |
||||
mixins:[JeecgListMixin,mixinDevice], |
||||
components: { |
||||
ProcessMaterialWarehousingListList, |
||||
ProcessMaterialWarehousingModal, |
||||
JSuperQuery |
||||
}, |
||||
props:{ |
||||
materWared:{ |
||||
type:String, |
||||
}, |
||||
}, |
||||
data () { |
||||
return { |
||||
labelCol: { |
||||
xs: { span: 4 }, |
||||
sm: { span: 4 }, |
||||
}, |
||||
wrapperCol: { |
||||
xs: { span: 20 }, |
||||
sm: { span: 20 }, |
||||
}, |
||||
description: '物资入库流程管理页面', |
||||
processMatlWarehouId: '', |
||||
// 表头 |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'物料组', |
||||
align:"center", |
||||
dataIndex: 'materialGroup', |
||||
}, |
||||
{ |
||||
title:'物料号', |
||||
align:"center", |
||||
dataIndex: 'materialNumber', |
||||
}, |
||||
{ |
||||
title:'物料名称', |
||||
align:"center", |
||||
dataIndex: 'materialDescription' |
||||
}, |
||||
{ |
||||
title:'规格型号', |
||||
align:"center", |
||||
dataIndex: 'materialName', |
||||
}, |
||||
{ |
||||
title:'仓储地点', |
||||
align:"center", |
||||
dataIndex: 'unitWasteWarehouseCodeId', |
||||
}, |
||||
// { |
||||
// title:'生产时间', |
||||
// align:"center", |
||||
// dataIndex: 'productionTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'保质期', |
||||
// align:"center", |
||||
// dataIndex: 'expirationDate', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
|
||||
// { |
||||
// title:'器材编号', |
||||
// align:"center", |
||||
// dataIndex: 'equipment_dictText', |
||||
// }, |
||||
|
||||
|
||||
{ |
||||
title:'单位', |
||||
align:"center", |
||||
dataIndex: 'materialUnit', |
||||
}, |
||||
{ |
||||
title:'单价', |
||||
align:"center", |
||||
dataIndex: 'materialPrice' |
||||
}, |
||||
{ |
||||
title:'金额', |
||||
align:"center", |
||||
dataIndex: 'materialAmount' |
||||
}, |
||||
{ |
||||
title:'供应商', |
||||
align:"center", |
||||
dataIndex: 'supplierId' |
||||
}, |
||||
{ |
||||
title:'批次', |
||||
align:"center", |
||||
dataIndex: 'supplierBatch' |
||||
}, |
||||
{ |
||||
title:'入库时间', |
||||
align:"center", |
||||
dataIndex: 'storageTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
{ |
||||
title:'入库人', |
||||
align:"center", |
||||
dataIndex: 'librarySign', |
||||
}, |
||||
{ |
||||
title:'核算属性', |
||||
align:"center", |
||||
dataIndex: 'accountingAttributes_dictText', |
||||
}, |
||||
// { |
||||
// title:'批次入库时间', |
||||
// align:"center", |
||||
// dataIndex: 'warehousingTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'用途', |
||||
// align:"center", |
||||
// dataIndex: 'purpose' |
||||
// }, |
||||
// { |
||||
// title:'删除标志', |
||||
// align:"center", |
||||
// dataIndex: 'defFlag' |
||||
// }, |
||||
// { |
||||
// title:'删除时间', |
||||
// align:"center", |
||||
// dataIndex: 'delTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
], |
||||
url: { |
||||
// list: "/hy/processMaterialWarehousing/listProcessMaterialWarehousingListByMainId", |
||||
list: "/hy/processMaterialWarehousing/queryByIdWarehousingList", |
||||
delete: "/hy/processMaterialWarehousing/deleteProcessMaterialWarehousingList", |
||||
deleteBatch: "/hy/processMaterialWarehousing/deleteBatchProcessMaterialWarehousingList", |
||||
exportXlsUrl: "/hy/processMaterialWarehousing/exportProcessMaterialWarehousingList", |
||||
importUrl: "/hy/processMaterialWarehousing/importProcessMaterialWarehousingList", |
||||
}, |
||||
// url: { |
||||
// list: "/hy/processMaterialWarehousing/list", |
||||
// delete: "/hy/processMaterialWarehousing/delete", |
||||
// deleteBatch: "/hy/processMaterialWarehousing/deleteBatch", |
||||
// exportXlsUrl: "/hy/processMaterialWarehousing/exportXls", |
||||
// importExcelUrl: "hy/processMaterialWarehousing/importExcel", |
||||
// }, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
// pagination:{ |
||||
// current: 1, |
||||
// pageSize: 5, |
||||
// pageSizeOptions: ['5', '10', '50'], |
||||
// showTotal: (total, range) => { |
||||
// return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
// }, |
||||
// showQuickJumper: true, |
||||
// showSizeChanger: true, |
||||
// total: 0 |
||||
// }, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
// console.log("========================"+this.processMaterialWarehousingId); |
||||
this.getSuperFieldList(); |
||||
this.processMatlWarehouId = this.$route.params.processMaterialWarehousingId; |
||||
this.loadData(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
onDateChange: function (value, dateString) { |
||||
this.queryParam.productDateBegin=dateString[0]; |
||||
this.queryParam.productDateEnd=dateString[1]; |
||||
console.log() |
||||
}, |
||||
onDateChangestorageTime: function (value, dateString) { |
||||
this.queryParam.inboundDateBegin=dateString[0]; |
||||
this.queryParam.inboundDateEnd=dateString[1]; |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
this.queryParam.processMaterialWarehousingId = this.materWared; |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
console.log("1233333333333333",params); |
||||
getAction(this.url.list, params).then((res) => { |
||||
console.log(res); |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''}) |
||||
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,473 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 730px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<a-row :gutter="24"> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="供应商"> |
||||
<a-input placeholder="请输入供应商信息" v-model="queryParam.supplierId"></a-input> |
||||
</a-form-item> |
||||
</a-col> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="物料组"> |
||||
<a-input placeholder="请输入物料组" v-model="queryParam.materialGroup"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" > |
||||
<a-form-item label="物料号"> |
||||
<a-input placeholder="请输入物料" v-model="queryParam.materialNumber" disabled="disabled"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="物料名称"> |
||||
<a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="仓储地点">--> |
||||
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- </a-row>--> |
||||
<!-- <a-row :gutter="24">--> |
||||
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库批次">--> |
||||
<!-- <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="保质期">--> |
||||
<!-- <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
|
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="入库人"> |
||||
<a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">--> |
||||
<!-- <a-range-picker--> |
||||
<!-- style="width: 180px"--> |
||||
<!-- format="YYYY-MM-DD"--> |
||||
<!-- :placeholder="['开始时间', '结束时间']"--> |
||||
<!-- @change="onDateChangestorageTime"--> |
||||
<!-- />--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
|
||||
|
||||
</a-row> |
||||
</a-form> |
||||
</div> |
||||
<!-- 查询区域-END --> |
||||
|
||||
<!-- 操作按钮区域 --> |
||||
|
||||
<div class="table-operator" style="width: 18%"> |
||||
|
||||
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<a-button type="primary" icon="download" @click="handleExportXls('物资入库流程')">导出</a-button> |
||||
<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-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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
|
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">–>--> |
||||
<!--<!– <a>删除</a>–>--> |
||||
<!--<!– </a-popconfirm>–>--> |
||||
<!--<!– </a-menu-item>–>--> |
||||
<!--<!– </a-menu>–>--> |
||||
<!--<!– </a-dropdown>–>--> |
||||
<!-- </span>--> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >--> |
||||
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
import { mixinDevice } from '@/utils/mixin' |
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "ProcessMaterialWarehousingList", |
||||
mixins:[JeecgListMixin,mixinDevice], |
||||
components: { |
||||
ProcessMaterialWarehousingListList, |
||||
ProcessMaterialWarehousingModal, |
||||
JSuperQuery |
||||
}, |
||||
props:{ |
||||
materWared:{ |
||||
type:String, |
||||
}, |
||||
}, |
||||
data () { |
||||
return { |
||||
labelCol: { |
||||
xs: { span: 4 }, |
||||
sm: { span: 4 }, |
||||
}, |
||||
wrapperCol: { |
||||
xs: { span: 20 }, |
||||
sm: { span: 20 }, |
||||
}, |
||||
description: '物资入库流程管理页面', |
||||
processMatlWarehouId: '', |
||||
// 表头 |
||||
columns: [ |
||||
{ |
||||
title: '序号', |
||||
dataIndex: '', |
||||
key:'rowIndex', |
||||
width:60, |
||||
align:"center", |
||||
customRender:function (t,r,index) { |
||||
return parseInt(index)+1; |
||||
} |
||||
}, |
||||
{ |
||||
title:'物料组', |
||||
align:"center", |
||||
dataIndex: 'materialGroup', |
||||
}, |
||||
{ |
||||
title:'物料号', |
||||
align:"center", |
||||
dataIndex: 'materialNumber', |
||||
}, |
||||
{ |
||||
title:'物料名称', |
||||
align:"center", |
||||
dataIndex: 'materialDescription' |
||||
}, |
||||
{ |
||||
title:'规格', |
||||
align:"center", |
||||
dataIndex: 'materialName' |
||||
}, |
||||
{ |
||||
title:'型号', |
||||
align:"center", |
||||
dataIndex: 'type' |
||||
}, |
||||
{ |
||||
title:'仓储地点', |
||||
align:"center", |
||||
dataIndex: 'unitWasteWarehouseCodeId', |
||||
}, |
||||
// { |
||||
// title:'生产时间', |
||||
// align:"center", |
||||
// dataIndex: 'productionTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'保质期', |
||||
// align:"center", |
||||
// dataIndex: 'expirationDate', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
|
||||
// { |
||||
// title:'器材编号', |
||||
// align:"center", |
||||
// dataIndex: 'equipment_dictText', |
||||
// }, |
||||
|
||||
|
||||
{ |
||||
title:'单位', |
||||
align:"center", |
||||
dataIndex: 'materialUnit', |
||||
}, |
||||
{ |
||||
title:'单价', |
||||
align:"center", |
||||
dataIndex: 'materialPrice' |
||||
}, |
||||
{ |
||||
title:'金额', |
||||
align:"center", |
||||
dataIndex: 'materialAmount' |
||||
}, |
||||
{ |
||||
title:'供应商', |
||||
align:"center", |
||||
dataIndex: 'supplierId' |
||||
}, |
||||
{ |
||||
title:'批次', |
||||
align:"center", |
||||
dataIndex: 'supplierBatch' |
||||
}, |
||||
{ |
||||
title:'入库时间', |
||||
align:"center", |
||||
dataIndex: 'storageTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
{ |
||||
title:'入库人', |
||||
align:"center", |
||||
dataIndex: 'librarySign', |
||||
}, |
||||
{ |
||||
title:'核算属性', |
||||
align:"center", |
||||
dataIndex: 'accountingAttributes_dictText', |
||||
}, |
||||
// { |
||||
// title:'批次入库时间', |
||||
// align:"center", |
||||
// dataIndex: 'warehousingTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'用途', |
||||
// align:"center", |
||||
// dataIndex: 'purpose' |
||||
// }, |
||||
// { |
||||
// title:'删除标志', |
||||
// align:"center", |
||||
// dataIndex: 'defFlag' |
||||
// }, |
||||
// { |
||||
// title:'删除时间', |
||||
// align:"center", |
||||
// dataIndex: 'delTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
], |
||||
url: { |
||||
// list: "/hy/processMaterialWarehousing/listProcessMaterialWarehousingListByMainId", |
||||
list: "/hy/processMaterialWarehousing/queryByIdWarehousingList", |
||||
delete: "/hy/processMaterialWarehousing/deleteProcessMaterialWarehousingList", |
||||
deleteBatch: "/hy/processMaterialWarehousing/deleteBatchProcessMaterialWarehousingList", |
||||
exportXlsUrl: "/hy/processMaterialWarehousing/exportProcessMaterialWarehousingList", |
||||
importUrl: "/hy/processMaterialWarehousing/importProcessMaterialWarehousingList", |
||||
}, |
||||
// url: { |
||||
// list: "/hy/processMaterialWarehousing/list", |
||||
// delete: "/hy/processMaterialWarehousing/delete", |
||||
// deleteBatch: "/hy/processMaterialWarehousing/deleteBatch", |
||||
// exportXlsUrl: "/hy/processMaterialWarehousing/exportXls", |
||||
// importExcelUrl: "hy/processMaterialWarehousing/importExcel", |
||||
// }, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
// pagination:{ |
||||
// current: 1, |
||||
// pageSize: 5, |
||||
// pageSizeOptions: ['5', '10', '50'], |
||||
// showTotal: (total, range) => { |
||||
// return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
// }, |
||||
// showQuickJumper: true, |
||||
// showSizeChanger: true, |
||||
// total: 0 |
||||
// }, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
// console.log("========================"+this.processMaterialWarehousingId); |
||||
this.getSuperFieldList(); |
||||
this.processMatlWarehouId = this.$route.params.processMaterialWarehousingId; |
||||
this.loadData(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
|
||||
searchQuery() { |
||||
console.log("asdfasd") |
||||
this.loadData(1); |
||||
}, |
||||
|
||||
|
||||
onDateChange: function (value, dateString) { |
||||
this.queryParam.productDateBegin=dateString[0]; |
||||
this.queryParam.productDateEnd=dateString[1]; |
||||
console.log() |
||||
}, |
||||
onDateChangestorageTime: function (value, dateString) { |
||||
this.queryParam.inboundDateBegin=dateString[0]; |
||||
this.queryParam.inboundDateEnd=dateString[1]; |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
this.queryParam.processMaterialWarehousingId = this.materWared; |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
console.log("1233333333333333",params); |
||||
getAction(this.url.list, params).then((res) => { |
||||
console.log(res); |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''}) |
||||
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,446 @@
|
||||
<template> |
||||
<a-card :bordered="false" style="height: 830px"> |
||||
<!-- 查询区域 --> |
||||
<div class="table-page-search-wrapper"> |
||||
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
||||
<a-row :gutter="24"> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="供应商"> |
||||
<a-input placeholder="请输入供应商信息" v-model="queryParam.supplierId"></a-input> |
||||
</a-form-item> |
||||
</a-col> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="物料组"> |
||||
<a-input placeholder="请输入物料组" v-model="queryParam.materialGroup"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" > |
||||
<a-form-item label="物料号"> |
||||
<a-input placeholder="请输入物料" v-model="queryParam.materialNumber" disabled="disabled"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
||||
<a-form-item label="物料名称"> |
||||
<a-input placeholder="请输入物料名称" v-model="queryParam.materialName"/> |
||||
</a-form-item> |
||||
</a-col> |
||||
|
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="出库人">--> |
||||
<!-- <a-input placeholder="请选择出库人" v-model="queryParam.librarySign"/>--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
||||
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">--> |
||||
<!-- <a-range-picker--> |
||||
<!-- style="width: 180px"--> |
||||
<!-- format="YYYY-MM-DD"--> |
||||
<!-- :placeholder="['开始时间', '结束时间']"--> |
||||
<!-- @change="onDateChangestorageTime"--> |
||||
<!-- />--> |
||||
<!-- </a-form-item>--> |
||||
<!-- </a-col>--> |
||||
|
||||
|
||||
</a-row> |
||||
</a-form> |
||||
</div> |
||||
<!-- 查询区域-END --> |
||||
|
||||
<!-- 操作按钮区域 --> |
||||
<div class="table-operator" style="width: 18%"> |
||||
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
||||
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button> |
||||
<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-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>--> |
||||
</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" |
||||
bordered |
||||
rowKey="id" |
||||
class="j-table-force-nowrap" |
||||
:scroll="{x:true}" |
||||
:columns="columns" |
||||
:dataSource="dataSource" |
||||
:pagination="ipagination" |
||||
:loading="loading" |
||||
:customRow="clickThenSelect" |
||||
@change="handleTableChange"> |
||||
|
||||
<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> |
||||
<img v-else :src="getImgView(text)" 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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">--> |
||||
<!-- <a>删除</a>--> |
||||
<!-- </a-popconfirm>--> |
||||
<!-- </a-menu-item>--> |
||||
<!-- </a-menu>--> |
||||
<!-- </a-dropdown>--> |
||||
</span> |
||||
|
||||
</a-table> |
||||
</div> |
||||
|
||||
<!-- <a-tabs defaultActiveKey="1">--> |
||||
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >--> |
||||
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />--> |
||||
<!-- </a-tab-pane>--> |
||||
<!-- </a-tabs>--> |
||||
|
||||
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>--> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
|
||||
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
||||
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal' |
||||
import { getAction } from '@/api/manage' |
||||
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList' |
||||
import '@/assets/less/TableExpand.less' |
||||
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
||||
import { initDictOptions } from '@comp/dict/JDictSelectUtil' |
||||
|
||||
export default { |
||||
name: "ProcessMaterialsDeliveryDetail", |
||||
mixins:[JeecgListMixin], |
||||
components: { |
||||
ProcessMaterialsDeliveryListList, |
||||
ProcessMaterialsDeliveryModal, |
||||
JSuperQuery |
||||
}, |
||||
props:{ |
||||
deliveryDetailId:{ |
||||
type:String, |
||||
}, |
||||
}, |
||||
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: 'materialGroup', |
||||
}, |
||||
{ |
||||
title:'物料号', |
||||
align:"center", |
||||
dataIndex: 'materialsNumber', |
||||
}, |
||||
{ |
||||
title:'物料名称', |
||||
align:"center", |
||||
dataIndex: 'materialName', |
||||
}, |
||||
{ |
||||
title:'规格', |
||||
align:"center", |
||||
dataIndex: 'materialName1', |
||||
}, |
||||
{ |
||||
title:'型号', |
||||
align:"center", |
||||
dataIndex: 'materialName2', |
||||
}, |
||||
{ |
||||
title:'单位', |
||||
align:"center", |
||||
dataIndex: 'materialUnit', |
||||
}, |
||||
{ |
||||
title:'请发数', |
||||
align:"center", |
||||
dataIndex: 'pleaseSendNumber' |
||||
}, |
||||
{ |
||||
title:'实发数', |
||||
align:"center", |
||||
dataIndex: 'actualSendNumber' |
||||
}, |
||||
{ |
||||
title:'供货商', |
||||
align:"center", |
||||
dataIndex: 'supplier', |
||||
}, |
||||
{ |
||||
title:'单价', |
||||
align:"center", |
||||
dataIndex: 'materialPrice' |
||||
}, |
||||
{ |
||||
title:'金额', |
||||
align:"center", |
||||
dataIndex: 'materialAmount' |
||||
}, |
||||
{ |
||||
title:'用途', |
||||
align:"center", |
||||
dataIndex: 'purpose', |
||||
}, |
||||
{ |
||||
title:'出库时间', |
||||
align:"center", |
||||
dataIndex: 'createTime', |
||||
customRender:function (text) { |
||||
return !text?"":(text.length>10?text.substr(0,10):text) |
||||
} |
||||
}, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
|
||||
/*{ |
||||
title: '操作', |
||||
dataIndex: 'action', |
||||
align:"center", |
||||
fixed:"right", |
||||
width:147, |
||||
scopedSlots: { customRender: 'action' }, |
||||
}*/ |
||||
], |
||||
url: { |
||||
list: "/hy/processMaterialsDelivery/stockRemovalDetails", |
||||
// list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId", |
||||
delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList", |
||||
deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList", |
||||
exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList", |
||||
importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList", |
||||
}, |
||||
// columns: [ |
||||
// { |
||||
// title: '序号', |
||||
// dataIndex: '', |
||||
// key:'rowIndex', |
||||
// width:60, |
||||
// align:"center", |
||||
// customRender:function (t,r,index) { |
||||
// return parseInt(index)+1; |
||||
// } |
||||
// }, |
||||
// { |
||||
// title:'流程发起公司', |
||||
// align:"center", |
||||
// dataIndex: 'company_dictText', |
||||
// }, |
||||
// { |
||||
// title:'流程发起时间', |
||||
// align:"center", |
||||
// dataIndex: 'createTime' |
||||
// }, |
||||
// { |
||||
// title:'流程发起部门', |
||||
// align:"center", |
||||
// dataIndex: 'sysOrgCode_dictText', |
||||
// }, |
||||
// { |
||||
// title:'流程发起人', |
||||
// align:"center", |
||||
// dataIndex: 'createBy' |
||||
// }, |
||||
// { |
||||
// title:'物资类型', |
||||
// align:"center", |
||||
// dataIndex: 'materialType_dictText', |
||||
// }, |
||||
// { |
||||
// title:'出库时间', |
||||
// align:"center", |
||||
// dataIndex: 'deliveryTime', |
||||
// customRender:function (text) { |
||||
// return !text?"":(text.length>10?text.substr(0,10):text) |
||||
// } |
||||
// }, |
||||
// // { |
||||
// // title:'文件id', |
||||
// // align:"center", |
||||
// // dataIndex: 'fileId', |
||||
// // scopedSlots: {customRender: 'fileSlot'} |
||||
// // }, |
||||
// { |
||||
// title: '操作', |
||||
// dataIndex: 'action', |
||||
// align:"center", |
||||
// fixed:"right", |
||||
// width:147, |
||||
// scopedSlots: { customRender: 'action' }, |
||||
// } |
||||
// ], |
||||
// url: { |
||||
// list: "/hy/processMaterialsDelivery/listStockRemoval", |
||||
// delete: "/hy/processMaterialsDelivery/delete", |
||||
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatch", |
||||
// exportXlsUrl: "/hy/processMaterialsDelivery/exportXls", |
||||
// importExcelUrl: "hy/processMaterialsDelivery/importExcel", |
||||
// }, |
||||
dictOptions:{ |
||||
company:[], |
||||
sysOrgCode:[], |
||||
materialType:[], |
||||
}, |
||||
/* 分页参数 */ |
||||
ipagination:{ |
||||
current: 1, |
||||
pageSize: 5, |
||||
pageSizeOptions: ['5', '10', '50'], |
||||
showTotal: (total, range) => { |
||||
return range[0] + "-" + range[1] + " 共" + total + "条" |
||||
}, |
||||
showQuickJumper: true, |
||||
showSizeChanger: true, |
||||
total: 0 |
||||
}, |
||||
selectedMainId:'', |
||||
superFieldList:[], |
||||
} |
||||
}, |
||||
created() { |
||||
console.log("=============",this.deliveryDetailId); |
||||
this.getSuperFieldList(); |
||||
}, |
||||
computed: { |
||||
importExcelUrl: function(){ |
||||
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
||||
} |
||||
}, |
||||
methods: { |
||||
|
||||
searchQuery() { |
||||
this.loadData(1); |
||||
}, |
||||
|
||||
initDictConfig(){ |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'company', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('sys_depart,depart_name,id').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'sysOrgCode', res.result) |
||||
} |
||||
}) |
||||
initDictOptions('').then((res) => { |
||||
if (res.success) { |
||||
this.$set(this.dictOptions, 'materialType', res.result) |
||||
} |
||||
}) |
||||
}, |
||||
clickThenSelect(record) { |
||||
return { |
||||
on: { |
||||
click: () => { |
||||
this.onSelectChange(record.id.split(","), [record]); |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
onClearSelected() { |
||||
this.selectedRowKeys = []; |
||||
this.selectionRows = []; |
||||
this.selectedMainId='' |
||||
}, |
||||
onSelectChange(selectedRowKeys, selectionRows) { |
||||
this.selectedMainId=selectedRowKeys[0] |
||||
this.selectedRowKeys = selectedRowKeys; |
||||
this.selectionRows = selectionRows; |
||||
}, |
||||
loadData(arg) { |
||||
if(!this.url.list){ |
||||
this.$message.error("请设置url.list属性!") |
||||
return |
||||
} |
||||
//加载数据 若传入参数1则加载第一页的内容 |
||||
if (arg === 1) { |
||||
this.ipagination.current = 1; |
||||
} |
||||
this.onClearSelected() |
||||
this.queryParam.processMaterialsDeliveryId = this.deliveryDetailId; |
||||
var params = this.getQueryParams();//查询条件 |
||||
this.loading = true; |
||||
console.log("=====>",params) |
||||
getAction(this.url.list, params).then((res) => { |
||||
console.log(res); |
||||
if (res.success) { |
||||
this.dataSource = res.result.records; |
||||
this.ipagination.total = res.result.total; |
||||
} |
||||
if(res.code===510){ |
||||
this.$message.warning(res.message) |
||||
} |
||||
this.loading = false; |
||||
}) |
||||
}, |
||||
getSuperFieldList(){ |
||||
let fieldList=[]; |
||||
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'}) |
||||
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'}) |
||||
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'}) |
||||
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'}) |
||||
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''}) |
||||
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'}) |
||||
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
||||
this.superFieldList = fieldList |
||||
} |
||||
} |
||||
} |
||||
</script> |
||||
<style scoped> |
||||
@import '~@assets/less/common.less'; |
||||
</style> |
@ -0,0 +1,97 @@
|
||||
<template> |
||||
<a-card :bordered="false" > |
||||
|
||||
<a-tabs style="text-align: center"> |
||||
<a-tab-pane tab="物资明细" key="1" forceRender> |
||||
<LndustrialExplosiveComeDetail :delivery-detail-id="this.$route.query.item" /> |
||||
</a-tab-pane> |
||||
|
||||
<a-tab-pane tab="流程节点图" key="2" forceRender> |
||||
<!-- <process-material-warehousing-flow-chart />--> |
||||
</a-tab-pane> |
||||
<a-tab-pane tab="数据报表" key="3" forceRender> |
||||
<LndustrialExplosiveComeStatement /> |
||||
</a-tab-pane> |
||||
</a-tabs> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
import LndustrialExplosiveComeDetail from '@views/accessrecords/modules/LndustrialExplosiveComeDetail' |
||||
import LndustrialExplosiveComeFlowChart from '@views/accessrecords/flowchart/LndustrialExplosiveComeFlowChart' |
||||
import LndustrialExplosiveComeStatement from '@views/accessrecords/statement/LndustrialExplosiveComeStatement' |
||||
|
||||
export default { |
||||
name: 'LndustrialExplosiveComePlan', |
||||
components: { |
||||
LndustrialExplosiveComeDetail, |
||||
LndustrialExplosiveComeFlowChart, |
||||
LndustrialExplosiveComeStatement |
||||
}, |
||||
data() { |
||||
return { |
||||
isNew:'', |
||||
pictrueId:'', |
||||
procInstId:'', |
||||
proMaterListId: this.$route.query.item, |
||||
url:{ |
||||
list:"", |
||||
}, |
||||
} |
||||
}, |
||||
props: { |
||||
|
||||
/*流程数据*/ |
||||
processData:{ |
||||
type:Object, |
||||
default:()=>{return {}}, |
||||
required:false |
||||
}, |
||||
item: { |
||||
type:String, |
||||
}, |
||||
}, |
||||
// props: { |
||||
// /*流程数据*/ |
||||
// processData:{ |
||||
// type:Object, |
||||
// default:()=>{return {}}, |
||||
// required:false |
||||
// }, |
||||
// /*是否新增*/ |
||||
// isNew: {type: Boolean, default: false, required: false}, |
||||
// /*是否处理流程*/ |
||||
// task: {type: Boolean, default: false, required: false}, |
||||
// //流程表单data |
||||
// formData: { |
||||
// type: Object, |
||||
// default: () => { |
||||
// }, |
||||
// required: false |
||||
// }, |
||||
// //表单模式:false流程表单 true普通表单 |
||||
// formBpm: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// }, |
||||
// //表单禁用 |
||||
// disabled: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// } |
||||
// }, |
||||
created(){ |
||||
console.log(this.proMaterListId); |
||||
}, |
||||
methods: { |
||||
|
||||
|
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,97 @@
|
||||
<template> |
||||
<a-card :bordered="false" > |
||||
|
||||
<a-tabs style="text-align: center"> |
||||
<a-tab-pane tab="物资明细" key="1" forceRender> |
||||
<LndustrialExplosiveEnterDetail :materWared="this.$route.query.item" /> |
||||
</a-tab-pane> |
||||
|
||||
<a-tab-pane tab="流程节点图" key="2" forceRender> |
||||
<!-- <process-material-warehousing-flow-chart />--> |
||||
</a-tab-pane> |
||||
<a-tab-pane tab="数据报表" key="3" forceRender> |
||||
<LndustrialExplosiveEnterStatement /> |
||||
</a-tab-pane> |
||||
</a-tabs> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
import LndustrialExplosiveEnterDetail from '@views/accessrecords/modules/LndustrialExplosiveEnterDetail' |
||||
import LndustrialExplosiveEnterFlowChart from '@views/accessrecords/flowchart/LndustrialExplosiveEnterFlowChart' |
||||
import LndustrialExplosiveEnterStatement from '@views/accessrecords/statement/LndustrialExplosiveEnterStatement' |
||||
|
||||
export default { |
||||
name: 'LndustrialExplosiveEnterPlan', |
||||
components: { |
||||
LndustrialExplosiveEnterDetail, |
||||
LndustrialExplosiveEnterFlowChart, |
||||
LndustrialExplosiveEnterStatement |
||||
}, |
||||
data() { |
||||
return { |
||||
isNew:'', |
||||
pictrueId:'', |
||||
procInstId:'', |
||||
proMaterListId: this.$route.query.item, |
||||
url:{ |
||||
list:"", |
||||
}, |
||||
} |
||||
}, |
||||
props: { |
||||
|
||||
/*流程数据*/ |
||||
processData:{ |
||||
type:Object, |
||||
default:()=>{return {}}, |
||||
required:false |
||||
}, |
||||
item: { |
||||
type:String, |
||||
}, |
||||
}, |
||||
// props: { |
||||
// /*流程数据*/ |
||||
// processData:{ |
||||
// type:Object, |
||||
// default:()=>{return {}}, |
||||
// required:false |
||||
// }, |
||||
// /*是否新增*/ |
||||
// isNew: {type: Boolean, default: false, required: false}, |
||||
// /*是否处理流程*/ |
||||
// task: {type: Boolean, default: false, required: false}, |
||||
// //流程表单data |
||||
// formData: { |
||||
// type: Object, |
||||
// default: () => { |
||||
// }, |
||||
// required: false |
||||
// }, |
||||
// //表单模式:false流程表单 true普通表单 |
||||
// formBpm: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// }, |
||||
// //表单禁用 |
||||
// disabled: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// } |
||||
// }, |
||||
created(){ |
||||
console.log(this.proMaterListId); |
||||
}, |
||||
methods: { |
||||
|
||||
|
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,97 @@
|
||||
<template> |
||||
<a-card :bordered="false" > |
||||
|
||||
<a-tabs style="text-align: center"> |
||||
<a-tab-pane tab="物资明细" key="1" forceRender> |
||||
<process-material-warehousing-detail :materWared="this.$route.query.item" /> |
||||
</a-tab-pane> |
||||
|
||||
<a-tab-pane tab="流程节点图" key="2" forceRender> |
||||
<!-- <process-material-warehousing-flow-chart />--> |
||||
</a-tab-pane> |
||||
<a-tab-pane tab="数据报表" key="3" forceRender> |
||||
<process-material-warehousing-statement /> |
||||
</a-tab-pane> |
||||
</a-tabs> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
import ProcessMaterialWarehousingDetail from '../modules/ProcessMaterialWarehousingDetail' |
||||
import ProcessMaterialWarehousingFlowChart from '@views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart' |
||||
import ProcessMaterialWarehousingStatement from '@views/accessrecords/statement/ProcessMaterialWarehousingStatement' |
||||
|
||||
export default { |
||||
name: 'ProcessMaterialWarehousingPlan', |
||||
components: { |
||||
ProcessMaterialWarehousingDetail, |
||||
ProcessMaterialWarehousingFlowChart, |
||||
ProcessMaterialWarehousingStatement |
||||
}, |
||||
data() { |
||||
return { |
||||
isNew:'', |
||||
pictrueId:'', |
||||
procInstId:'', |
||||
proMaterListId: this.$route.query.item, |
||||
url:{ |
||||
list:"", |
||||
}, |
||||
} |
||||
}, |
||||
props: { |
||||
|
||||
/*流程数据*/ |
||||
processData:{ |
||||
type:Object, |
||||
default:()=>{return {}}, |
||||
required:false |
||||
}, |
||||
item: { |
||||
type:String, |
||||
}, |
||||
}, |
||||
// props: { |
||||
// /*流程数据*/ |
||||
// processData:{ |
||||
// type:Object, |
||||
// default:()=>{return {}}, |
||||
// required:false |
||||
// }, |
||||
// /*是否新增*/ |
||||
// isNew: {type: Boolean, default: false, required: false}, |
||||
// /*是否处理流程*/ |
||||
// task: {type: Boolean, default: false, required: false}, |
||||
// //流程表单data |
||||
// formData: { |
||||
// type: Object, |
||||
// default: () => { |
||||
// }, |
||||
// required: false |
||||
// }, |
||||
// //表单模式:false流程表单 true普通表单 |
||||
// formBpm: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// }, |
||||
// //表单禁用 |
||||
// disabled: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// } |
||||
// }, |
||||
created(){ |
||||
console.log(this.proMaterListId); |
||||
}, |
||||
methods: { |
||||
|
||||
|
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,97 @@
|
||||
<template> |
||||
<a-card :bordered="false" > |
||||
|
||||
<a-tabs style="text-align: center"> |
||||
<a-tab-pane tab="物资明细" key="1" forceRender> |
||||
<ProcessMaterialsDeliveryDetail :delivery-detail-id="this.$route.query.item" /> |
||||
</a-tab-pane> |
||||
|
||||
<a-tab-pane tab="流程节点图" key="2" forceRender> |
||||
<!-- <process-material-warehousing-flow-chart />--> |
||||
</a-tab-pane> |
||||
<a-tab-pane tab="数据报表" key="3" forceRender> |
||||
<ProcessMaterialsDeliveryStatement /> |
||||
</a-tab-pane> |
||||
</a-tabs> |
||||
</a-card> |
||||
</template> |
||||
|
||||
<script> |
||||
import ProcessMaterialsDeliveryDetail from '@views/accessrecords/modules/ProcessMaterialsDeliveryDetail' |
||||
import ProcessMaterialsDeliveryFlowChart from '@views/accessrecords/flowchart/ProcessMaterialsDeliveryFlowChart' |
||||
import ProcessMaterialsDeliveryStatement from '@views/accessrecords/statement/ProcessMaterialsDeliveryStatement' |
||||
|
||||
export default { |
||||
name: 'ProcessMaterialsDeliveryPlan', |
||||
components: { |
||||
ProcessMaterialsDeliveryDetail, |
||||
ProcessMaterialsDeliveryFlowChart, |
||||
ProcessMaterialsDeliveryStatement |
||||
}, |
||||
data() { |
||||
return { |
||||
isNew:'', |
||||
pictrueId:'', |
||||
procInstId:'', |
||||
proMaterListId: this.$route.query.item, |
||||
url:{ |
||||
list:"", |
||||
}, |
||||
} |
||||
}, |
||||
props: { |
||||
|
||||
/*流程数据*/ |
||||
processData:{ |
||||
type:Object, |
||||
default:()=>{return {}}, |
||||
required:false |
||||
}, |
||||
item: { |
||||
type:String, |
||||
}, |
||||
}, |
||||
// props: { |
||||
// /*流程数据*/ |
||||
// processData:{ |
||||
// type:Object, |
||||
// default:()=>{return {}}, |
||||
// required:false |
||||
// }, |
||||
// /*是否新增*/ |
||||
// isNew: {type: Boolean, default: false, required: false}, |
||||
// /*是否处理流程*/ |
||||
// task: {type: Boolean, default: false, required: false}, |
||||
// //流程表单data |
||||
// formData: { |
||||
// type: Object, |
||||
// default: () => { |
||||
// }, |
||||
// required: false |
||||
// }, |
||||
// //表单模式:false流程表单 true普通表单 |
||||
// formBpm: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// }, |
||||
// //表单禁用 |
||||
// disabled: { |
||||
// type: Boolean, |
||||
// default: false, |
||||
// required: false |
||||
// } |
||||
// }, |
||||
created(){ |
||||
console.log(this.proMaterListId); |
||||
}, |
||||
methods: { |
||||
|
||||
|
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,15 @@
|
||||
<template> |
||||
<div> |
||||
出爆报表 |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "LndustrialExplosiveComeStatement" |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,15 @@
|
||||
<template> |
||||
<div> |
||||
入爆报表 |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: 'LndustrialExplosiveEnterStatement' |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,15 @@
|
||||
<template> |
||||
<div> |
||||
入报表 |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "ProcessMaterialWarehousingStatement" |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
@ -0,0 +1,15 @@
|
||||
<template> |
||||
<div> |
||||
出报表 |
||||
</div> |
||||
</template> |
||||
|
||||
<script> |
||||
export default { |
||||
name: "ProcessMaterialsDeliveryStatement" |
||||
} |
||||
</script> |
||||
|
||||
<style scoped> |
||||
|
||||
</style> |
Loading…
Reference in new issue