质检
This commit is contained in:
@@ -8,7 +8,7 @@ export function searchTable1(...params) {
|
|||||||
data: {
|
data: {
|
||||||
type: '1',
|
type: '1',
|
||||||
name: '车间生产管理_外协到货单_查询数据',
|
name: '车间生产管理_外协到货单_查询数据',
|
||||||
param: ``,
|
param: `外协到货单号_check=${params[2]}&外协到货单号=${params[3]}&外协厂家_check=${params[4]}&外协厂家=${params[5]}`,
|
||||||
Pagination: params[0] + '&' + params[1]
|
Pagination: params[0] + '&' + params[1]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -2,6 +2,10 @@
|
|||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div slot="header">
|
<div slot="header">
|
||||||
|
<span>外协到货单号:</span>
|
||||||
|
<el-input v-model="orderNumber" clearable style="width: 200px" size="small"/>
|
||||||
|
<span>外协厂家:</span>
|
||||||
|
<el-input v-model="outsourcingSupplier" clearable style="width: 200px" size="small"/>
|
||||||
<el-button type="success" size="small" icon="el-icon-search" style="margin-left: 10px;" @click="pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button>
|
<el-button type="success" size="small" icon="el-icon-search" style="margin-left: 10px;" @click="pageCurrent1=1;pageSize1=10;searchTable1()">查询</el-button>
|
||||||
</div>
|
</div>
|
||||||
<el-table v-loading="" :data="tableData1" border style="width: 100%;max-height: 600px;" height="440px" size="mini" @row-click="searchTable2">
|
<el-table v-loading="" :data="tableData1" border style="width: 100%;max-height: 600px;" height="440px" size="mini" @row-click="searchTable2">
|
||||||
@@ -151,6 +155,8 @@ export default {
|
|||||||
name: 'OutsourcingQCSearch',
|
name: 'OutsourcingQCSearch',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
orderNumber: '',
|
||||||
|
outsourcingSupplier: '',
|
||||||
tableData1: [],
|
tableData1: [],
|
||||||
pageCurrent1: 1,
|
pageCurrent1: 1,
|
||||||
pageSize1: 10,
|
pageSize1: 10,
|
||||||
@@ -226,7 +232,10 @@ export default {
|
|||||||
},
|
},
|
||||||
// 查询到货单列表
|
// 查询到货单列表
|
||||||
searchTable1() {
|
searchTable1() {
|
||||||
searchTable1(this.pageCurrent1, this.pageSize1).then(response => {
|
let check1, check2
|
||||||
|
this.orderNumber ? check1 = 1 : check1 = 0
|
||||||
|
this.outsourcingSupplier ? check2 = 1 : check2 = 0
|
||||||
|
searchTable1(this.pageCurrent1, this.pageSize1, check1, this.orderNumber, check2, this.outsourcingSupplier).then(response => {
|
||||||
console.log(response.data, 1)
|
console.log(response.data, 1)
|
||||||
this.tableData1 = response.data.rows
|
this.tableData1 = response.data.rows
|
||||||
this.total1 = response.data.total
|
this.total1 = response.data.total
|
||||||
@@ -258,5 +267,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
span{
|
||||||
|
margin: 0 0 0 20px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user