|
|
@ -9,6 +9,9 @@ |
|
|
|
</el-button> |
|
|
|
<div v-show="isSearchShow" class="search"> |
|
|
|
<el-form :inline="true" class="tab-header" label-width="120px"> |
|
|
|
<el-form-item label="排产申请编号:"> |
|
|
|
<el-input v-model="queryParams.params.pcApplicationCode" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="采购订单编号:"> |
|
|
|
<el-input v-model="queryParams.params.purchaseOrderNo" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
@ -45,14 +48,15 @@ |
|
|
|
<el-button type="primary" size="small" @click="toInfo(scope.row)">查看</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="状态" header-align="center"> |
|
|
|
<el-table-column label="状态" header-align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span v-if="scope.row.nodeState=='待提交'" type="primary" size="mini">待提交</span> |
|
|
|
<span v-else @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.nodeState }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="applicationDate" label="申请日期" align="center" width="100"/> |
|
|
|
<el-table-column prop="purchaseOrderNo" label="采购订单编号" align="center" width="200"/> |
|
|
|
<el-table-column prop="pcApplicationCode" label="排产申请编号" align="center" width="170"/> |
|
|
|
<el-table-column prop="purchaseOrderNo" label="采购订单编号" align="center" width="170"/> |
|
|
|
<el-table-column prop="modelName" label="车型" align="center"/> |
|
|
|
<el-table-column prop="vehicleNum" fit label="台数" align="center" width="60"/> |
|
|
|
<el-table-column prop="contractPrice" fit label="厂家合同价" align="center" width="130"/> |
|
|
@ -129,7 +133,8 @@ export default { |
|
|
|
nodeState: '', |
|
|
|
purchaseOrderNo: '', |
|
|
|
modelName: '', |
|
|
|
createOrgSid: '' |
|
|
|
createOrgSid: '', |
|
|
|
pcApplicationCode: '' |
|
|
|
} |
|
|
|
}, |
|
|
|
row: {} |
|
|
@ -230,7 +235,8 @@ export default { |
|
|
|
nodeState: '', |
|
|
|
purchaseOrderNo: '', |
|
|
|
modelName: '', |
|
|
|
createOrgSid: '' |
|
|
|
createOrgSid: '', |
|
|
|
pcApplicationCode: '' |
|
|
|
} |
|
|
|
} |
|
|
|
this.init() |
|
|
|