This commit is contained in:
parent
108543cb82
commit
f8bbf49b3f
|
|
@ -456,6 +456,10 @@ export default {
|
|||
query[item.queryKey] = item.value
|
||||
})
|
||||
|
||||
if (query.lightStatus === 3) {
|
||||
this.$set(query, 'lightStatusSeven', 7)
|
||||
}
|
||||
|
||||
// 传递给父组件使用
|
||||
this.$emit('handelSettingQuery', query)
|
||||
},
|
||||
|
|
|
|||
|
|
@ -288,6 +288,11 @@ export default {
|
|||
this.queryParams.sex = sex
|
||||
this.queryParams.isAtt = isAtt
|
||||
this.queryParams.postId = postId
|
||||
|
||||
if (lightStatus === 3) {
|
||||
this.$set(this.queryParams, 'lightStatusSeven', 7)
|
||||
this.queryParams.lightStatus = 1
|
||||
}
|
||||
},
|
||||
|
||||
// 查看分包数量
|
||||
|
|
|
|||
|
|
@ -523,6 +523,11 @@ export default {
|
|||
handelSettingQuery(query) {
|
||||
console.log('筛选条件', query)
|
||||
this.queryParams = query
|
||||
|
||||
if (query.lightStatus === 3) {
|
||||
this.$set(this.queryParams, 'lightStatusSeven', 7)
|
||||
this.queryParams.lightStatus = 1
|
||||
}
|
||||
},
|
||||
|
||||
// 获取筛选条件 查询工程
|
||||
|
|
|
|||
|
|
@ -337,6 +337,10 @@ export default {
|
|||
handelSettingQuery(query) {
|
||||
console.log('筛选条件', query)
|
||||
this.queryParams = query
|
||||
if (query.lightStatus === 3) {
|
||||
this.$set(this.queryParams, 'lightStatusSeven', 7)
|
||||
this.queryParams.lightStatus = 1
|
||||
}
|
||||
},
|
||||
|
||||
// 查看班组数量 从分包点击查看班组
|
||||
|
|
|
|||
Loading…
Reference in New Issue