替换件到货:改查询条件无效

This commit is contained in:
chenjianan
2018-11-23 09:10:48 +08:00
parent da0f79d68e
commit a0e238ef01
2 changed files with 12 additions and 7 deletions

View File

@@ -1,12 +1,13 @@
import request from '@/utils/request'
// 替换单查询
export function searchSubstitutedCard() {
export function searchSubstitutedCard(...params) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: '库存管理_替换件_替换单查询'
name: '库存管理_替换件_替换单查询',
param: `替换单编号_check=${params[0]}&替换单编号=${params[1]}&替换件名称_check=${params[2]}&替换件名称=${params[3]}`
}
})
}

View File

@@ -3,8 +3,8 @@
<el-card>
<span style="margin: 5px">替换单编号</span>
<el-input v-model="substituteNumber" clearable size="small" style="width:200px" />
<span style="margin: 5px">零件图号</span>
<el-input v-model="partNumber" clearable size="small" style="width:200px" />
<span style="margin: 5px">替换件名称</span>
<el-input v-model="subPartName" clearable size="small" style="width:200px" />
<el-button size="small" type="success" icon="el-icon-search" style="margin: 0 0 0 10px" @click="getSubstitutedCard()">查询</el-button>
</el-card>
<el-card>
@@ -65,8 +65,10 @@ export default {
data() {
return {
tableDataExchange: [],
substituteNumber: '',
partNumber: '',
check1: 0,
check2: 0,
substituteNumber: '', // 替换单编号
subPartName: '', // 替换件名称
listLoading: '',
subList: '',
locateNumber: '',
@@ -77,7 +79,9 @@ export default {
// 替换单查询
getSubstitutedCard() {
this.listloading = true
searchSubstitutedCard().then(response => {
this.substituteNumber ? this.check1 = 1 : this.check1 = 0
this.subPartName ? this.check2 = 1 : this.check2 = 0
searchSubstitutedCard(this.check1, this.substituteNumber, this.check2, this.subPartName).then(response => {
this.tableDataExchange = response.data
this.listloading = false
})