更新
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
<div class="app-container">
|
||||
<el-card>
|
||||
<div style="margin-top: 7px; margin-bottom: 7px">
|
||||
<el-input v-model="supplierNameValue" size="small" placeholder="外协厂家或零件图号" style="width: 180px" clearable/>
|
||||
<el-date-picker v-model="timer" type="daterange" value-format="yyyy-MM-dd" size="small" range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期"/>
|
||||
<el-input v-model="supplierNameValue" size="small" placeholder="外协厂家零件图号表单号项目名称" style="width: 220px" clearable/>
|
||||
<el-date-picker v-model="timer" type="daterange" value-format="yyyy-MM-dd" size="small" range-separator="~" start-placeholder="开始日期" end-placeholder="结束日期"/>
|
||||
<el-select v-model="MaterialsValue" placeholder="外协状态" filterable size="small" style="width: 120px" clearable>
|
||||
<el-option
|
||||
v-for="item in Materials"
|
||||
@@ -138,7 +138,7 @@ export default {
|
||||
searchTable(check, this.supplierNameValue, check1, this.MaterialsValue, check2, this.timer[0], this.timer[1], 100000000, this.pageCurrent).then(response => {
|
||||
for (let i = 0; i < response.data.rows.length; i++) {
|
||||
this.tableData1.push({
|
||||
到货状态: response.data.rows[i].到货状态,
|
||||
到货状态: response.data.rows[i].到货状态 === '0' ? '未到' : '已到',
|
||||
项目名称: response.data.rows[i].项目名称,
|
||||
零件图号: response.data.rows[i].零件图号,
|
||||
零件名称: response.data.rows[i].零件名称,
|
||||
@@ -147,7 +147,7 @@ export default {
|
||||
表单号: response.data.rows[i].表单号,
|
||||
工艺计划流水号: response.data.rows[i].工艺计划流水号,
|
||||
单件是否外协: response.data.rows[i].单件是否外协,
|
||||
任务下达日期: response.data.rows[i].任务下达日期,
|
||||
任务下达日期: response.data.rows[i].任务下达日期 ? response.data.rows[i].任务下达日期.split(' ')[0] : '',
|
||||
外协工序: ''
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user