|
@@ -200,6 +200,8 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
this.loading = true
|
|
|
+ console.log(this.queryParams.minCost)
|
|
|
+
|
|
|
// if (reset) {
|
|
|
// this.queryParams = { pageNum: 1, pageSize: 20, orderByColumn: '', isAsc: '', }
|
|
|
// }
|
|
@@ -210,10 +212,10 @@ export default {
|
|
|
tagId: this.queryParams.tagId,
|
|
|
status: this.queryParams.status,
|
|
|
exchangeShow: this.queryParams.exchangeShow,
|
|
|
- minCost: accMul(this.queryParams.minCost, 100),
|
|
|
- maxCost: accMul(this.queryParams.maxCost, 100),
|
|
|
- minValue: accMul(this.queryParams.minValue, 100),
|
|
|
- maxValue: accMul(this.queryParams.maxValue, 100)
|
|
|
+ minCost: this.queryParams.minCost?accMul(this.queryParams.minCost, 100):this.queryParams.minCost,
|
|
|
+ maxCost: this.queryParams.maxCost?accMul(this.queryParams.maxCost, 100):this.queryParams.maxCost,
|
|
|
+ minValue: this.queryParams.minValue?accMul(this.queryParams.minValue, 100):this.queryParams.minValue,
|
|
|
+ maxValue: this.queryParams.maxValue?accMul(this.queryParams.maxValue, 100):this.queryParams.maxValue
|
|
|
}).then(res => {
|
|
|
this.loading = false
|
|
|
if (res.code === 0) {
|