|
|
|
@ -15,13 +15,36 @@
|
|
|
|
|
<div class="table-page-search-wrapper"> |
|
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
|
|
|
|
<a-row :gutter="24"> |
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="物资类型"> |
|
|
|
|
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type" |
|
|
|
|
placeholder="请选择物资类型" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="流程发起时间" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-range-picker |
|
|
|
|
format="YYYY-MM-DD" |
|
|
|
|
:value="processTime" |
|
|
|
|
:placeholder="['开始时间', '结束时间']" |
|
|
|
|
@change="processDateChange" |
|
|
|
|
/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="流程发起部门"> |
|
|
|
|
<a-select v-model="queryParam.departId" placeholder="请输入项目部" @mouseenter="getUnit" > |
|
|
|
|
<a-select-option v-for="(item,index) in queryParamsUntil" :key="index" :value="item.unit">{{item.unit_dictText}}</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="流程计划"> |
|
|
|
|
<j-dict-select-tag type="list" v-model="queryParam.processPlan" dictCode="process_plan" |
|
|
|
|
placeholder="请选择物资类型" /> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="4" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
@ -144,7 +167,7 @@
|
|
|
|
|
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
|
|
|
|
import '@/assets/less/TableExpand.less' |
|
|
|
|
|
|
|
|
|
const MODAL_WIDTH = 1200 |
|
|
|
|
const MODAL_WIDTH = 1600 |
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessDelivery', |
|
|
|
|
props: ['multi', 'code', 'groupId', 'param'], |
|
|
|
@ -214,6 +237,7 @@
|
|
|
|
|
// } |
|
|
|
|
], |
|
|
|
|
url: { |
|
|
|
|
listByuntil: '/unitwaste/processUnitWasteWarehouseCode/list', |
|
|
|
|
list: '/hy/processMaterialsDelivery/listByDel', |
|
|
|
|
delete: '/hy/processMaterialsDelivery/delete', |
|
|
|
|
deleteBatch: '/hy/processMaterialsDelivery/deleteBatch', |
|
|
|
@ -243,7 +267,20 @@
|
|
|
|
|
selectedRowKeys: [], |
|
|
|
|
modalWidth: MODAL_WIDTH, |
|
|
|
|
changeData: '', |
|
|
|
|
getFileData: false |
|
|
|
|
getFileData: false, |
|
|
|
|
|
|
|
|
|
//部门查询 |
|
|
|
|
queryParamsUntil:[], |
|
|
|
|
//时间相关查询 |
|
|
|
|
processTime:[], |
|
|
|
|
labelCol: { |
|
|
|
|
xs: { span: 4 }, |
|
|
|
|
sm: { span: 4 }, |
|
|
|
|
}, |
|
|
|
|
wrapperCol: { |
|
|
|
|
xs: { span: 20 }, |
|
|
|
|
sm: { span: 20 }, |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
@ -269,6 +306,23 @@
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
//流程发起时间 |
|
|
|
|
processDateChange: function (value, dateString) { |
|
|
|
|
this.processTime = value |
|
|
|
|
this.queryParam.processTimeBegin=dateString[0]; |
|
|
|
|
this.queryParam.processTimeEnd=dateString[1]; |
|
|
|
|
console.log(this.queryParam) |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
//加載項目部 |
|
|
|
|
getUnit(){ |
|
|
|
|
getAction(this.url.listByuntil).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
this.queryParamsUntil = res.result.records||res.result; |
|
|
|
|
console.log(this.queryParamsUntil) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
handleTableChange(pagination, filters, sorter) { |
|
|
|
|
// console.log("执行了",pagination,filters,sorter) |
|
|
|
|
//分页、排序、筛选变化时触发 |
|
|
|
|