| | |
| | | class="banner_content" |
| | | :style="{ |
| | | // backgroundImage: 'url(' + baseImg + ')', |
| | | backgroundImage: 'url(' + (item.pic ? item.pic : baseImg) + ')', |
| | | backgroundImage: 'url(' + getUrl(item.pic) + ')', |
| | | backgroundSize: '100% 100%', |
| | | backgroundRepeat: 'no-repeat', |
| | | }" |
| | |
| | | toggleBanner(i) { |
| | | this.$refs["banner"].setActiveItem(i); |
| | | }, |
| | | getUrl(url) { |
| | | let result = ""; |
| | | |
| | | if (!url) { |
| | | result = this.baseImg; |
| | | return result; |
| | | } |
| | | var reg = /^[0-9]/; |
| | | if (reg.test(url)) { |
| | | result = "http://" + url; |
| | | return result; |
| | | } |
| | | |
| | | return url; |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |