const season = this.options.form.getWidgetByName("season");
const seasons = ["春", "夏", "秋", "冬"];
const button = document.querySelector('.fr-btn-text');
const currentText = button.textContent;
const currentIndex = seasons.indexOf(currentText);
const nextIndex = (currentIndex + 1) % seasons.length;
button.textContent = seasons[nextIndex];
season.setValue(seasons[nextIndex])