You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
304 lines
9.3 KiB
304 lines
9.3 KiB
<template> |
|
<a-card :bordered="false" :class="'cust-erp-sub-tab'"> |
|
<!-- 操作按钮区域 --> |
|
<div class="table-operator" v-if="mainId"> |
|
<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> |
|
<a-dropdown v-if="selectedRowKeys.length > 0"> |
|
<a-menu slot="overlay"> |
|
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> |
|
</a-menu> |
|
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> |
|
</a-dropdown> |
|
</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" |
|
:scroll="{x:true}" |
|
:columns="columns" |
|
:dataSource="dataSource" |
|
:pagination="ipagination" |
|
:loading="loading" |
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
|
@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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
<a>删除</a> |
|
</a-popconfirm> |
|
</span> |
|
|
|
</a-table> |
|
</div> |
|
|
|
<processUdgetPlanMaterial-modal ref="modalForm" @ok="modalFormOk" :mainId="mainId"></processUdgetPlanMaterial-modal> |
|
</a-card> |
|
</template> |
|
|
|
<script> |
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
import ProcessUdgetPlanMaterialModal from './modules/ProcessUdgetPlanMaterialModal' |
|
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
|
|
|
|
|
export default { |
|
name: "ProcessUdgetPlanMaterialList", |
|
mixins:[JeecgListMixin], |
|
components: { ProcessUdgetPlanMaterialModal,JSuperQuery }, |
|
props:{ |
|
mainId:{ |
|
type:String, |
|
default:'', |
|
required:false |
|
} |
|
}, |
|
watch:{ |
|
mainId:{ |
|
immediate: true, |
|
handler(val) { |
|
if(!this.mainId){ |
|
this.clearList() |
|
}else{ |
|
this.queryParam['id'] = val |
|
this.loadData(1); |
|
} |
|
} |
|
} |
|
}, |
|
data () { |
|
return { |
|
description: '预算计划采购流程管理页面', |
|
disableMixinCreated:true, |
|
// 表头 |
|
columns: [ |
|
{ |
|
title: '#', |
|
dataIndex: '', |
|
key:'rowIndex', |
|
width:60, |
|
align:"center", |
|
customRender:function (t,r,index) { |
|
return parseInt(index)+1; |
|
} |
|
}, |
|
{ |
|
title:'物料组', |
|
align:"center", |
|
dataIndex: 'materialGroup_dictText', |
|
}, |
|
{ |
|
title:'物料号', |
|
align:"center", |
|
dataIndex: 'materialNumber_dictText', |
|
}, |
|
{ |
|
title:'物料描述', |
|
align:"center", |
|
dataIndex: 'materialDescription' |
|
}, |
|
{ |
|
title:'仓储地点_id', |
|
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: 'arrivalNotice' |
|
}, |
|
{ |
|
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: 'materialType' |
|
}, |
|
{ |
|
title:'物料名称及规格型号', |
|
align:"center", |
|
dataIndex: 'materialName_dictText', |
|
}, |
|
{ |
|
title:'系列', |
|
align:"center", |
|
dataIndex: 'materialSeries_dictText', |
|
}, |
|
{ |
|
title:'单位', |
|
align:"center", |
|
dataIndex: 'materialUnit_dictText', |
|
}, |
|
{ |
|
title:'单价', |
|
align:"center", |
|
dataIndex: 'materialPrice' |
|
}, |
|
{ |
|
title:'对比单价', |
|
align:"center", |
|
dataIndex: 'contrastPrice' |
|
}, |
|
{ |
|
title:'数量', |
|
align:"center", |
|
dataIndex: 'materialQuantity' |
|
}, |
|
{ |
|
title:'金额', |
|
align:"center", |
|
dataIndex: 'materialAmount' |
|
}, |
|
{ |
|
title:'执行标准', |
|
align:"center", |
|
dataIndex: 'materialStandard' |
|
}, |
|
{ |
|
title:'备注', |
|
align:"center", |
|
dataIndex: 'remarks' |
|
}, |
|
{ |
|
title:'删除标志', |
|
align:"center", |
|
dataIndex: 'delFlag' |
|
}, |
|
{ |
|
title:'删除时间', |
|
align:"center", |
|
dataIndex: 'delTime' |
|
}, |
|
{ |
|
title:'修改人', |
|
align:"center", |
|
dataIndex: 'updateBy' |
|
}, |
|
{ |
|
title: '操作', |
|
dataIndex: 'action', |
|
align:"center", |
|
fixed:"right", |
|
width:100, |
|
scopedSlots: { customRender: 'action' }, |
|
} |
|
], |
|
url: { |
|
list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId", |
|
delete: "/hy/processUdgetPlan/deleteProcessUdgetPlanMaterial", |
|
deleteBatch: "/hy/processUdgetPlan/deleteBatchProcessUdgetPlanMaterial", |
|
exportXlsUrl: "/hy/processUdgetPlan/exportProcessUdgetPlanMaterial", |
|
importUrl: "/hy/processUdgetPlan/importProcessUdgetPlanMaterial", |
|
}, |
|
dictOptions:{ |
|
company:[], |
|
sysOrgCode:[], |
|
materialType:[], |
|
processPlan:[], |
|
}, |
|
superFieldList:[], |
|
} |
|
}, |
|
created() { |
|
this.getSuperFieldList(); |
|
}, |
|
computed: { |
|
importExcelUrl(){ |
|
return `${window._CONFIG['domianURL']}/${this.url.importUrl}/${this.mainId}`; |
|
} |
|
}, |
|
methods: { |
|
clearList(){ |
|
this.dataSource=[] |
|
this.selectedRowKeys=[] |
|
this.ipagination.current = 1 |
|
}, |
|
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:'int',value:'processPlan',text:'流程计划',dictCode:''}) |
|
fieldList.push({type:'date',value:'needTime',text:'需求时间'}) |
|
fieldList.push({type:'int',value:'orderNumber',text:'顺序号',dictCode:''}) |
|
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''}) |
|
this.superFieldList = fieldList |
|
} |
|
} |
|
} |
|
</script> |
|
<style scoped> |
|
@import '~@assets/less/common.less' |
|
</style>
|
|
|