Commit 60568da0 authored by jingnan's avatar jingnan 👀

ShellacDeploy相关接口查询条件增加isValid为是的判读

parent d2696134
...@@ -155,6 +155,11 @@ export default { ...@@ -155,6 +155,11 @@ export default {
'operator': 'LIKE', 'operator': 'LIKE',
'value': this.form.modelNo || '' 'value': this.form.modelNo || ''
}, },
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
},
{ {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
...@@ -180,6 +185,11 @@ export default { ...@@ -180,6 +185,11 @@ export default {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
'value': this.typeEnum[this.subTypeName] 'value': this.typeEnum[this.subTypeName]
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
} }
] ]
this.setOptions('spec', params) this.setOptions('spec', params)
...@@ -206,6 +216,11 @@ export default { ...@@ -206,6 +216,11 @@ export default {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
'value': this.typeEnum[this.subTypeName] 'value': this.typeEnum[this.subTypeName]
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
} }
] ]
if (this.subTypeName === 'ShellacCardLacquer') { if (this.subTypeName === 'ShellacCardLacquer') {
...@@ -228,6 +243,11 @@ export default { ...@@ -228,6 +243,11 @@ export default {
'operator': 'LIKE', 'operator': 'LIKE',
'value': '' 'value': ''
}, },
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
},
{ {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
...@@ -247,6 +267,11 @@ export default { ...@@ -247,6 +267,11 @@ export default {
'fieldName': 'spec', 'fieldName': 'spec',
'operator': 'LIKE', 'operator': 'LIKE',
'value': '' 'value': ''
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
} }
] ]
this.setOptions('spec', params) this.setOptions('spec', params)
...@@ -267,6 +292,11 @@ export default { ...@@ -267,6 +292,11 @@ export default {
'fieldName': 'realityMark', 'fieldName': 'realityMark',
'operator': 'LIKE', 'operator': 'LIKE',
'value': '' 'value': ''
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
} }
] ]
this.setOptions('realityMark', params) this.setOptions('realityMark', params)
...@@ -362,6 +392,11 @@ export default { ...@@ -362,6 +392,11 @@ export default {
'operator': 'LIKE', 'operator': 'LIKE',
'value': this.form.modelNo || '' 'value': this.form.modelNo || ''
}, },
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
},
{ {
'fieldName': this.subTypeName === 'AssignCardLacquer' ? 'spec' : 'realityMark', 'fieldName': this.subTypeName === 'AssignCardLacquer' ? 'spec' : 'realityMark',
'operator': 'LIKE', 'operator': 'LIKE',
...@@ -397,6 +432,11 @@ export default { ...@@ -397,6 +432,11 @@ export default {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
'value': this.typeEnum[this.subTypeName] 'value': this.typeEnum[this.subTypeName]
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
} }
] ]
this.setOptions('realityMark', params) this.setOptions('realityMark', params)
...@@ -433,6 +473,11 @@ export default { ...@@ -433,6 +473,11 @@ export default {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
'value': this.typeEnum[this.subTypeName] 'value': this.typeEnum[this.subTypeName]
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
} }
] ]
if (this.subTypeName === 'AssignCardPaint') { if (this.subTypeName === 'AssignCardPaint') {
...@@ -523,6 +568,11 @@ export default { ...@@ -523,6 +568,11 @@ export default {
'fieldName': 'subTypeName', 'fieldName': 'subTypeName',
'operator': 'EQ', 'operator': 'EQ',
'value': this.typeEnum[this.subTypeName] 'value': this.typeEnum[this.subTypeName]
},
{
'fieldName': 'isValid',
'operator': 'EQ',
'value': '是'
}] }]
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment