瀏覽代碼

[producer] Correction bug fonction absente (boulange_scroll)

refactoring
Guillaume Bourgeois 5 年之前
父節點
當前提交
5cf58d220a
共有 2 個文件被更改,包括 9 次插入2 次删除
  1. +7
    -0
      producer/web/js/producer.js
  2. +2
    -2
      producer/web/js/vuejs/subscription-form.js

+ 7
- 0
producer/web/js/producer.js 查看文件

@@ -97,3 +97,10 @@ function opendistrib_fix_width_sidebar() {
});
$('#left .fixed').show() ;
}

function opendistrib_scroll(id) {
if($("#"+id).size())
$('html,body').animate({
scrollTop: $("#"+id).offset().top},
1000);
}

+ 2
- 2
producer/web/js/vuejs/subscription-form.js 查看文件

@@ -108,7 +108,7 @@ var app = new Vue({
this.pointSaleActive = this.getPointSale(idPointSale) ;
this.idPointSaleActive = idPointSale ;
boulange_scroll('step-date') ;
opendistrib_scroll('step-date') ;
},
getPointSale: function(idPointSale) {
for(var key in this.pointsSale) {
@@ -127,7 +127,7 @@ var app = new Vue({
if(count == 1 && this.lastCountDays == 0) {
this.lastCountDays = count ;
boulange_scroll('step-days') ;
opendistrib_scroll('step-days') ;
}
},
checkProductAvailable: function(product) {

Loading…
取消
儲存