Added changes to the Shop package
This commit is contained in:
parent
1e7409c255
commit
b0570b0f00
|
|
@ -155,13 +155,18 @@
|
|||
data: function() {
|
||||
return {
|
||||
appliedFilters: [],
|
||||
|
||||
active: false,
|
||||
|
||||
sliderConfig: {
|
||||
value: [0, 0],
|
||||
|
||||
max: 500,
|
||||
|
||||
processStyle: {
|
||||
"backgroundColor": "#FF6472"
|
||||
},
|
||||
|
||||
tooltipStyle: {
|
||||
"backgroundColor": "#FF6472",
|
||||
"borderColor": "#FF6472"
|
||||
|
|
@ -188,6 +193,10 @@
|
|||
|
||||
methods: {
|
||||
setMaxPrice: function () {
|
||||
if (this.attribute['code'] != 'price') {
|
||||
return;
|
||||
}
|
||||
|
||||
axios
|
||||
.get(this.maxPriceSrc)
|
||||
.then((response) => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue