This commit is contained in:
BianLzhaoMin 2025-09-01 17:41:48 +08:00
parent 108543cb82
commit f8bbf49b3f
4 changed files with 18 additions and 0 deletions

View File

@ -456,6 +456,10 @@ export default {
query[item.queryKey] = item.value query[item.queryKey] = item.value
}) })
if (query.lightStatus === 3) {
this.$set(query, 'lightStatusSeven', 7)
}
// 使 // 使
this.$emit('handelSettingQuery', query) this.$emit('handelSettingQuery', query)
}, },

View File

@ -288,6 +288,11 @@ export default {
this.queryParams.sex = sex this.queryParams.sex = sex
this.queryParams.isAtt = isAtt this.queryParams.isAtt = isAtt
this.queryParams.postId = postId this.queryParams.postId = postId
if (lightStatus === 3) {
this.$set(this.queryParams, 'lightStatusSeven', 7)
this.queryParams.lightStatus = 1
}
}, },
// //

View File

@ -523,6 +523,11 @@ export default {
handelSettingQuery(query) { handelSettingQuery(query) {
console.log('筛选条件', query) console.log('筛选条件', query)
this.queryParams = query this.queryParams = query
if (query.lightStatus === 3) {
this.$set(this.queryParams, 'lightStatusSeven', 7)
this.queryParams.lightStatus = 1
}
}, },
// //

View File

@ -337,6 +337,10 @@ export default {
handelSettingQuery(query) { handelSettingQuery(query) {
console.log('筛选条件', query) console.log('筛选条件', query)
this.queryParams = query this.queryParams = query
if (query.lightStatus === 3) {
this.$set(this.queryParams, 'lightStatusSeven', 7)
this.queryParams.lightStatus = 1
}
}, },
// //