|
@@ -22,7 +22,14 @@
|
|
|
<div style="width: 20px;text-align: center">-</div>
|
|
|
<!-- <el-input v-model="maxValue" placeholder="最高价格" clearable @keyup.enter.native="pageParams.pageNum = 1;getList()" />-->
|
|
|
<el-input style="width: 220px" v-model="queryParams.maxValue" @clear="queryParams.pageNum = 1;getGoodsList()" placeholder="最高价格" clearable @keyup.enter.native="queryParams.pageNum = 1;getGoodsList()"/>
|
|
|
-
|
|
|
+ </div>
|
|
|
+ <div class="dialog-search">
|
|
|
+ <div>商品类型:</div>
|
|
|
+ <el-select v-model="queryParams.type" placeholder="请选择商品类型" clearable @change="queryParams.pageNum = 1;getGoodsList()">
|
|
|
+ <el-option label="全部" value=""/>
|
|
|
+ <el-option label="实物商品" value="1"/>
|
|
|
+ <el-option label="卡密商品" value="2"/>
|
|
|
+ </el-select>
|
|
|
<div class="ge"></div>
|
|
|
<el-button
|
|
|
type="primary"
|
|
@@ -140,7 +147,7 @@ export default {
|
|
|
"&pageSize=" +
|
|
|
this.pageParams.pageSize +
|
|
|
"&",
|
|
|
- { title: this.goodsTitle, status: "on", minValue: this.queryParams.minValue?accMul(this.queryParams.minValue, 100):this.queryParams.minValue, maxValue: this.queryParams.maxValue?accMul(this.queryParams.maxValue, 100):this.queryParams.maxValue,}
|
|
|
+ { isExcludePurchaseGoods: true, type: this.queryParams.type, title: this.goodsTitle, status: "on", 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.goodsList = res.rows.map((item) => {
|
|
|
return {
|